ORA-06564: object "ED"."BIN$eEXhW2fZlgDgQAoKUVFSiw==$0" does not exist

Oracle 11.0.1.7:
When I run streams remove procedure I keep getting the following:
ERROR at line 1:
ORA-06564: object "ED"."BIN$eEXhW2fZlgDgQAoKUVFSiw==$0" does not exist
ORA-06512: at "SYS.DBMS_LOGREP_UTIL", line 82
ORA-06512: at "SYS.DBMS_LOGREP_UTIL", line 115
ORA-06512: at "SYS.DBMS_CAPTURE_ADM_INTERNAL", line 516
ORA-01403: no data found
ORA-06512: at "SYS.DBMS_CAPTURE_ADM", line 422
ORA-06512: at "SYS.DBMS_STREAMS_ADM", line 1905
ORA-06512: at line 11I looked in dba_objects and have not found it. I also purged recycle bin. I also tried to create a table with that name but it says "object name already in use". How do I get rid of this object or this message?

This is a recyclebin object. Maybe you purged the recyclebin, but there is still something in the queue for the object ?
What are you running to get this error ?
Is this from the collect side, or the apply side ?

Similar Messages

  • ORA-23401: materialized view ""SYS"".""MV_OPTIONS"" does not exist

    Oracle 11gR1
    Linux Red Hat 6.3
    I have never seem this object SYS.MV_OPTIONS before much less know why it would be missing. Any ideas?
    I can no longer refresh my materialized views.

    Process worked fine until the addition on new MVs.
    What causes error?
    Running SP that calls DBMS_MVIEW.refresh. Here is the error in more detail...
    "ORA-23401: materialized view ""SYS"".""MV_OPTIONS"" does not exist
    ORA-06512: at ""SYS.DBMS_SNAPSHOT"", line 2545
    ORA-06512: at ""SYS.DBMS_SNAPSHOT"", line 2751
    ORA-06512: at ""SYS.DBMS_SNAPSHOT"", line 2720
    What has been changed?
    Added new materialized views to my instance that need periodic refreshing.
    Note: Running the block below works fine ....
    begin
    DBMS_MVIEW.refresh('MV_MINE');
    end;
    I suspect something in the process that calls this function is the issue (of course). But I still wonder what the object SYS.MV_OPTIONS is/does?

  • Ora-12545 connect failed because target host does not exist(plsql develper)

    Hi,
    I am using Oracle 10g version, and i am using plsql developer.
    I am able to connect Oracle through sql*plus, But i am not able to connect Oracle through plsql developer from past few days, it is giving me error like:
    ora-12545 connect failed because target host does not exist
    I have not done any changes in setting though i am getting this problem, earlier i was able to work with plsql developer very good.
    I am sending the TNS file for your reference.
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = vnod-PC)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = XE)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    Please help me in this.
    Thanks,
    Vinod

    910575 wrote:
    Hi,
    I am using Oracle 10g version, and i am using plsql developer.There are numerous products with similar names.
    Which vendor provides your software & which version of the software do you have?
    Is the Oracle database server system installed on the same system as your client software?
    post results from following SQL
    SELECT * FROM V$VERSION;
    Handle:     910575
    Email:     [email protected]
    Status Level:     Newbie
    Registered:     Jan 26, 2012
    Total Posts:     42
    Total Questions:     20 (18 unresolved)
    Why so many unanswered questions?
    Edited by: sb92075 on May 18, 2012 9:30 PM

  • Storage bin 320 902  does not exist (check your entry)

    Storage bin 320 902  does not exist (check your entry)
    Message no. L9009
    I have created the new bins in the interim storage area 902. In the table LPAG also the storage bins are visible. I am creating thre GR for the PO in the system but still getting the error in as above . Please help me out.

    Hi
    check the movement type configuration which is used. So u can find what storage bin is used for the particular movement type.
    If not existed create the interimbin.
    Hope this helps you...
    Rgds,
    Kris.

  • ORA-00959: tablespace '_$deleted$3$0' does not exist

    One of our Backup Database is acting up; one of my colleagues babysits it, but I just stumbled upon something strange. The error below keeps popping up whenever I try and create a new table.
    ERROR at line 8:
    ORA-00959: tablespace '_$deleted$3$0' does not existI have tried looking up the error on MOS and google without any luck.
    Regards,
    Phiri

    phiri,
    Here is the error illustration;
    $ sqlplus sys/password@opttest as sysdba
    SQL*Plus: Release 10.2.0.4.0 - Production on Fri Aug 20 14:51:09 2010
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> create tablespace ogan_deneme
      2  datafile '/backup/ogan_1.dbf' size 200M
      3  extent management local;
    Tablespace created.
    SQL> drop user ogan cascade;
    User dropped.
    SQL> create user ogan identified by password default tablespace ogan_deneme;
    User created.
    SQL> grant connect, resource to ogan;
    Grant succeeded.
    SQL> drop tablespace ogan_deneme including contents and datafiles;
    Tablespace dropped.
    SQL> conn ogan/password@opttest
    Connected.
    SQL> create table ogan_deneme as select * from all_objects;
    create table ogan_deneme as select * from all_objects
    ERROR at line 1:
    ORA-00959: tablespace 'OGAN_DENEME' does not existSo in your case as you have seen, your tablespace is that _$deleted$3$0 one.
    Ogan
    Edited by: Ogan Ozdogan on 20.Ağu.2010 14:55
    Here is the solution;
    SQL> conn / as sysdba
    Connected.
    SQL> alter user ogan default tablespace codesd;
    User altered.
    SQL> conn ogan/password@opttest
    Connected.
    SQL> create table ogan_deneme as select * from all_objects;
    Table created.Hope That Helps.
    Ogan

  • For object XABBELEGNR , number range interval  does not exist OMJ6

    Dear all
            I want to enter only the value between 1 to 5 in GR/GI Slip No for T.code Mb01,but it is not allowing it is showing as For object XABBELEGNR , number range interval  does not exist OMJ6.
    Kindly let me know how to proceed,so that i can enter value between 1 to 5 in that field.
    regards
    M.Chandra mohan

    hi
    u just go to tcode omc1.
    activate gr/gi slip for plant
    then create number range group code and assign it to plant ,storage location and movenent type combination.
    Then u can create the intervals thru OMJ6.
    Hope it helps
    rewrad if useful
    Rohit

  • Object ROUTING_N number range 01 does not exist

    My students all have this error, "Object ROUTING_N number range 01 does not exist", when they create and save routings. I tried to configure it using transaction code OP8B and OP62 as someone else suggested here. However, it still doesn't work. Anyone can help? Thanks a lot!

    It didn't work, either.

  • For Object RV_BELEG, number range SD does not exist

    Dear Gurus,
    I have created a sales order VA01 with 1 material, and when I try to print the invoice, I have the following message of error:
    'For Object RV_BELEG, number range SD does not exist'
    I have checked my output types, they have been rightly assigned to the invoice forms.
    OK, so If I have to assign number ranges to sales documents, how can I do that? Do I have to talk to FI guys to?
    Please help.
    Regards
    Christian

    Thats SD numbeer range that is missing. Each invoice has two numbers one in SD and one in FI.
    Just go to SNRO type RV_BELEG and maintain it (the name of the number range you have in your billing document type setup in spro)
    Piotr.

  • Object has been disconnected or does not exist at the server

    Hi,
    I have a report which had run daily without any problem for months. Now it stops after quite a lot of time with error: 'object .rem has been disconnected or does not exist at the server'.
    I have checked the dataset queries and the parameters, and everything is fine. I changed the timeout for the report as well, but it did not help either. I don't use a hidden object.
    Could anyone tell me what's happening?
    Many thanks.
    P.

    I'm using 2008. I had thought the bug was fixed in it during the past 4.5 years.
    And what is a 'bad default'? And how come that the report worked for a long time without problems? If it is a known bug, it should have prevented proper running from the beginning.
    Hi Pelso,
    This issue has been fixed in SSRS 2008R2. If you need to fix this issue in a previous release of Reporting Services, I would suggest opening a case with Microsoft Customer Support Services (CSS) (http://support.microsoft.com),
    so that a dedicated Support Professional can assist you in a more efficient manner.
    Regards,
    Elvis Long
    TechNet Community Support

  • ORA-01041: Internal Error. HOSTDEF extension does not exist

    Hi all,
    In the database I provided with the commando
    ALTER DATABASE BACKUP CONTROLFILE TO TRACE; a trace file with the Script for the production my controlfile. Now I would like to test this Script. I have install a new test DB. Then I shutdown the database and renamed the control files - to see particularly over, which error message become there indicated. Afterwards I wanted to start the Script from the trace file to create a control file. But after I STARTUP MOUNT; in SQL*Plus entered, I become these error messages:
    LRM-00109: could not open parameter file 'C:\Oracle\Ora920\DATABASE\INIT%ORACLE_SID%.ORA'
    ORA-01078: failure in processing system parameters
    How have I understood, Oracle tries to find the init file local on my machine. Those lies however on the server. Then I entered:
    startup pfile=\\server1\oracleserver\admin\orcltest\pfile\initorcltest.ora
    Can I enter a file, which does not lie locally on my computer with the instruction STARTUP pfile =...? After I made that, I become only this error message:
    ORA-01041 internal error. hostdef extension doesn't exist
    And the database is closed. I can't connect with it.
    Regards
    Leonid Pavlov

    As far as I know, if you want to start/stop Oracle through sqlplus you need to be using a copy of sqlplus on the server. If your server is an *NIX box, then you can telnet to the server and run sqlplus.  If your server is windows then you will need something like VNC, PC-Anywhere or sneakernet to physically attach to the server.
    HTH
    John

  • Loadjava error: ORA-29540: class oracle/aurora/rdbms/DbmsJava does not exist

    Hi,
    I'm trying to create a simple Java stored procedure running 8.1.6. When using loadjava (c:\jdk1.2.2\bin\java -classpath .;d:\orant8i\lib\aurora_client.jar;d:\orant8i\javavm\lib\aurora.zip;d:\orant8i\sqlj\lib\translator.zip;d:\orant8i\jdbc\lib\classes111.zip oracle.aurora.server.tools.loadjava.LoadJavaMain -u system/manager -f -v Test.class), I get the above error. The problem: file DbmsJava exists in the included aurora.zip package. To verify this, I checked the zip file, and I successfully compiled a test program importing the class.
    Any ideas?
    Thanks,
    Bernd

    I also tried another approach to create a Java stored procedure, and got an error which I think has the same cause as above:
    public class Test { public static void test() {System.out.println("Test");}}
    create directory dir as 'C:\Test';
    create java class using bfile(dir, 'Test.class');
    create procedure test is language java name 'Test.test()';
    call test();
    ORA-29541: class CM.Test could not be resolved

  • Error while loadjava xmlparserv2.jar: ORA-04043: object oracle/xml/.. does not exist

    In Oracle8i.15, I tried to install xmlparserv2.jar after I downloaded xdk_plsql_9_2_0_2_0.zip and upzip to local machine.
    However, when I issued the follwoing command:
    loadjava -v -r -user SYSTEM/manager -force xmlparserv2.jar
    For each class, it has the following error message:
    resolving: oracle/xml/async/DOMBuilderErrorListener
    Error while resolving class oracle/xml/async/DOMBuilderErrorListener
    ORA-04043: object oracle/xml/async/DOMBuilderErrorListener does not exist
    resolving: oracle/xml/comp/CXMLParser
    Error while resolving class oracle/xml/comp/CXMLParser
    ORA-04043: object oracle/xml/comp/CXMLParser does not exist
    How can I solve this problem?
    Thanks in advance.

    Do you mean you use 8.1.5? You can't directly load the xmlparserv2.jar to it.

  • ORA-34492: Analytic workspace object cubename _STORED does not exist.

    I am having issues accessing cube data from a user other than where the AW was built.
    Following is what I have done in User-1:
    1. Create two AW's in User-1 : AW-1 and AW-2.
    2. Create all objects in these two AW's
    3. AW-2 is dynamically attached on attaching AW-1 by using PERMIT startup programs. Please refer Attaching multiple AW's
    4. Refreshed both AW's to load data
    5. ALLCOMPILE - no errors.
    6. Created some SQL views on User-1 which basically query the underlying cube views. I also have some queries using the olap_table option.
    7. All my querries work fine in User-1. I can access data from AW-1 and AW-2.
    However, we give access to the above SQL views through an abstract user: User-abs. In 10g, all we did was grant select privs to all the User-1.AW$ tables and also on all the sql views. This would let User-abs get data from the cubes in User-1.
    I am not able to get User-abs to do the same in 11g. We encounter an error mentioning that the workspace object <cubename>_STORED does not exist. The cubename it is referring to exists in AW-2.
    I granted select privs on all AW$ tables, dimension views, cube views and the abstracted sql views but the error persists.
    I tried searching this forum but could not find any helpful leads. Any help will be greatly appreciated.
    Thanks!
    Database - 11.2.0.1
    AWM - 11.2.0.2.0A

    I can think of two possible problems. First, you may not be properly qualifying the owner name when you refer to the object. This can be important when refering to objects owned by other schemas. For example instead of 'my_cube_stored' you would say 'user-1.aw-2!my_cube_stored'. You should also be careful about the order in which you attach the AWs. Do you want AW-2 attached first or last? Use the LAST keyword on AW ATTACH to control this.
    Another possibility is that you have added additional logic to PERMIT_READ over and above the 'aw attach' comand. I was able to recreate the error with the following code in a new AW called TEST_AW in the GLOBAL schema.
    DEFINE PERMIT_READ PROGRAM BOOLEAN
    PROGRAM
    aw attach global.global
    show global.global!units_cube_stored
    return true
    ENDAttaching TEST_AW in RO mode as any user gives me the following error.
    ORA-34492: Analytic workspace object GLOBAL.GLOBAL!UNITS_CUBE_STORED does not
    exist.
    ORA-06512: at "SYS.DBMS_AW", line 93
    ORA-06512: at "SYS.DBMS_AW", line 122
    ORA-06512: at line 1Here is the documentation for PERMIT_READ
    >
    PERMIT_READ
    A PERMIT_READ program is a program that you can create and that Oracle OLAP checks for by name when an AW ATTACH read-only command executes. Depending on the value returned by the program, Oracle OLAP executes the code within the program after attaching the analytic workspace. Depending on the statements in the permit_read program the user is granted or denied access to specific objects or sets of object values. Within permit_read program, you can specify PERMIT commands that grant or restrict access to individual workspace objects. All of the objects referred to in a given permit_read must exist in the same analytic workspace.
    >
    Note, especially, the restriction in the last sentence. This means that a PERMIT_READ program in AW1, for example, cannot refer to objects in AW2. So this is why my PERMIT_READ doesn't work. The AUTOGO does not have these restrictions, but as we know from the forum post you cited, AUTOGO is broken in 11.2.0.1. You can move forward to 11.2.0.2 where AUTOGO is fixed, but there is workaround, which is to add a PERMIT_READ program to the second AW to do the work. For example, if I add this PERMIT_READ to GLOBAL and remove the 'show' command from the PERMIT_READ in TEST_AW, then everything works as expected.
    DEFINE PERMIT_READ PROGRAM BOOLEAN
    PROGRAM
    if aw(attached 'test_aw')
    then do
    show global.global!units_cube_stored
    doend
    return true
    END

  • Not able to create EM repository - ORA-00942: table or view does not exist

    -bash-3.00$ emca -config dbcontrol db -repos recreate
    STARTED EMCA at 2010-06-02 12:12:29
    EM Configuration Assistant, Version 10.2.0.1.0 Production
    Copyright (c) 2003, 2005, Oracle.  All rights reserved.
    Enter the following information:
    Database SID: eric1
    Listener port number: 1521
    Password for SYS user:
    Password for DBSNMP user:
    Password for SYSMAN user:
    Email address for notifications (optional):
    Outgoing Mail (SMTP) server for notifications (optional):
    You have specified the following settings
    Database ORACLE_HOME ................ /oracle/product/10.2.0/db_1
    Database hostname ................ solx
    Listener port number ................ 1521
    Database SID ................ eric1
    Email address for notifications ...............
    Outgoing Mail (SMTP) server for notifications ...............
    Do you wish to continue? [yes(Y)/no(N)]: Y
    2010-06-02 12:12:52 oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /oracle/product/10.2.0/db_1/cfgtoollogs/emca/eric1/emca_2010-06-02_12-12-29-PM.log.
    2010-06-02 12:13:02 oracle.sysman.emcp.EMReposConfig dropRepository
    INFO: Dropping the EM repository (this may take a while) ...
    2010-06-02 12:13:05 oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /oracle/product/10.2.0/db_1/sysman/admin/emdrep/bin/RepManager -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=solx)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=eric1))) -repos_user SYSMAN -action drop -verbose -output_file /oracle/product/10.2.0/db_1/cfgtoollogs/emca/eric1/emca_repos_drop_2010-06-02_12-13-02-PM.log
    2010-06-02 12:13:05 oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error dropping the repository
    2010-06-02 12:13:05 oracle.sysman.emcp.EMReposConfig invoke
    INFO: Refer to the log file at /oracle/product/10.2.0/db_1/cfgtoollogs/emca/eric1/emca_repos_drop_<date>.log for more details.
    2010-06-02 12:13:05 oracle.sysman.emcp.EMConfig perform
    SEVERE: Error dropping the repository
    Refer to the log file at /oracle/product/10.2.0/db_1/cfgtoollogs/emca/eric1/emca_2010-06-02_12-12-29-PM.log for more details.
    Could not complete the configuration. Refer to the log file at /oracle/product/10.2.0/db_1/cfgtoollogs/emca/eric1/emca_2010-06-02_12-12-29-PM.log for more details.So I looked into a log file: /oracle/product/10.2.0/db_1/cfgtoollogs/emca/eric1/emca_2010-06-02_12-12-29-PM.log
    Here is an end of it ( I can paste all log file if necessary but it is very long):
    CONFIG: Starting execution: /oracle/product/10.2.0/db_1/sysman/admin/emdrep/bin/RepManager -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=solx)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=eric1))) -repos_user SYSMAN -action drop -verbose -output_file /oracle/product/10.2.0/db_1/cfgtoollogs/emca/eric1/emca_repos_drop_2010-06-02_12-13-02-PM.log
    2010-06-02 12:13:05 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 51
    2010-06-02 12:13:05 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Enter SYS user's password :
    Enter repository user password :
    Getting temporary tablespace from database...
    prepare(SELECT tablespace_name FROM dba_tablespaces WHERE contents='TEMPORARY'  AND status='ONLINE'): ORA-00942: table or view does not exist (DBD ERROR: error possibly near <*> indicator at char 28 in 'SELECT tablespace_name FROM <*>dba_tablespaces WHERE contents='TEMPORARY'  AND status='ONLINE'')
    2010-06-02 12:13:05 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: stty: : No such device or address
    stty: : No such device or address
    stty: : No such device or address
    stty: : No such device or address
    2010-06-02 12:13:05 oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /oracle/product/10.2.0/db_1/sysman/admin/emdrep/bin/RepManager -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=solx)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=eric1))) -repos_user SYSMAN -action drop -verbose -output_file /oracle/product/10.2.0/db_1/cfgtoollogs/emca/eric1/emca_repos_drop_2010-06-02_12-13-02-PM.log
    2010-06-02 12:13:05 oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error dropping the repository
    2010-06-02 12:13:05 oracle.sysman.emcp.EMReposConfig invoke
    INFO: Refer to the log file at /oracle/product/10.2.0/db_1/cfgtoollogs/emca/eric1/emca_repos_drop_<date>.log for more details.
    2010-06-02 12:13:05 oracle.sysman.emcp.EMConfig perform
    SEVERE: Error dropping the repository
    Refer to the log file at /oracle/product/10.2.0/db_1/cfgtoollogs/emca/eric1/emca_2010-06-02_12-12-29-PM.log for more details.
    2010-06-02 12:13:05 oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error dropping the repository
            at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:176)
            at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:127)
            at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:142)
            at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:479)
            at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1123)
            at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
            at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)...and here I can easly see that error: ORA-00942: table or view does not exist.
    But what does it mean to me ? I mean what should I ro to create/recreate missing table or view ?

    Hi, so here are my tries:
    1. admin:
    Below Dirs dont not exist:
    <ORACLE_HOME>/<hostname_sid>
    <ORACLE_HOME>/oc4j/j2ee/OC4J_DBConsole_<hostname>_<sid>
    ...also it was unable to drop user - does not exist
    -bash-3.00$ sqlplus "/as sysdba"
    SQL*Plus: Release 10.2.0.2.0 - Production on Wed Jun 2 12:55:44 2010
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Release 10.2.0.2.0 - Production
    SQL> sqlplus "/as sysdba"
    drop user sysman cascade;
    drop role MGMT_USER;
    drop user MGMT_VIEW cascade;
    drop public synonym MGMT_TARGET_BLACKOUTS;
    drop public synonym SETEMVIEWUSERCONTEXT;
    SP2-0734: unknown command beginning "sqlplus "/..." - rest of line ignored.
    SQL> drop user sysman cascade
    ERROR at line 1:
    ORA-01918: user 'SYSMAN' does not exist
    SQL> drop role MGMT_USER
    ERROR at line 1:
    ORA-01919: role 'MGMT_USER' does not exist
    SQL> drop user MGMT_VIEW cascade
    ERROR at line 1:
    ORA-01918: user 'MGMT_VIEW' does not exist
    SQL> drop public synonym MGMT_TARGET_BLACKOUTS
    ERROR at line 1:
    ORA-01432: public synonym to be dropped does not exist
    SQL> drop public synonym SETEMVIEWUSERCONTEXT
    ERROR at line 1:
    ORA-01432: public synonym to be dropped does not exist
    {code}
    I also tried this:
    2. coskan         
    {code}
    -bash-3.00$ sqlplus sys/qaz123@eric1 as sysdba
    SQL*Plus: Release 10.2.0.2.0 - Production on Wed Jun 2 12:51:34 2010
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Release 10.2.0.2.0 - Production
    SQL> SELECT tablespace_name FROM dba_tablespaces WHERE contents='TEMPORARY' AND status='ONLINE';
    SELECT tablespace_name FROM dba_tablespaces WHERE contents='TEMPORARY' AND status='ONLINE'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Storage bin does not exist error when during transfer posting in MB1B

    Hello All,
    I am getting the error message "  Storage bin [WH no, Storage type] does not exist Check your entry"  during transfer posting in MB1B from one storage location  to another for ex 0007 to 0001. But i can able to do transfer posting from 0001 to 0007 without any error.
    Please provide your solutions/suggestions
    Thanks
    Benny

    Benny Sampath wrote:
    Here is the error message "Storage bin 56A 870  does not exist (check your entry)"
    >
    > Thanks
    > Benny
    I can only see 2 values instead of the expected 3.
    what is 56A ? is it bin, warehouse or storage type?
    what is 870 ? is it bin, warehouse or storage type?
    one variable that is need  to have a hit in table LAGP is missing, hence you get this error.
    you have to find out why this variable is missing.
    But there is a wide area to look. Hence you should first answer the questions, as this would limit the options where to look.

Maybe you are looking for

  • [SOLVED]Lose Conky window shadows...

    I have Xfce set to display shadows under windows, which looks great until I run Conky.  Any tips on how I can get rid of Conky's shadow and keep the rest? Last edited by crisnoh (2008-05-04 20:16:06)

  • FrameMaker Error

    i need help with this reoccuring error when attempting to create a PDF

  • How do i put the photos on my iphone to my comp?

    i am going to do a clean restore and set up as a new phone so i want the photos to be on the comp so that way i can put them back on the phone after the set up is done

  • How to manage iTunes files.

    I uploaded music from a hard drive borrowed from a friend.  At first all was well.  Now I have music in personal iTunes files that I did not put there and certain music files in the main file cannot be accessed because the file is not complete.  This

  • Changing Library Location

    I have copied all my iTunes library from my external hard drive to my Mac drive and used iTunes Preferences to set the Mac Drive as the new location of the Library. However, it hasn't worked as each song is still being played from the external drive.