ORA-3113 while running export (first run ok, second run fails)

Hi,
I'm running 10g (10.1.0.2.0) on gentoo Linux.
After a restart of the database I can do an EXP for any user without errors. But when I repeat the same command after the export I get the following error:
. . exporting table WEB_SESSION_DATA 0 rows exported
. exporting synonyms
EXP-00008: ORACLE error 3113 encountered
ORA-03113: end-of-file on communication channel
EXP-00000: Export terminated unsuccessfully
It's always the same error on the same task (exporting synonyms) but always just for the second and any later export, while the first one is ok.
I read through some forums and found, that ORA-3113 is a standard error which just hides the real error. So I look into the trace files and found:
ksedmp: internal or fatal error
ORA-07445: exception encountered: core dump [jox_lookup_known_object()+413] [SIGSEGV] [Address not mapped to object] [0x1AD14034] [] []
Current SQL statement for this session:
SELECT SYNNAM, DBMS_JAVA.LONGNAME(SYNNAM), DBMS_JAVA.LONGNAME(SYNTAB), TABOWN, TABNODE, PUBLIC$, SYNOWN, SYNOWNID, TABOWNID, SYNOBJNO FROM SYS.EXU9SYN WHERE SYNOWNID = :1 ORDER BY SYNTIME
If I call this SQL from sqlplus I get the same ORA-3113, so this seems to be the cause for the export failure.
When I remove the DBMS_JAVA.LONGNAME calls from the statement, it runs fine. It also runs fine, when I add a "and 1=0" to the EXU9SYN view. But this will not really solve the problem, because then all synonyms don't get exported.
I also checked all the synonyms and they are valid, the referenced tables exist and can be queried.
Because we use JavaStoredProcedures I cannot remove the Java Features in Oracle. But I reinstalled it (rmjvm.sql and initjvm.sql) but this did not help.
Does anyone have an idea what's happening here?
Especially the "first run ok, second run fails" seems to be very strange, because DB objects including DBMS_JAVA should be ok, if the first export can be done. So what changes in the database during or after the first run?

Maybe description for bug 3953108 (ORA-7445 AND ORA-3113 DURING DIRECT FULL DATABASE EXPORT OF PUBLIC SYNONYMS) is helpful.
Werner

