The reconfiguration of the grid problems

Background:

I had 10.2.0.5 grid installed on 11g DBA on AIX. Somehow the database has been corrupted and only solution was to force the database to the top then take a full export of the database and re-create the database and import the backup of this new database.

Everything went on smooth, but there are problems with SYSMAN. He was not able to import as the EM has not been installed correctly.

So, here's what Oracle has proposed-

1 Deconfig DB Consol - did this and one step has been to drop the SYSMAN user. Yes, now no user SYSMAN (the repository owner) there in this database.

2. run the dbmspool.sql

SQL > @/oracle/product/oms10g/rdbms/admin/dbmspool.sql

Package created.

Grant succeeded.

Created view.

Package body created.

SQL > commit;

Validation complete.

SQL > exit
Disconnected from the database to Oracle 11 g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production
With partitioning, Oracle Label Security, OLAP, Data Mining
and Real Application Testing options

3. create the repository Manager

GRIDDB - /oracle/product/11.1/oc4j/j2ee > cd/oracle/product/oms10g/sysman/admin/emdrep/bin
GRIDDB - / oracle/product/oms10g/sysman/admin/emdrep/bin >
GRIDDB - / oracle/product/oms10g/sysman/admin/emdrep/bin > *. / RepManager < HOME > 1521 GRIDDB-sys_password *-action create *.
Perl: WARNING: local bodychecking.
Perl: WARNING: make sure that your locale:
LC_ALL = (undefined),
LC__FASTMSG = "true"
LC_MESSAGES = ""
LANG = "EN".
are supported and installed on your system.
Perl: WARNING: falling back to the local standard ("C").
Enter the user name of repository: SYSMAN
Enter the password for the user in the repository:
Enter the user name of MetaLink: [email protected]
Enter the password for user MetaLink:
Getting temporary tablespace of the database...
(Oracle) install_driver failed: can't load ' / oracle/product/11.1/perl/lib/site_perl/5.8.3/aix-thread-multi-64all/auto/DBD/Oracle/Oracle.so' for module DBD::Oracle: could not load module oracle/product/11.1/perl/lib/site_perl/5.8.3/aix-thread-multi-64all/auto/DBD/Oracle/Oracle.so.
Dependent module /Oracle/product/11.1/lib32/libclntsh.so could not be loaded.
The module has an invalid magic number.
Could not load module oracle/product/11.1/perl/lib/site_perl/5.8.3/aix-thread-multi-64all/auto/DBD/Oracle/Oracle.so.
Dependent module /Oracle/product/11.1/Perl/lib/site_perl/5.8.3/AIX-thread-multi-64all/auto/DBD/Oracle/Oracle.so could not be loaded. /Oracle/product/11.1/Perl/lib/5.8.3/AIX-thread-multi-64all/DynaLoader.pm line 229, < STDIN > line 4.
(eval 7) line 3
Compilation failed in require (eval 7) 3, line < STDIN > 4.
Perhaps a required shared library or dll is not installed when the
to the /oracle/product/11.1/sysman/admin/emdrep/bin/emrepmgr.pl of the line 1660


This question is for gurus, what is the problem here. What does this error message indicating? How can I reconfigure the GRID?

Thank you!

Good. See the metalink Note: 817035.1

The solution is:

1. tap the original OMR OMS.
by changing the emoms.properties in the /sysman/config /.

2. run the following command:
. / emctl config emkey-remove_from_repos
3. tap the migrated OMR OMS.

by changing the emoms.properties in the /sysman/config /.

4 copy the emkey in the repository:
. / emctl config emkey-copy_to_repos-sysman_pwd

5. check the State of the emkey:
. / emctl status emkey

Tags: Enterprise Manager