Similar Messages

  • The query just run the first time, the second doesnt run

    The query just run the first time, the second doesnt run, i checked it in the SM50 and appear this msg:
    CL_RSR_CACHE_BO_FF============CP
    its not a problem of indexes, i repaired it but its really weird cause the first time the query run ok, the second doesnt, it seems that the cache is confused or i dont know, help guys, i'll really appreciate it

    I was watching the notes, its really weird when i load the cube and execute the query for the first time, its ok, to the second stay in cache, but i was watching that the cube doesnt allow me activat the BD statistics, i dont know if this is necesary to improve the performance of the query, what i know is this:
    1- before i create a Hierarchy for an infoobject thta is in the cube ,  the query used to run ok. Now when i load the first time and execute its ok, but the second stay in cache.
    2- now i can activate the statistics for the cube, the indexes are ok, i checked for the RSRV and all is ok less the statistics.
    what can i do help friends...

  • Ora-1555 while taking export

    Hi Guys,
    I am getting the below error while taking the export:
    EXP-00008: ORACLE error 1555 encountered
    ORA-01555: snapshot too old: rollback segment number 3 with name "_SYSSMU3$" too small
    EXP-00056: ORACLE error 1555 encountered
    ORA-01555: snapshot too old: rollback segment number 3 with name "_SYSSMU3$" too small
    EXP-00000: Export terminated unsuccessfully
    SQL> select SEGMENT_NAME,status,max_extents from dba_rollback_segs where tablespace_name='ESUT001'
    and status='ONLINE';
    SEGMENT_NAME STATUS MAX_EXTENTS
    _SYSSMU1$                      ONLINE                 32765
    _SYSSMU2$                      ONLINE                 32765
    _SYSSMU3$                      ONLINE                 32765
    _SYSSMU4$                      ONLINE                 32765
    _SYSSMU5$                      ONLINE                 32765
    _SYSSMU6$                      ONLINE                 32765
    _SYSSMU7$                      ONLINE                 32765
    _SYSSMU8$                      ONLINE                 32765
    _SYSSMU9$                      ONLINE                 32765
    _SYSSMU10$                     ONLINE                 32765
    _SYSSMU11$                     ONLINE                 32765
    SEGMENT_NAME STATUS MAX_EXTENTS
    _SYSSMU12$                     ONLINE                 32765
    _SYSSMU13$                     ONLINE                 32765
    _SYSSMU14$                     ONLINE                 32765
    _SYSSMU15$                     ONLINE                 32765
    _SYSSMU16$                     ONLINE                 32765
    _SYSSMU17$                     ONLINE                 32765
    _SYSSMU18$                     ONLINE                 32765
    Could you pls suggest how can resolve this issue.
    Thanks
    Sumit

    You'd better do the export during quiet hour of your database.
    Otherwise, use
    consistent = N
    flag
    Increase your undo space will also help
    consistent – [N] Specifies the set transaction read only statement for export, ensuring data consistency. This option should be set to “Y” if activity is anticipated while the exp command is executing. If ‘Y’ is set, confirm that there is sufficient undo segment space to avoid the export session getting the ORA-1555 Snapshot too old error.

  • Ora -3113 while Java Deployment

    I am getting the following errors while deploying the java class
    $ loadjava -oci8 -resolve -user javaupdate/javaupdate jtest.class
    Error while creating class jtest/jtest
    ORA-03113: end-of-file on communication channel
    Error while resolving class jtest/jtest
    ORA-04043: object jtest/jtest does not exist
    loadjava: 2 errors
    I would appreciate if anybody can help me in this regard.
    Thanks in advance.
    Aldrin Alberto
    null

    Aldrin,
    With the thin driver, you just need to make sure that the
    classes111.zip file is in your classpath. For the OCI driver,
    you need to make sure that classes111.zip is in your classpath
    AND that you have the Oracle8 client installed locally. If you
    are using the default Oracle 8.1.5 drivers, you need to have the
    Oracle 8.1.5 Client installed locally, and make sure that your
    Oracle_Home is set correctly in your registry (this is how
    JDeveloper finds the client DLLs it needs to establish the
    connection).
    If you are using the default 8.1.5 drivers, you should not need
    to do anything for the thin driver. JDeveloper includes the
    directory path to the classes111.zip file for the 8.1.5 drivers
    in its classpath.
    Since you are using loadjava from the command line, I would
    recommend that you reference the Oracle8i JDBC Developer's Guide
    for information on how to test your connection.
    Laura
    Aldrin Alberto (guest) wrote:
    : I tried it with the below option. It gave the same problem. How
    : can I check whether OCI or Thin driver is properly installed
    on
    : the machine? I presume it is a connection problem. Thanks for
    you
    : help in advance.
    : Aldrin
    : JDeveloper Team (guest) wrote:
    : : Aldrin,
    : : In addition to Mark's reply, make sure you can establish the
    : OCI
    : : connection. Connecting with OCI requires some client-side
    : pieces
    : : are installed on your machine.
    : : Try without the -oci8 (in other words, using the thin driver)
    : and
    : : see if this works better.
    : : Laura
    : : Aldrin Alberto (guest) wrote:
    : : : I am getting the following errors while deploying the java
    : : class
    : : : $ loadjava -oci8 -resolve -user javaupdate/javaupdate
    : : jtest.class
    : : : Error while creating class jtest/jtest
    : : : ORA-03113: end-of-file on communication channel
    : : : Error while resolving class jtest/jtest
    : : : ORA-04043: object jtest/jtest does not exist
    : : : loadjava: 2 errors
    : : : I would appreciate if anybody can help me in this regard.
    : : : Thanks in advance.
    : : : Aldrin Alberto
    null

  • Receiving error in BPC Data Manager while running Export package.

    We are in a multi server environment and receiving below error message while running Export package.
    Have anyone seen below error message in BPC 5.1
    An error occurred while executing a package.
    Package Error Events:
    ErrorCode = -1073668060
    Source = Dump Data
    SubComponent=
    Description = The task "Dump Data" cannot run on this edition of Integration Services. It requires a higher level edition.
    IDOfInterfaceWithError= {8BDFE889-E9D8-4D23-9739-DA807BCDC2AC}
    Thanks
    Sridhar

    Below are our BPC versions:
    BPC on Server Manager: 5.0.486
    Data Manager from eData: 5.0.484
    BPC from eTool: 5.0.486
    Below is the total error message as per your suggestion to run Export package. (even with service account which we used to install the software we are getting same error message.)
    TOTAL STEPS  2
    1. Dump Data:     Failed  in 0 sec.
    [Selection]
    FILE=\ApShell_SK\FINANCE\DataManager\DataFiles\SKTEST.TXT
    TRANSFORMATION=\ApShell_SK\FINANCE\DataManager\TransformationFiles\System Files\Export.xls
    MEASURENAME=PERIODIC
    (Member Selection)
    Category: ACTUAL
    Time: 2006.JAN
    Entity:
    Account:
    DataSrc:
    IntCo:
    RptCurrency: 
    [Messages]
    An error occurred while executing a package.
    Package Error Events:
    ErrorCode = -1073668060
    Source = Dump Data
    SubComponent=
    Description = The task "Dump Data" cannot run on this edition of Integration Services. It requires a higher level edition.
    IDOfInterfaceWithError= {8BDFE889-E9D8-4D23-9739-DA807BCDC2AC}

  • Ora-3113 when running sql in sqlplus mts. dedicated works fine

    when i try to execute a simple query (return 1 row), from sqlplus (in the server database) by shared connection, i recive ora-3113. by dedicated conection it works fine. environment datas : server side (windows 2003 server; 10.2.0.1).
    part of my trace file :
    nsprecv: normal exit
    nsrdr: got NSPTDA packet
    nsrdr: NSPTDA flags: 0x40
    nsrdr: normal exit
    nsdo: entry
    nsdo: cid=0, opcode=85, bl=2001, what=0, uflgs=0x0, cflgs=0x1
    nsdo: nsctx: state=6, flg=0x620d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    nserror: entry
    nsdo: error exit
    nsdo: nsctxrnk=0
    nsdo: error exit
    nioqer: entry
    nioqer: incoming err = 12151
    nioqce: entry
    nioqce: exit
    nioqer: returning err = 3113
    nioqer: exit
    nioqrc: exit
    nioqbr: entry
    nioqbr: state = normal (0)
    nioqsm: entry
    nioqsm: Sending break packet (1)...
    nsdo: entry
    nsdo: cid=0, opcode=67, bl=1, what=17, uflgs=0x100, cflgs=0x3
    nsdo: rank=64, nsctxrnk=0
    nsdo: nsctx: state=3, flg=0x420d, mvd=0
    nsdo: nsctxrnk=0
    nsdo: error exit
    nioqsm: send-break: failed to send break...
    nioqper: error from send-marker
    nioqper: nr err code: 0
    nioqper: ns main err code: 12583
    nioqper: ns (2) err code: 0
    nioqper: nt main err code: 0
    nioqper: nt (2) err code: 0
    nioqper: nt OS err code: 0
    nioqsm: exit
    nioqer: entry
    nioqer: incoming err = 12152
    nioqce: entry
    nioqce: exit
    nioqer: returning err = 3113
    nioqer: exit
    nioqbr: returning 3113
    nioqbr: exit
    nioqds: entry
    nioqds: disconnecting...
    thanks

    Thread continued at -->
    ora-3113 when running sql in sqlplus mts. dedicated works fine

  • JDev 10.1.3 : Error running my first ADF application.

    I compiled and runned my first JDev application and I cound the following error during the connection :
    java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1
    ORA-12705: invalid or unknown NLS parameter value specified
    I found the same error in 10.1.2.1 and I solved it replacing the new JDBC driver with the old one !
    Should I do the same ?
    Tks
    Tullio

    You where right, the conversion left a "JClient Runtime" library.
    I eliminated it and I went back to the original error.
    ## Detail 0 ##
    oracle.jbo.DMLException: JBO-26061: Error while opening JDBC connection.
         at oracle.jbo.server.ConnectionPool.createConnection(ConnectionPool.java:220)
         at oracle.jbo.server.ConnectionPool.instantiateResource(ConnectionPool.java:135)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:539)
         at oracle.jbo.pool.ResourcePool.useResource(ResourcePool.java:329)
         at oracle.jbo.server.ConnectionPool.getConnectionInternal(ConnectionPool.java:87)
         at oracle.jbo.server.ConnectionPool.getConnection(ConnectionPool.java:66)
         at oracle.jbo.server.ConnectionPoolManagerImpl.getConnection(ConnectionPoolManagerImpl.java:56)
         at oracle.jbo.server.DBTransactionImpl.establishNewConnection(DBTransactionImpl.java:876)
         at oracle.jbo.server.DBTransactionImpl.initTransaction(DBTransactionImpl.java:1115)
         at oracle.jbo.server.DBTransactionImpl.initTxn(DBTransactionImpl.java:5845)
         at oracle.jbo.server.DBTransactionImpl2.connect(DBTransactionImpl2.java:117)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.connect(DefaultConnectionStrategy.java:194)
         at oracle.jbo.server.ClConnectionStrategy.connect(ClConnectionStrategy.java:41)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolConnect(ApplicationPoolMessageHandler.java:440)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolMessage(ApplicationPoolMessageHandler.java:331)
         at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:7736)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:3870)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2052)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1851)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2655)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:395)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:390)
         at oracle.jbo.client.Configuration.getApplicationModule(Configuration.java:1533)
         at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1491)
         at axioma.a4j.ap.servizi.client.ServiziClient.creaAmServizi(ServiziClient.java:588)
         at axioma.a4j.ap.servizi.client.ServiziClient.<init>(ServiziClient.java:42)
         at axioma.a4j.ap.servizi.client.ServiziClientInterattivo.<init>(ServiziClientInterattivo.java:16)
         at axioma.a4j.ap.dashboard.DsTavolo.<init>(DsTavolo.java:57)
         at axioma.a4j.ap.dashboard.DsTavolo.creaTavolo(DsTavolo.java:460)
         at axioma.a4j.ap.dashboard.StartUp.<init>(StartUp.java:22)
         at axioma.a4j.ap.dashboard.StartUp.main(StartUp.java:26)
    ## Detail 0 ##
    java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1
    ORA-12705: invalid or unknown NLS parameter value specified
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:305)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:272)
         at oracle.jdbc.driver.T4CTTIoauthenticate.receiveOauth(T4CTTIoauthenticate.java:648)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:308)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:434)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:151)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:571)
         at java.sql.DriverManager.getConnection(DriverManager.java:525)
         at java.sql.DriverManager.getConnection(DriverManager.java:140)
         at oracle.jbo.server.ConnectionPool.createConnection(ConnectionPool.java:189)
         at oracle.jbo.server.ConnectionPool.instantiateResource(ConnectionPool.java:135)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:539)
         at oracle.jbo.pool.ResourcePool.useResource(ResourcePool.java:329)
         at oracle.jbo.server.ConnectionPool.getConnectionInternal(ConnectionPool.java:87)
         at oracle.jbo.server.ConnectionPool.getConnection(ConnectionPool.java:66)
         at oracle.jbo.server.ConnectionPoolManagerImpl.getConnection(ConnectionPoolManagerImpl.java:56)
         at oracle.jbo.server.DBTransactionImpl.establishNewConnection(DBTransactionImpl.java:876)
         at oracle.jbo.server.DBTransactionImpl.initTransaction(DBTransactionImpl.java:1115)
         at oracle.jbo.server.DBTransactionImpl.initTxn(DBTransactionImpl.java:5845)
         at oracle.jbo.server.DBTransactionImpl2.connect(DBTransactionImpl2.java:117)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.connect(DefaultConnectionStrategy.java:194)
         at oracle.jbo.server.ClConnectionStrategy.connect(ClConnectionStrategy.java:41)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolConnect(ApplicationPoolMessageHandler.java:440)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolMessage(ApplicationPoolMessageHandler.java:331)
         at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:7736)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:3870)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2052)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1851)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2655)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:395)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:390)
         at oracle.jbo.client.Configuration.getApplicationModule(Configuration.java:1533)
         at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1491)
         at axioma.a4j.ap.servizi.client.ServiziClient.creaAmServizi(ServiziClient.java:588)
         at axioma.a4j.ap.servizi.client.ServiziClient.<init>(ServiziClient.java:42)
         at axioma.a4j.ap.servizi.client.ServiziClientInterattivo.<init>(ServiziClientInterattivo.java:16)
         at axioma.a4j.ap.dashboard.DsTavolo.<init>(DsTavolo.java:57)
         at axioma.a4j.ap.dashboard.DsTavolo.creaTavolo(DsTavolo.java:460)
         at axioma.a4j.ap.dashboard.StartUp.<init>(StartUp.java:22)
         at axioma.a4j.ap.dashboard.StartUp.main(StartUp.java:26)
    This error seems to be related to the EnvInfoProvider and I found it in 10.1.2.1 .
    Using tester (wich uses a different infoprovider) it works with the same AM.
    I suspect something changed in jdbc driver (may be symply a default) wich TesterInfoProvider resets correctly but my code don't.
    Tks
    Tullio

  • MP4 exported from Premiere Pro CS6 runs choppy on some computers . . .

    I have a video clip that was rendered as a .mov file in AfterFX CS6.  I uploaded it to youtube exported as a 1080p HD MP4 (target bitrate 12, max bitrate 12, VBR, 2-pass) that runs OK on my computer at any resolution, and runs OK on my iPad and 47" TV, but runs choppy on my laptop, and a friend's computer.  My computer is a Dell running a Haswell i7, with 24GB of memory and an Nvidia Quadro 2000 video card.  My iPad is Gen 4, my laptop is a Lenovo with i5 cpu and 4GB ram, and my friend is running a first generation i7 920 (overclocked) with 12GB of ram.  On my computer and iPad, http://youtu.be/lMg-YsVMZHg runs smoothly at any resolution, and the same file runs smoothly on my 47" LED TV from a USB 2 thumb drive.  It runs choppy and stutters on my laptop and my friend's machine at even low res.  The same file runs a lot smoother with some very slight judder when plugging the thumb drive directly into my laptop and running full screen.  What suggestions do you have?  Is this a bitrate problem, and what should work with all machines?
    Thanks.
    Gary Silverstein

    The tutorials are downloaded as a zip file then extracted; I don't actually screen record the tutorials while streaming or anything.  I guess I couldn't say if variable frame rate was used when they recorded the tutorials, but the media I have shows up as 30fps as opposed to some sort of non-traditional frame rate that often shows up when recording with something at a variable frame rate (like the stock iPhone video camera app).

  • Unable to run export command invalid username and password

    i am trying to run export command to export the complete database but i am getting error of invalid user name and password
    command
    from root i am switching to
    su- oracle
    exp oracle/12345 file=03-2-2013BackupDB.dmp log=backuplog.log
    ORA-01017: invalid username/password; logon denied
    but when i use to login through putty it gives no error
    oracle
    12345
    maybe i am doing something wrong sorry as i am newbie in oracle world
    oracle 11gR2
    Suselinux
    Please help..................

    to make your database in archive log mode you need to give a downtime of your database for this you can do following steps.
    if you are using spfile
    1. shutdown the database.
    2. startup in mount mode
    3. use command 'alter database archivelog';
    4. specify the archive log location using command
    ' alter system set log_archive_dest_1='LOCATION=location_path';'
    5. specify archive log format as
    'alter system set archive_log_format=your choice;'
    6. enable the archive log dest using ' alter system set log_archive_dest_state_1=enable;'

  • Getting exporting to excel gives a run time error.

    Hi,
    I am getting exporting to excel gives a run time error.
    <outbind://127/cid:656371011@08092010-11C9>
    while exporting a query to excel from bw
    Regards
    Karan

    Not sure why this thread bubbled up, but for more recent advice on this topic see Troubleshooting issues with iTunes for Windows updates.
    tt2

  • I am running my first backup on Time Machine using a Seagate external hard drive with a thunderbolt adapter and cable.  I have a MacBook Pro 2011. It is backing up 11GB, and is telling me it will take approx two days. Is this normal?

    I am running my first backup on Time Machine using a Seagate external hard drive with a thunderbolt adapter and cable.  I have a MacBook Pro 2011. It is backing up 11GB, and is telling me it will take approx two days. Is this normal?

    Download the supplemental fix to 10.7.5 
    http://support.apple.com/kb/DL1599

  • Error ORA-02375 while trying to export/import JTF.JTF_PF_REPOSITORY table

    We have already created an SR, In the mean time, trying to see whether anyone else has come across this issue.  Thanks.
    On : 11.2.0.3 version, Data Pump Import
    Error ORA-02375 while trying to import JTF.JTF_PF_REPOSITORY table
    We are getting the below error while performing the full db
    import.
    ORA-02375: conversion error loading table
    "JTF"."JTF_PF_REPOSITORY" partition "EBIZ"
    ORA-22337: the type of accessed
    object has been evolved
    ORA-02372: data for row: SYS_NC00040$ :
    0X'8801FE000004AD0313FFFF0009198401190A434F4E4E454354'
    This issue is
    stopping our upgrade of database from 10.2.0.4 to 11.2.0.3. This is very
    critical for us to be resolved.

    Hi,
    seems this is Character set issue fo source and Target DB check this doc:Unable to Export Table WF_ITEM_ATTRIBUTE_VALUES due to errors ORA-02374, ORA-22337, and ORA-02372 (Doc ID 1522761.1)
    HTH

  • My PowerBook G4 says that it's connected to wifi, but it still no internet connection. The connection will work for a while, and then I'll have to run diagnostics and it will work again for a few minutes and then stop working again. What's going on??

    My PowerBook G4 says that it's connected to wifi, but it still no internet connection. The connection will work for a while, and then I'll have to run diagnostics and it will work again for a few minutes and then stop working again. What's going on??

    Basic troubleshooting techniques for any problem
    Restart the computer = joy?
    Reset the router = joy?
    Restart the computer in Safe Mode = joy?
    ask yourself "What changed immediately preceding the onset of the problem?" = Anything... hardware, software, cabling, environment (interference source)
    ÇÇÇ

  • Error while faxing the remittance advice through payment run

    Hi,
    Message number (XS 826) " Cannot Process message : No route From ******(User) to *****(Faxnumber). ", Under what circumstances this error message comes while faxing the remittance advice through payment run, and also how to rectify that?
    Regards,
    Pooja

    Hi Pooja..
    It could be that the node that you are using for Fax is not active. Activate this and part of a problem was solved.
    However, the fax no. has to be in the format <country code><fax no.> 
    This will solve the remaining problem and fax can now be sent.
    Incase you need anything else, please feel free to write to me..
    Good Luck!
    Lucid-Mind...

  • HT1338 PLEASE HELP ME I AM FACING A PROBLEM My name is Ameer. I watch youtube videos from ipad2 ( safari ) today for my first time, when i run a video and i want to pause it, i touch the screen where the video is playing to reach the pause botton that is

    PLEASE HELP ME I AM FACING A PROBLEM
    My name is Ameer.
    I watch youtube videos from ipad2 ( safari )
    today for my first time, when i run a video and i want to pause it, i touch the screen where the video is playing to reach the pause botton that is located on a bar under the video which appears when i touch the screen. Today every time i touch the screen nothing happens and i cannt pause the video nor adjusting its quality.
    So plese help me fixing this problem as soon as posible.
    Regards

    Same problem on my ipad mini, running ios 6.0.2.
    A bit more info:
    -tried using YouTube in Safari on another ipad. Worked fine.
    Tried reboot (sleep + home buttons for 15 seconds). Didn't fix.
    -tried logging out of my YouTube account, thinking the problem was tied to my settings. Didn't fix.
    -tried uninstalling all apps I downloaded since the last time YouTube worked properly. Didn't fix.
    -tried watching a video in desktop mode. Can tap video screen to bring up pause okay in that mode.
    There are work arounds, but the thing I want to know is why YouTube doesn't work in Safari as of a couple of days ago, and is it indicative of another more serious problem with my ipad.

Maybe you are looking for