Similar Questions

  • Problems with the 'Grid entity' configuration consistency

    I have difficulty getting the configuration work "Entity grid" consistency. I'm on Oracle Version consistency 3.6.0.4 Build 19111. I carefully followed the instructions for the third scenario configuration consistency documented on the page "JPA on the grid" [url http://docs.oracle.com/cd/E14571_01/doc.1111/e16596/tlcgd003.htm#CHDGGGAJ] here. I will include excerpts from the records, but I think that I have been following the docs. I must be missing something that the docs report directly? Any ideas would be greatly appreciated.

    The problem I encounter is that when this 'Grid entity' coherence mode is used, the entities are not reading from the database when the application starts. The application behaves as if there is absolutely no data in the database, even if I know that I have lines in tables to backup my entities. In my test dummy application, I also have problems persistent entities. If I temporarily disable consistency commenting annotations {noformat}@Customizer{noformat} entity everything works perfectly (DataSet starting loads from the database as expected and new entities are correctly preserved). If I change to the "grid + hidden +" things configuration seems to work fine. But it's not ideal because we want the features of read/write of entityof the grid.

    Here is my file of coherence-cache - config.xml (corresponds almost exactly to the documentation):
    <?xml version='1.0'?>
    <cache-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns="http://xmlns.oracle.com/coherence/coherence-cache-config"
       xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-cache-config coherence-cache-config.xsd">
      <caching-scheme-mapping>
        <!--
          Map all entity classes to the eclipselink-distributed-readwrite scheme
    -->
        <cache-mapping>
          <cache-name>*</cache-name>
          <scheme-name>eclipselink-distributed-readwrite</scheme-name>
        </cache-mapping>
      </caching-scheme-mapping>
      <caching-schemes>
        <distributed-scheme>
          <scheme-name>eclipselink-distributed-readwrite</scheme-name>
          <service-name>EclipseLinkJPAReadWrite</service-name>
          <!--
            Configure a wrapper serializer to support serialization of relationships.
          -->
          <serializer>
              <instance>
                 <class-name>oracle.eclipselink.coherence.integrated.cache.WrapperSerializer</class-name>
              </instance>
          </serializer>
          <backing-map-scheme>
            <read-write-backing-map-scheme>
              <internal-cache-scheme>
                <local-scheme/>
              </internal-cache-scheme>
              <!-- 
                 Define the cache scheme 
               -->
              <cachestore-scheme>
                <class-scheme>
                  <class-name>oracle.eclipselink.coherence.integrated.EclipseLinkJPACacheStore</class-name>
                  <init-params>
                    <!-- This param is the entity name -->
                    <init-param>
                      <param-type>java.lang.String</param-type>
                      <param-value>{cache-name}</param-value>
                    </init-param>
                    <!-- This param should match the persistence unit name in persistence.xml -->
                    <init-param>
                      <param-type>java.lang.String</param-type>
                      <param-value>test-pu</param-value>
                    </init-param>
                  </init-params>
                </class-scheme>
              </cachestore-scheme>
            </read-write-backing-map-scheme>
          </backing-map-scheme>
          <autostart>true</autostart>
        </distributed-scheme>
      </caching-schemes>
    </cache-config>
    Persistence.XML:
    <?xml version="1.0" encoding="windows-1252" ?>
    <persistence xmlns="http://java.sun.com/xml/ns/persistence"
                 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                 xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
                 version="1.0">
      <persistence-unit name="test-pu">
        <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
        <jta-data-source>jdbc/WineDS</jta-data-source>
        <non-jta-data-source>jdbc/WineDS</non-jta-data-source>
        <class>datagridtest.WineEntity</class>
        <properties>
          <property name="eclipselink.target-server" value="WebLogic_10"/>
          <property name="eclipselink.target-database" value="Oracle11"/>
           <!--<property name="eclipselink.ddl-generation" value="create-tables"/>-->
        </properties>
      </persistence-unit>
    </persistence>
    entity class:
    @Entity(name="Wine")
    @NamedQueries({
      @NamedQuery(name = "Wine.findAll", query = "select o from Wine o"),
      @NamedQuery(name = "Wine.findByRegion", query = "select o from Wine o where o.region = :region"),
      @NamedQuery(name = "Wine.findByVintage", query = "select o from Wine o where o.vintage = :vintage"),
      @NamedQuery(name = "Wine.findByWinery", query = "select o from Wine o where o.winery = :winery")
    })
    @SequenceGenerator(name = "Wine Seq", sequenceName = "WINE_SEQ", allocationSize = 50, initialValue = 50)
    @Customizer(CoherenceReadWriteCustomizer.class)
    public class WineEntity implements Serializable {
         @Id
         @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "Wine Seq")
         private Integer id;
         @Version
         private Integer version;
         
         private String name;
         
         private int vintage;
         
         private String region;
         
         private String winery;
         
         typical getters and setters follow...
         ....
    Extracts of EJB:
    @Stateless(name = "SessionEJB", mappedName = "PortletProducerApplication-DataGridTest-SessionEJB")
    public class SessionEJBBean implements SessionEJBLocal {
         @PersistenceContext(unitName="test-pu")
         private EntityManager em;
         
         ...
         
         public List<WineEntity> findAllWines() {
              TypedQuery<WineEntity> allWinesQuery = em.createNamedQuery("Wine.findAll", WineEntity.class);
              return allWinesQuery.getResultList();     
         }
         
         ...
         
    }
    (IWLS) server logs:
    <Jun 25, 2012 3:54:41 PM EDT> <Notice> <EclipseLink> <BEA-2005000> <2012-06-25 15:54:41.686--ServerSession(1768045153)--EclipseLink, version: Eclipse Persistence Services - 2.1.3.v20110304-r9073> 
    <Jun 25, 2012 3:54:41 PM EDT> <Notice> <EclipseLink> <BEA-2005000> <2012-06-25 15:54:41.688--ServerSession(1768045153)--Server: 10.3.5.0> 
    <Jun 25, 2012 3:54:42 PM EDT> <Notice> <EclipseLink> <BEA-2005000> <2012-06-25 15:54:42.142--ServerSession(1768045153)--file:/C:/Users/EDITED/AppData/Roaming/JDeveloper/system11.1.1.5.37.60.13/o.j2ee/drs/TestApp/DataGridTestEJB.jar/_test-pu login successful> 
    2012-06-25 15:54:42.502/58.626 Oracle Coherence 3.6.0.4 <Info> (thread=[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Loaded operational configuration from "jar:file:/C:/Oracle/Middleware/oracle_common/modules/oracle.coherence_3.6/coherence.jar!/tangosol-coherence.xml"
    2012-06-25 15:54:42.513/58.637 Oracle Coherence 3.6.0.4 <Info> (thread=[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Loaded operational overrides from "jar:file:/C:/Oracle/Middleware/oracle_common/modules/oracle.coherence_3.6/coherence.jar!/tangosol-coherence-override-dev.xml"
    2012-06-25 15:54:42.516/58.640 Oracle Coherence 3.6.0.4 <D5> (thread=[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2012-06-25 15:54:42.524/58.648 Oracle Coherence 3.6.0.4 <D5> (thread=[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    
    Oracle Coherence Version 3.6.0.4 Build 19111
     Grid Edition: Development mode
    Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
    
    2012-06-25 15:54:42.673/58.797 Oracle Coherence GE 3.6.0.4 <Info> (thread=[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Loaded cache configuration from "file:/C:/workspaces/spaces_branch/TestApp/DataGridTest/src/coherence-cache-config.xml"
    2012-06-25 15:54:43.360/59.484 Oracle Coherence GE 3.6.0.4 <D4> (thread=[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): TCMP bound to /172.30.112.202:8088 using SystemSocketProvider
    2012-06-25 15:54:46.747/62.871 Oracle Coherence GE 3.6.0.4 <Info> (thread=Cluster, member=n/a): Created a new cluster "cluster:0xC4DB" with Member(Id=1, Timestamp=2012-06-25 15:54:43.377, Address=172.30.112.202:8088, MachineId=49866, Location=site:EDITED,machine:EDITED,process:10776, Role=WeblogicServer, Edition=Grid Edition, Mode=Development, CpuCount=4, SocketCount=2) UID=0xAC1E70CA000001382535DD31C2CA1F98
    2012-06-25 15:54:46.757/62.881 Oracle Coherence GE 3.6.0.4 <Info> (thread=[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Started cluster Name=cluster:0xC4DB
    
    Group{Address=224.3.6.0, Port=36000, TTL=4}
    
    MasterMemberSet
      (
      ThisMember=Member(Id=1, Timestamp=2012-06-25 15:54:43.377, Address=172.30.112.202:8088, MachineId=49866, Location=site:EDITED,machine:EDITED,process:10776, Role=WeblogicServer)
      OldestMember=Member(Id=1, Timestamp=2012-06-25 15:54:43.377, Address=172.30.112.202:8088, MachineId=49866, Location=site:EDITED,machine:EDITED,process:10776, Role=WeblogicServer)
      ActualMemberSet=MemberSet(Size=1, BitSetCount=2
        Member(Id=1, Timestamp=2012-06-25 15:54:43.377, Address=172.30.112.202:8088, MachineId=49866, Location=site:EDITED,machine:EDITED,process:10776, Role=WeblogicServer)
        )
      RecycleMillis=1200000
      RecycleSet=MemberSet(Size=0, BitSetCount=0
        )
      )
    
    TcpRing{Connections=[]}
    IpMonitor{AddressListSize=0}
    
    2012-06-25 15:54:46.809/62.933 Oracle Coherence GE 3.6.0.4 <D5> (thread=Invocation:Management, member=1): Service Management joined the cluster with senior service member 1
    2012-06-25 15:54:47.155/63.279 Oracle Coherence GE 3.6.0.4 <D5> (thread=DistributedCache:EclipseLinkJPAReadWrite, member=1): Service EclipseLinkJPAReadWrite joined the cluster with senior service member 1
    INFO: Found persistence provider "org.eclipse.persistence.jpa.PersistenceProvider". OpenJPA will not be used.
    INFO: Found persistence provider "org.eclipse.persistence.jpa.PersistenceProvider". OpenJPA will not be used.
    [EL Info]: 2012-06-25 15:54:47.351--ServerSession(1901778202)--EclipseLink, version: Eclipse Persistence Services - 2.1.3.v20110304-r9073
    [EL Info]: 2012-06-25 15:54:47.351--ServerSession(1901778202)--Server: 10.3.5.0
    [EL Info]: 2012-06-25 15:54:47.551--ServerSession(1901778202)--EclipseLinkCacheLoader-test-pu login successful
    And the error when you try to make persistent the new entity:
    javax.ejb.TransactionRolledbackLocalException: Error committing transaction:; nested exception is: javax.persistence.OptimisticLockException: Exception [EclipseLink-5004] (Eclipse Persistence Services - 2.1.3.v20110304-r9073): org.eclipse.persistence.exceptions.OptimisticLockException
    Exception Description: An attempt was made to update the object [datagridtest.WineEntity@1c59a6cc], but it has no version number in the identity map. 
    It may not have been read before the update was attempted. 
    Class> datagridtest.WineEntity Primary Key> 2,050
         at weblogic.ejb.container.internal.EJBRuntimeUtils.throwTransactionRolledbackLocal(EJBRuntimeUtils.java:238)
         at weblogic.ejb.container.internal.EJBRuntimeUtils.throwEJBException(EJBRuntimeUtils.java:136)
         at weblogic.ejb.container.internal.BaseLocalObject.postInvoke1(BaseLocalObject.java:650)
         at weblogic.ejb.container.internal.BaseLocalObject.__WL_postInvokeTxRetry(BaseLocalObject.java:455)
         at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:52)
         at datagridtest.SessionEJB_qxt9um_SessionEJBLocalImpl.mergeWineEntity(Unknown Source)
    So just to sum up, I currently see two problems: 1) no data from the database consistency and implementation — why not consistency out of database? and (2) what's this persistent mistake on OptimisticLockException? Thanks again for any help.

    JPQL API criteria or both will result in coherence filters when using GridRead or GridEntity.
    TopLink grid has no way of knowing if the data in the cache are sufficient to satisfy the query, for example based on the provided query TopLink grid would determine how between a user with no book and insufficient. Your application will need to determine that not enough has been stored in the cache or to perform an initial charge in bulk for a particular user to redirect the request to the database programmatically. Queries of grid can easily be redirected to the database by setting the IgnoreDefaultRedirector on the query using query.setHint (QueryHints.QUERY_REDIRECTOR, new IgnoreDefaultRedirector()); Read from the database of entities will be automatically pushed to the consistency.

  • Get the upper left corner of a cell in the grid (math problem)

    I'm doing a map editor for a tile based game. The Publisher made a grid:

    private function drawGrid (): void {}
    var grid: Sprite = new Sprite();

    var tileSize:uint = 50;

    for (var i: int = 0; i < line; i ++)
    {
    grid.graphics.lineStyle (1, 0 x 000000, 0.3);
    grid.graphics.moveTo (0, i * tileSize);
    grid.graphics.lineTo (700, i * tileSize);
    }
    for (var j: int = 0; j < column; j ++)
    {
    grid.graphics.lineStyle (1, 0 x 000000, 0.3);
    grid.graphics.moveTo (j * tileSize, 0);
    grid.graphics.lineTo (j * tileSize, 400);
    }
    stage.addChild (grid);
    }

    And when the user clicks anywhere on the screen a movieclip is added to the stage. The movieclip (exported for actionscript as the tile) should appear in the upper left of the grid cell.

    private void placeTile(mouseX:int,_mouseY:int,_frame:uint):void {}
    var: tile = new Tile();
    tile.gotoAndStop (frame);
    Tile.x = PROBLEM HERE
    Tile.y = PROBLEM HERE
    stage.addChild (tile);
    }

    How can I do? I came with an idea, but it did not work because I have a math problem.  Assume that the user's mouse is in the mouseX = 456:

    I could remove hundreds and use the 56 quotient and check if it is greater than 50. If it is greater than 50, I would put it at x = 500, if not I would put it at x = 450. How can I remove hundreds? You have a better idea?

    Post edited by: wilsonsilva7, because subconsciously, I pressed ctrl + s (for save) and the message has been posted

    You must use the mod (%) operator to remove hundreds serving: 456% 100 = 56, but that does not seem the best way.

    If your tiles are 50 x 50, I think that just using Math.floor(mouseX / 50) * 50 is your best bet:

    Math.Floor(456 / 50) = 9

    9 * 50 = 450 = the left edge of the tile that you clicked on in.

  • problem with alignment on the grid

    Hello

    I have a problem with the alignment on a grid. I enclose 2 photos so that you could understand the problem. It seems that when I have a "type" between the sentences, the alignment is not correct. The spacing of the grid is good for me, so I guess I should correct some parameters of the "past". How can I do?

    Thank you in advance! (and sorry for my bad English...)

    perf.jpg

    prob.jpg

    Your reference grid interval seems rather small. Set it to equal the attack of the text. Your text seems to be lining up at the gate, but due to the narrow spacing, it is able to align the replacement grid lines.

    k

  • I have Adobe Photoshop elements 11 on my computer. I used a lot but recently my problem is that on the grid the photos show nothing... only an hourglass. If I double click on the photo then shows in its entirety. I did uninstall and reinstall the bu progr

    On the grid, my pictures show nothing that hourglasses! If I double click on an hourglass the slideshow perfectly in its entirety. It's very frustrating. I tried everything I could think and even uninstalling and reinstalling... still the same program; On a grid of photos imported, just a series of hourglasses!. I need help.

    catherinea7777 wrote:

    On the grid, my pictures show nothing that hourglasses! If I double click on an hourglass the slideshow perfectly in its entirety. It's very frustrating. I tried everything I could think and even uninstalling and reinstalling... still the same program; On a grid of photos imported, just a series of hourglasses!. I need help.

    See:

    Photoshop elements (PSE) knowledge base. : how the miniature correct hourglass (generic) in elements Organizer?

  • Problem with passing parameters to an HTTPService on buttonclick within the grid

    I have a DataGrid where I use ItemRenderers to render components such as buttons n Images within the grid. Now, I need to pass parameters to an HTTPService on click of a button. If the button is directly on the form (not in the grid), is easy to call HTTPService. But given that the button is in a grid, it is not able to resolve the HTTPService and so I can't call the HTTPService on ' click on ' event of the button.

    I would like to know if anyone can help.

    You should probably use click = "outerDocument.myClickHandler ()" "

    The outerDocument allows you to access the methods outside of the rendering engine.

    If this post has answered your question or helped, please mark it as such.

  • hide the grid axes secondary image export

    Hello

    I am trying to export images simplified graphics, with the hidden grid because it tends to do things to look messy. The thing is, when there are several axes, this option seems to be ignored on the second axis. Does anyone have an idea how to get around this problem?

    Thank you!

    Hi marc1uk,

    If you do not require the axis of the grid on your exported image simplified, then I suggest disabling the grid lines for the additional axis, which can be done by right clicking on the graph and the navigation tab of the scales. Under grid style and you can change the style of the grid by clicking on the image of a graph and selecting one of the three color options, the left-most being disabled the gridlines.

    After trying it for myself, I see no clear reason why it does not work. so I have to study the issue further away.

    If you want all the games the grid is visible in your program, you can, for now, look in the use of knots of property to disable and re-enable the grid that is the cause of the problem.

    Kind regards

  • print with excel it breaks the grid lines

    Since getting my HP Envy 4500 printer, I have problems printing from Excel spreadsheets.   The "Print Preview" shows the document correctly, but when it prints it jumps a few rows of the grid.   My ink cartridges are filled and I marked settings to print the grid (which is correct because it prints some) lines.    What is going on?  Any help would be greatly appreciated.   Also, I tried to cut and copy into a new doc, but it still prints the same way.   Also made a new worksheet test and print it likewise - lack of grid lines.

    I saved the excel form XPS docs and now print all lines of the grid.    I don't know why, but it worked for me.

  • Several colors of background on a GOLD-table fill to draw graphical point * behind * the grid lines

    I have some a matter of aesthetics.

    I wrote a program that displays data for binary files. These binaries have blocks of data, an hour or two. Each piece is a playback window, and there are a handful of reading windows per day.

    The data view is in effect, what I'm working on now is a more intuitive way to choose what data should be displayed.

    My goal is to have a graph of waveform with the X axis represents a day full (0 - hr 24 hr) and is indicated on the chart what time windows are available for review, that is, data have been collected. The background of a "collected" window will be yellow (or another color), while times in the course of which no given is collected will be black. The user will then drag the sliders to select the window of what he or she wants to see the data.

    It was quite easy to achieve by drawing the curve a digital signal (1 for data collected during this period, 0 for no) and point-fill with yellow to zero. My only problem with this solution is that filling point appears on the lines of the grid, that does not look quite right.

    Y at - it an easy way to get the grid to appear at the top of the charts, or is there a way to programmatically set multiple background colors (it could do the same thing)?

    Use the property "draw pictures" and draw your own grid before image.

  • WANT TO 4500 DOES NOT PRINT ALL OF THE GRID

    WANT TO 4500 ALL IN ONE PRNTER DOES NOT PRINT ALL OF THE GRID

    My problem seems to have resolved itself.

    Thanks for responding.

  • Why the words with enlarged grid friends how can I reduce it so I can see all the grid at the same time

    Why has Word with friends expanded grid I see not all the grid without scrolling to the top a low how do I minimize it again miminisi

    NG reduced just the entire page

    Hello
     
    1. you play this Online? If Yes, do you use the Internet Explorer browser to play the game?
    2 have you made any changes to the computer before the show?
    3. are you able to play games without any problem?
     
     
    Answer for you help the better.
     
    Follow the article mentioned below, if you use the Internet Explorer browser to play this game online:
     
    The problems of games online using Internet Explorer:
    http://support.Microsoft.com/kb/2528246
     
    You can also check:
    Suggestions for a question on the help forums
    http://support.Microsoft.com/kb/555375
  • Want 7640: HP Envy 7640 dropped off the grid and cannot reconnect

    Envy 7640 dropped off the grid and cannot reconnect. I followed the instructions on the previous thread without result - restoring network, cycling settings, router, modem, etc... printer indicates "failure" for the "no filtering". All other wireless devices work fine. Please notify

    Please provide the following information if anyone can help including:

    The printer model - done

    Operating system on the computer (including service pack revision) - done

    Detailed - description of problem including all devices network (extensor, switches)

    Connection method - Direct wireless, wireless, wired LAN, USB? -

    Number of brand and model of router and modem? -

    Error messages - on the screen of the printer or computer, no matter what flashing light patterns? -

    Do you think the printer is going to sleep and can't wake up? -

    If wireless, in the event of problem, what is the status of the blue wireless light on the printer, active, disabled or flashing? –

    Power off the printer and the router.  Power on the router and wait 3 minutes, power on the printer.  It connects to the router now?  What is the IP address of printers?

  • How to hide the grid alignment.

    I clicked on something that makes the grid visible alignment.  I can not cancel for what he invisibvle once again and I can't find an answer in the Microsoft Help section or anywhere else that I have sought. I know that it is something simple but not for me at the moment... Help! :)

    I want to thank you for this problem.  The grid is extremely annoying. I don't know why it has turned out, but nice to know what to do if this happens again.

  • Theme 25 - items are not correctly displayed in the presentation of the grid

    Hi all

    APEX 4.2.5.00.08

    Oracle 11g Enterprise Edition

    I am new to 4.2. I created an application on 4.1 and exported 4.1 and imported to 4.2. I'm trying to view the forms as they were posted in 4.1. But I have problems with the presentation of the grid. The elements are the overlap between them and the regions is narrowed. I read a blog and he said to remove all the colspan which will then automatically display elements. I did, but it did not work. The form consists of several parts using a list of tabs on the page. Parts of the tab using the model 'Region without the buttons and titles' of the region. I tried to replace the template "no model", while he was a little better, it has not corrected the problem.

    I've migrated the application and objects in the db at the APEX. ORACLE.COM (it took a few hours) and I hope someone can resolve my problem until the site is upgraded to 5.0.

    Workspace: RGWORK

    Application: KIMBERLY (33925)

    Page: Vehicle details (13)

    Username: TESTER

    Password: test456

    The first screen will be a Update/View vehicles 1 choice menu

    Choose this option and a report with a single line id.

    Select this line and display page 13.

    You have Developer access but please keep me on what has been fixed. I don't want remedy you. I want to know what has been resolved as well.

    Please get back me to me as soon as POSSIBLE because the site is upgraded to 5.0 this Friday.

    Robert

    sect55 wrote:

    I am new to 4.2. I created an application on 4.1 and exported 4.1 and imported to 4.2. I'm trying to view the forms as they were posted in 4.1. But I have problems with the presentation of the grid. The elements are the overlap between them and the regions is narrowed.

    Why you want to switch to theme 25 instead of simply retain the theme that was used in 4.1?

    Go wrote:

    Robert,

    Look at your application. just a simple change.

    change:

    Region: Veh/equip Information

    Presentation of the grid:

    Start the new row: Yes

    That helps, but it's not the whole story, as it appears the layout is still affected by the problem described in the thread previous Theme 25 region without buttons and issuance of securities

    Applying the fix I suggested it (in 78449 application I created a copy to ensure that I was working with the initial problems) Gets the items on the same line, but I guess that's not the same as the original provision and it doesn't look very good.

    Basically, I would say either stick with the original theme or by switching to a 4.2 theme that still use the page layout based on a table (for example, 24 or 26). Theme 25 is difficult to work with and works best with presentations created especially for her from the start.

  • Cannot change the metadata in the grid of the library through several selected Images

    This was bugs me for some time. It started there when I did a CC updated a few versions (about 2015.2, I think). I wrote chalked it up to a bug that they would fix it soon, but it has not been resolved.

    Since I started using Lightroom 2, I used to be able to select several images in the grid view library and then modify the metadata in the Panel to the right and he would write to all. For example, I select 12 photos and set the title information and location. So when I watched each picture they would have the new title & location applied to them.

    After a CC update I lost this ability - metadata only, can I change through selected images is using keywords.

    Because I've lost this ability, I serve the copy metadata (SHIFT-ALT-CMD-C) and paste (SHIFT-ALT-CMD-V) to change the metadata in multiple images, but it's a clunkier and more time-consuming method. I really liked being able to hold down the Command or SHIFT and select several images to change all their metadata quickly.

    Could someone help me? Am I missing some setting or preference?

    This happens in Lightroom CC 2015.6 on my iMac OSX 10.9.5 running

    and also on Lightroom CC 2015.5 on my MacBook OSX 10.11.5 running

    johnrellis - problem solved! I did a reset of Lightroom preferences (How to reset preferences in Lightroom?-the Lightroom Queen).

Maybe you are looking for

  • Firefox won't play Netflix

    Netflix movies play using Safari, but not Firefox.Using Firefox Mac OS 10.7.5 and Sliverlight 5.1.10411.0 15.0.1,, when I try to play a movie from Netflix, it asks me to download Silverlight again. After that, he still does not play a movie and wants

  • The upgrade of Tecra 8000

    Recently, I have a Tecra 8000 that I got from work they were buying new laptops. After you install windows 2000 on it, I gave it a spin. I was surprised how quickly that this little machine has.If anyone any ideas on how to get a free manual for it a

  • Interfacing pilot Agilent IVI - COM for U8903 Audioanalyzer of Labwindows/CVI

    When I try to use the controller Active X of CVI 2009 Wizard to create a C Wrapper for Agilents U8903x IVI - COM drivers, I get more than 100 errors "the too long method name. Is there one solution other than the edition of each name of the simple me

  • Problems to install a printer driver

    I have problems trying to find a printer. I have a driver installed, but my laptop doesn't seem to be able to find the printer. I have two other printers wireless installed, but I just ache to locate the third. Any suggestions?

  • Windows - Slideshow__ Photo Gallery

    No problem to start the slide show, but I am unable to see my cursor (with the mouse or touchpad) on the screen, for example, change the "Theme" or use any other control Remember - this is a public forum so never post private information such as numb