ORA-12545: Connect failed because target host or object does not exist

Hi all

I am not able to connect database remotely. I have two servers with the name U.S. and localhost. Here are my coordinates tns:

Details of the host server we:

[oracle@US admin] $ more tnsnames.ora

tnsnames.ora # Network Configuration file: /u01/app/oracle/product/11.2.0/db_1/network/admin/tnsnames.ora

# Generated by Oracle configuration tools.

PROD =

(DESCRIPTION =

(ADDRESS = (PROTOCOL = TCP) (HOST = EN)(PORT = 1521))

(CONNECT_DATA =

(SERVER = DEDICATED)

(SERVICE_NAME = prod. WORLD)

)

)

PROD_STBY =

(DESCRIPTION =

(ADDRESS = (PROTOCOL = TCP)(HOST = localhost) (PORT = 1521))

(CONNECT_DATA =

(SERVER = DEDICATED)

(SERVICE_NAME = prod. WORLD)

)

)


[oracle@US admin] $ more sysconfig

Networking = yes

NETWORKING_IPV6 = yes

HOSTNAME = US.localdomain


[oracle@US admin] $ more/etc/hosts

# Do not remove the next line, or various programs

# requiring a network functionality will fail.

127.0.0.1 localhost.localdomain localhost

: US.localdomain6 1 U.S.

Remote Ping US server location:

[oracle@US admin] $ ping 192.168.188.131

PING 192.168.188.131 (192.168.188.131) 56 (84) bytes of data.

64 bytes from 192.168.188.131: icmp_seq = 1 ttl = 64 time = 0,662 ms

64 bytes from 192.168.188.131: icmp_seq = 2 ttl = 64 time = 0,558 ms

64 bytes from 192.168.188.131: icmp_seq = 3 ttl = 64 time = 0,566 ms

64 bytes from 192.168.188.131: icmp_seq = 4 ttl = 64 time = 0,603 ms

64 bytes from 192.168.188.131: icmp_seq = 5 ttl = 64 time = 0.575 ms

^ C

-192.168.188.131 - ping statistics

5 packets transmitted, 5 received, 0% packet loss, time 4002ms

RTT min/avg/max/leg = 0.558/0.592/0.662/0.048 ms

Details of the server remote localhost:

[oracle@localhost admin] $ more tnsnames.ora

PROD =

(DESCRIPTION =

(ADDRESS = (PROTOCOL = TCP) (HOST = EN)(PORT = 1521))

(CONNECT_DATA =

(SERVER = DEDICATED)

(SERVICE_NAME = prod. WORLD)

)

)

PROD_STBY =

(DESCRIPTION =

(ADDRESS = (PROTOCOL = TCP)(HOST = localhost) (PORT = 1521))

(CONNECT_DATA =

(SERVER = DEDICATED)

(SERVICE_NAME = prod. WORLD)

)

)


[oracle@localhost admin] $ cat/etc/hosts

# Do not remove the next line, or various programs

# requiring a network functionality will fail.

127.0.0.1 localhost.localdomain localhost

: 1 localhost6.localdomain6 localhost6


[oracle@localhost admin] $ cat sysconfig

Networking = yes

NETWORKING_IPV6 = yes

HOSTNAME = localhost.localdomain

[oracle@localhost admin] $ listener.ora more

SID_LIST_LISTENER =

(SID_LIST =

(SID_DESC =

(GLOBAL_DBNAME = prod. WORLD)

(ORACLE_HOME = u01/app/oracle/product/11.2.0/dbhome_1)

(SID_NAME = prod)

)

)

LISTENER =

(DESCRIPTION_LIST =

(DESCRIPTION =

(ADDRESS = (PROTOCOL = TCP)(HOST = localhost.localdomain) (PORT = 1521))

)

(DESCRIPTION =

(ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1521))

)

)

ADR_BASE_LISTENER = / u01/app/oracle

[oracle@localhost admin] $ lsnrctl status


LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 4 February 2014 16:49:36

Copyright (c) 1991, 2009, Oracle.  All rights reserved.

Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=localhost.localdomain) (PORT = 1521)))

STATUS of the LISTENER

------------------------

Alias LISTENER

Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production

Start date February 4, 2014 16:42:09

Uptime 0 days 0 h 7 min 26 sec

Draw level off

Security ON: OS Local Authentication

SNMP OFF

Parameter Listener of the /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora file

The listener log file /U01/app/Oracle/diag/tnslsnr/localhost/listener/alert/log.XML

Summary of endpoints listening...

(DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=localhost.localdomain) (PORT = 1521)))

(DESCRIPTION = (ADDRESS = (PROTOCOL = ipc) (KEY = EXTPROC1521)))

Summary of services...

Service "prod. The WORLD' has 1 instance (s).

Instance "prod", status UNKNOWN, has 1 operation for this service...

The command completed successfully

Location of ping to the server hosting remote localhost:

[oracle@localhost admin] $ ping 192.168.188.130

PING 192.168.188.130 (192.168.188.130) 56 (84) bytes of data.

64 bytes from 192.168.188.130: icmp_seq = 1 ttl = 64 time = 1.57 ms

64 bytes from 192.168.188.130: icmp_seq = 2 ttl = 64 time = 0,223 ms

64 bytes from 192.168.188.130: icmp_seq = 3 ttl = 64 time = 0,577 ms

64 bytes from 192.168.188.130: icmp_seq = 4 ttl = 64 time = 0,571 ms

64 bytes from 192.168.188.130: icmp_seq = 5 ttl = 64 time = 0,568 ms

^ C

-192.168.188.130 - ping statistics

5 packets transmitted, 5 received, 0% packet loss, time 4006ms

RTT min/avg/max/leg = 0.223/0.703/1.578/0.458 ms

Connection database target mode ensures via RMAN:

[oracle@localhost admin] $ rman target sys/oracle_4U@PROD auxiliary sys/oracle_4U@PROD_STBY


Recovery Manager: release 11.2.0.1.0 - Production on Tue Feb 4 16:56:45 2014

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

RMAN-00571: ===========================================================

RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.

RMAN-00571: ===========================================================

RMAN-00554: initialization of the package manager internal collection failed

RMAN-04005: target database error:

ORA-12545: Connect failed because target host or object does not exist

Please let me know the cause of this error and it please help me how can I solve it.

Kind regards

Michel

OK, so you have a software firewall (IPTables) running.  By default, it will not be configured to accept connections on port 1521.  You have two options...

(1) disable the firewall completely.  Run these commands to do this...

stop /etc/init.d/iptables

chkconfig iptables off

The first command stops the service.  The second command prevents revived at every restart of the OS.

(2) add an exception to the firewall for port 1521.  I'm not a Linux expert, but it should be something like this...

Change the configuration of IPTables with vi...

VI/etc/sysconfig/iptables

Add a new rule as follows...

-A of ENTRY m state - state NEW-m tcp tcp - dport 1521-j ACCEPT Pei

Save and close, and then restart the IPTables service...

/etc/init.d/iptables restart

NOTE: you must always change the name of this server to something other than "localhost".

Tags: Database

Similar Questions

  • TNS-12545: Connect failed because target host or object does not exist

    Hi all

    I have two hosts with me. 1 host1 and 2. host2. Host1 have ORCL database. And when I'm doing the tnsping to host2 for database ORCL I get error below.

    [oracle@host2 ~] $ hostname

    host2.example.com

    [oracle@host2 ~] $ tnsping ORCL

    AMT Ping utility for Linux: Version 11.2.0.1.0 - Production on 5 April 2014 20:31:40

    Copyright (c) 1997, 2009, Oracle.  All rights reserved.

    Use settings files:

    TNSNAMES adapter used to resolve the alias

    Try to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = host1.example.com) (PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = ORCL)))

    TNS-12545: Connect failed because target host or object does not exist

    Here's my tns annually involves Details:

    on host1:

    [oracle@host1 admin] $ listener.ora more

    listener.ora # Network Configuration file: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora

    # Generated by Oracle configuration tools.

    SID_LIST_LISTENER =

    (SID_LIST =

    (SID_DESC =

    (GLOBAL_DBNAME = ORCL. WORLD)

    (ORACLE_HOME = u01/app/oracle/product/11.2.0/dbhome_1)

    (SID_NAME = ORCL)

    )

    )

    LISTENER =

    (DESCRIPTION_LIST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = host1.example.com) (PORT = 1521))

    )

    )

    ADR_BASE_LISTENER = / u01/app/oracle

    [oracle@host1 admin] $ more tnsnames.ora

    tnsnames.ora # Network Configuration file: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/tnsnames.ora

    # Generated by Oracle configuration tools.

    ORCL =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = host1.example.com) (PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = ORCL)

    )

    )

    MYTEST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = host2.example.com) (PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = MYTEST)

    )

    )

    LSNRCTL > status

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=host1.example.com) (PORT = 1521)))

    STATUS of the LISTENER

    ------------------------

    Alias LISTENER

    Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production

    Start date April 5, 2014 20:09:33

    Uptime 0 days 0 h 25 min 1 sec

    Draw level off

    Security ON: OS Local Authentication

    SNMP OFF

    Parameter Listener of the /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora file

    The listener log file /U01/app/Oracle/diag/tnslsnr/host1/listener/alert/log.XML

    Summary of endpoints listening...

    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=host1.example.com) (PORT = 1521)))

    Summary of services...

    Service "ORCL" has 1 instance (s).

    Instance "ORCL", State LOAN, has 1 operation for this service...

    Service "ORCL. The WORLD' has 1 instance (s).

    Instance "ORCL", status UNKNOWN, has 1 operation for this service...

    Service 'ORCLXDB' has 1 instance (s).

    Instance "ORCL", State LOAN, has 1 operation for this service...

    The command completed successfully

    On host2:

    [oracle@host2 admin] $ listener.ora more

    listener.ora # Network Configuration file: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora

    # Generated by Oracle configuration tools.

    SID_LIST_LISTENER =

    (SID_LIST =

    (SID_DESC =

    (GLOBAL_DBNAME = MYTEST. WORLD)

    (ORACLE_HOME = u01/app/oracle/product/11.2.0/dbhome_1)

    (SID_NAME = MYTEST)

    )

    )

    LISTENER =

    (DESCRIPTION_LIST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = host2.example.com) (PORT = 1521))

    )

    )

    ADR_BASE_LISTENER = / u01/app/oracle

    [oracle@host2 admin] $ tnsname.ora more

    TNSNAME.ora: no such file or directory

    [oracle@host2 admin] $ more tnsnames.ora

    MYTEST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = host2.example.com) (PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = MYTEST)

    )

    )

    ORCL =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = host1.example.com) (PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = ORCL)

    )

    )

    Please help me what I do in configuring the listener and tns.

    Kind regards

    Michel

    fb767351-A660-4b18-9a9f-73bc141f6a0c wrote:

    Hi all

    I have two hosts with me. 1 host1 and 2. host2. Host1 have ORCL database. And when I'm doing the tnsping to host2 for database ORCL I get error below.

    [oracle@host2 ~] $ hostname

    host2.example.com

    [oracle@host2 ~] $ tnsping ORCL

    AMT Ping utility for Linux: Version 11.2.0.1.0 - Production on 5 April 2014 20:31:40

    Copyright (c) 1997, 2009, Oracle.  All rights reserved.

    Use settings files:

    TNSNAMES adapter used to resolve the alias

    Try to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = host1.example.com) (PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = ORCL)))

    TNS-12545: Connect failed because target host or object does not exist

    If your entry for "ORCL" tnsnames decided to 'contact' indicated info.  He tried to send a ping packet to the server identified by "(HOST = host1.example.com)". "  Oracle tns transmitted the request to the network stack of BONES for the resolution and routing.  Here, 'host1.example.com' host name could not be resolved to an IP address, or if it was, it was an IP address that is a dead-end.

    Here's my tns annually involves Details:

    We see the details necessary out of your tnsping tns.  Since the application never had the host (as is obvious in the error message), nothing about the questions of the listener - he never got.

    on host1:

    As your example tnsping host2, and says that the error message obvious host1 is nowhere to be found, like the listener, none of the files of configuration on host1 question - demand ever on host1.

    [oracle@host1 admin] $ listener.ora more

    listener.ora # Network Configuration file: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora

    # Generated by Oracle configuration tools.

    SID_LIST_LISTENER =

    (SID_LIST =

    (SID_DESC =

    (GLOBAL_DBNAME = ORCL. WORLD)

    (ORACLE_HOME = u01/app/oracle/product/11.2.0/dbhome_1)

    (SID_NAME = ORCL)

    )

    )

    LISTENER =

    (DESCRIPTION_LIST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = host1.example.com) (PORT = 1521))

    )

    )

    ADR_BASE_LISTENER = / u01/app/oracle

    [oracle@host1 admin] $ more tnsnames.ora

    tnsnames.ora # Network Configuration file: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/tnsnames.ora

    # Generated by Oracle configuration tools.

    ORCL =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = host1.example.com) (PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = ORCL)

    )

    )

    MYTEST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = host2.example.com) (PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = MYTEST)

    )

    )

    LSNRCTL > status

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=host1.example.com) (PORT = 1521)))

    STATUS of the LISTENER

    ------------------------

    Alias LISTENER

    Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production

    Start date April 5, 2014 20:09:33

    Uptime 0 days 0 h 25 min 1 sec

    Draw level off

    Security ON: OS Local Authentication

    SNMP OFF

    Parameter Listener of the /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora file

    The listener log file /U01/app/Oracle/diag/tnslsnr/host1/listener/alert/log.XML

    Summary of endpoints listening...

    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=host1.example.com) (PORT = 1521)))

    Summary of services...

    Service "ORCL" has 1 instance (s).

    Instance "ORCL", State LOAN, has 1 operation for this service...

    Service "ORCL. The WORLD' has 1 instance (s).

    Instance "ORCL", status UNKNOWN, has 1 operation for this service...

    Service 'ORCLXDB' has 1 instance (s).

    Instance "ORCL", State LOAN, has 1 operation for this service...

    The command completed successfully

    On host2:

    Okay, the problem being that a client on host2 couldn't solve a connection to hos1, these could be revealing.

    [oracle@host2 admin] $ listener.ora more

    listener.ora # Network Configuration file: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora

    # Generated by Oracle configuration tools.

    SID_LIST_LISTENER =

    (SID_LIST =

    (SID_DESC =

    (GLOBAL_DBNAME = MYTEST. WORLD)

    (ORACLE_HOME = u01/app/oracle/product/11.2.0/dbhome_1)

    (SID_NAME = MYTEST)

    )

    )

    LISTENER =

    (DESCRIPTION_LIST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = host2.example.com) (PORT = 1521))

    )

    )

    ADR_BASE_LISTENER = / u01/app/oracle

    Except that in the example, we work with, host2 is the customer, trying to reach a database on host1.  Any listener on host2 is totally irrelevant.

    [oracle@host2 admin] $ tnsname.ora more

    TNSNAME.ora: no such file or directory

    [oracle@host2 admin] $ more tnsnames.ora

    MYTEST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = host2.example.com) (PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = MYTEST)

    )

    )

    ORCL =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = host1.example.com) (PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = ORCL)

    )

    )

    It's the only tns configuration file that is important for the problem at hand.  And we already knew what he said, since the output of your command of tnsping.

    Please help me what I do in configuring the listener and tns.

    Kind regards

    Michel

    Is "host1.exampl.com" the real hostname of your machine "host1"?  Or you made that blur in your ad - thing quite legitimate to do this for security reasons.

    Whatever, this is not really a matter of tns, unless of course 'host1.example.com' is really what you put in the tnsnames file, but your server "host1" became really something else.

    Assuming that 'host1.example.com' is the correct value, debugging starts with the following:

    [oracle@host2 admin] $ ping host1.example.com

    [oracle@host2 admin] $ tracerout host1.example.com

  • Unable to connect to MKS: virtual machine configuration file does not exist

    Guys,

    Need a little help I'm running the following

    vCenter Server 4.0.0 (build 208111)

    ESX Server 4.0.0 (build 208167)

    I have a computer virtual running WIndows 2000 Advanced and when I try and open the console I get a black screen and the error message following

    "" Unable to connect to MKS: virtual machine configuration file does not exist '. "

    I scoured the data store and all the files of the virtual machine appear to be in place, I thought deletin the virtual machine from the inventory and add the vmdk file, it would be a good idea?

    Thank you.

    Remove and add new inventory won't hurt (you could lose data historial for virtual machine), it probably won't solve the problem.

    I doubt, it is a problem with the .vmx file, but you can try:

    -Remove the VM of the inventory

    -To create the new virtual machine (with the same characteristics as the virtual machine that you removed), name it differently and do not add hard drives that it

    -Change the new VM settings and add the existing VMDK virtual machine that you deleted

    -Power on VM and try

    • You should always have your complete file to the virtual machine original intact, in case you need, you will always have your original vmx file to add it to the inventory.

    By doing these steps you re-create the vmx file.

    f this post was useful/solved your problem, please mark the points of wire and price as seem you. Thank you!

  • DESC DBA_DATA_FILES / ORA-04043: dba_data_files object does not exist

    Hi I have Oracle 10.1.0.5; on IBM AIX. After the disk failure, I have a problem with corruption of block cancel and I am unable to use dba_data_file view.



    SQL > desc dba_data_files

    ERROR:

    ORA-04043: dba_data_files object does not exist





    SQL > desc dba_tablespaces

    Name Null? Type

    ----------------------------------------- -------- ----------------------------

    NOM_TABLESPACE NOT NULL VARCHAR2 (30)

    BLOCK_SIZE NOT NULL NUMBER

    NUMBER OF INITIAL_EXTENT

    NUMBER OF NEXT_EXTENT

    MIN_EXTENTS NOT NULL NUMBER

    NUMBER OF MAX_EXTENTS

    NUMBER OF PCT_INCREASE

    NUMBER OF MIN_EXTLEN

    STATUS VARCHAR2 (9)

    CONTENT VARCHAR2 (9)

    RECORD VARCHAR2 (9)

    FORCE_LOGGING VARCHAR2 (3)

    EXTENT_MANAGEMENT VARCHAR2 (10)

    ALLOCATION_TYPE VARCHAR2 (9)

    PLUGGED_IN VARCHAR2 (3)

    SEGMENT_SPACE_MANAGEMENT VARCHAR2 (6)

    DEF_TAB_COMPRESSION VARCHAR2 (8)

    VARCHAR2 (11) RETENTION

    BIGFILE VARCHAR2



    What is the problem? Database is running.



    Thanks in advance

    Database is running.

    According to metalink following note

    ORA-4043 on DBA_ View (s) if they are described in a mount Statge [ID 296235.1] *.

    It seems completing desc DBA_ views in the State, you have to bounce back or clear the shared pool.

    For more details check the note.

  • ORA-21700: object does not exist or is marked for deletion - nested table

    Hi, please see my procedure. It comes to delete records in a table whose primary keys will be given in comma separated format.

    but he triggers the following error

    ORA-21700: object does not exist or is marked for deletion
    ORA-06512: at the 'scott '. PKG_COUNTRY', line 4598
    ORA-06512: at line 10
    Pr_Del_Regional_DtlORA-21700: object does not exist or is marked for deletion
    Process is complete.
    Disconnection from the database tfo_user-watson.


    / * In format on 12/05/2011 14:47 (trainer more v4.8.7) * /.



    Varchar_table. ARRAY TYPE IS VARCHAR2 (5); -in the scope of package


    PROCEDURE Pr_Del_Regional_Dtl)
    pi_v_country_id IN VARCHAR2, seperateed comma for deletion
    po_results ON sys_refcursor
    )
    IS
    l_varchar_table varchar_table: = varchar_table ();
    BEGIN
    pr_split_varchar_values (pi_v_country_id, l_varchar_table); -divides: separation by a comma to the nested table.

    DELETE FROM regional_setup
    WHERE country_id IN (SELECT *)
    TABLE (l_varchar_table)); -removed
    EXCEPTION
    WHILE OTHERS
    THEN
    DBMS_OUTPUT. Put_line ("Pr_Del_Regional_Dtl" |) SQLERRM);
    LIFT;
    END Pr_Del_Regional_Dtl;

    split-
    PROCEDURE pr_split_varchar_values)
    pi_v_values IN VARCHAR2,
    op_varchar_table ON varchar_table
    )
    IS
    l_v_value VARCHAR2 (3000);
    l_value VARCHAR2 (10);
    I PLS_INTEGER: = 0;
    BEGIN
    op_varchar_table: = varchar_table ();
    l_v_value: = pi_v_values;

    IN all, LENGTH (l_v_value) > 0
    LOOP
    i: = i + 1;

    IF INSTR (l_v_value, ",") > 0
    THEN
    op_varchar_table. EXTEND;
    op_varchar_table (i): =.
    LTRIM (RTRIM (SUBSTR (l_v_value, 0, INSTR (l_v_value, ",") - 1)));
    ON THE OTHER
    op_varchar_table. EXTEND;
    op_varchar_table (i): = LTRIM (RTRIM (l_v_value));
    l_v_value: = ";
    END IF;

    l_v_value: =.
    SUBSTR (l_v_value, INSTR (l_v_value, ",") + 1,
    LENGTH (l_v_value));
    END LOOP;
    END pr_split_varchar_values;

    Thanks in advance
    TYPE varchar_table IS TABLE OF VARCHAR2(5); -- in package scope
    

    Have you declared in package or database? Remember, local collection cannot be used in the SQL statement.

  • Installation of the printer driver Officejet G85 fails with the message "print processor does not exist" with Windows 7

    The site compatibility Windows 7 says that this OS is compatible with my Officejet G85 all-in-one old.  Whenever I try to add this printer is using the automatic functions or manual installation of the driver fails and I get the error message that "print processor does not exist.  I tried to install the original with the most recent compatibility software is Windows 2000, but Windows 7 does not allow indicating that the program already exists and I have to uninstall it first.  However, I can't find it listed anywhere for uninstall it, and the original software disk does not have this feature either.  HP does not support printer and would not help provide.  This printer worked perfectly with Windows XP and we really like it is equipped.  Please help us raise this printer up and running with Windows 7 64 bit home edition.  I tried things I found that it was similar in the forum with no success so far.

    Hello

    You can run the printer troubleshooter. Convenience store solves some common printing problems.

    If your computer has problems printing, try using the printer Troubleshooter to solve the problem. He made sure that a printer is connected to your computer, and it checks for common issues such as whether the printer has enough paper and toner to complete printing your document.

    Open the printer Troubleshooter by clicking the Start button, then Control Panel. In the search box, type troubleshooting, and then click Troubleshooting. Under hardware and sound, click on use printer.

    Reference:

    Open the printer Troubleshooter
    http://Windows.Microsoft.com/en-us/Windows7/open-the-printer-Troubleshooter

    See the following articles from Microsoft for more information on installing a printer or driver printer:

    Install a printer
    http://Windows.Microsoft.com/en-us/Windows7/install-a-printer

    Find and install printer drivers
    http://Windows.Microsoft.com/en-us/Windows7/find-and-install-printer-drivers

    If the problem persists, you can contact the manufacturer of the printer for more information.

    http://WWW8.HP.com/ca/en/support-drivers.html

    Hope this information helps.

  • ODI - 1228:Task Load Data - LKM File to SQL-fails on the connection target: table or view does not exist

    While performing a mapping (present in the package) that loads the file to table data, my mapping is being failed in the step - LKM file with above mentioned SQL error.

    This task is running for 30 candy Mint and loading data about 30 to 40 million for the temporary table of C$ ODI.

    Before the completion of the task is to make failure and also C$ table is also get deleted.

    Any possible resolution for above mentioned the issue?

    Problems have been solved.

    In our case, the prefix of all the data store name has been SRC_ so the nickname of all the data store became SRC, and the table name C$ depends on the daatastore Alias.

    So for executing two mapping tables $ CAN have been getting dropped by other mapping due to the same table name $ CAN.

    Change the Alias name giving it a unique name solve the problem.

  • Installation of VPN breaks because of the previous version does not exist

    Hello everyone

    When you configure my Win7 64 bit machine, I transferred several programs and settings from my old XP machine, unfortunately including VPN client. VPN, never worked, so I uninstalled it. All installation attempts ended in a message "error 28000.

    I'm even goes through the list of manual uninstall themes:

    (1) delete the following keys:

    (a) HKEY_LOCAL_MACHINE > SOFTWARE > Cisco Systems > VPN Client deleted
    (b) HKEY_LOCAL_MACHINE > SOFTWARE > deterministic networks did not exist

    (c) HKEY_LOCAL_MACHINE > SOFTWARE > Microsoft > Windows > CurrentVersion > uninstall > {5624c000-b109-11d4-9db4-00e0290fcac5}

    There was no
    (d) all the files starting with DNE *, including system32/dneinobj.dll deleted

    (e) the oem*.inf and oem*.pnf files

    (f) delete the following file: of %SystemRoot%\system32\drivers\cvpndrv.sys

    (g) a system32/CSGina.dll file did not exist

    (2) restart the machine.

    (3) turn off any firewall if not installed.

    Nothing not done, the message "Error 28000" still prevails.

    Is there a list of the tests through which the installation routine determines whether there is a previous version installed?

    Hey Hanno,

    Please try this:

    "Regedit":

    You can search for "Deterministic networks" and delete it.

    HKEY_LOCAL_MACHINE \SOFTWARE\Deterministic networks

    Search with the keyword in the registry for the following subfolders 'Uninstall' or 'Components' and remove all related entries.

    Vpngui

    Vpnapi

    Cisco

    CVPND

    CVPNDRA

    Ipsecdialer

    Then run Ccleaner "registry cleaner", reboot the computer and try again.

    Thank you

  • Error when deploying to the Simulator application: BUILD FAILED StandardInstall does not exist.

    I get the above error while deploying the blackberry Simulator application. I have
    Download the Java SDK 1.7, Apache Ant, BlackBerry WebWorks Smartphone SDK (OS 7 or earlier) and
    PhoneGap 2.8.1.I put in JDK and Ant path in environment variables.

    The project is to build successfully in the directory of the project with the command "ant blackberry construction."

    Generation of blackberry D:\ProjectBB>ant
    BuildFile: D:\ProjectBB\build.xml
    BlackBerry:
    Update:
    generate-cod-name:
    [echo] Generated name: __NAME__.cod
    clean:
    [Remove] Delete the D:\ProjectBB\build directory
    package-app:
    [mkdir] Created dir: D:\ProjectBB\build\widget
    [copy] Copy of 22 files to D:\ProjectBB\build\widget
    [zip] Building zip: D:\ProjectBB\build\__NAME__.zip
    Update:
    [exec] [INFO] Parsing of the command line options
    [exec] [ERROR] Invalid application - archive name of archive is not valid
    BUILD SUCCESSFULLY
    Total time: 4 seconds

    While deploying Simulator using 'ant blackberry simulator load' command in the command prompt, it
    shows build failed with the error message "StandardInstall does not exist.

    Responsible for blackberry D:\ProjectBB>Ant-Simulateur
    BuildFile: D:\ProjectBB\build.xml
    BlackBerry:
    Load Simulator:
    generate-cod-name:
    [echo] Generated name: __NAME__.cod
    clean:
    [Remove] Delete the D:\ProjectBB\build directory
    package-app:
    [mkdir] Created dir: D:\ProjectBB\build\widget
    [copy] Copy of 22 files to D:\ProjectBB\build\widget
    [zip] Building zip: D:\ProjectBB\build\__NAME__.zip
    Update:
    [exec] [INFO] Parsing of the command line options
    [exec] [ERROR] Invalid application - archive name of archive is not valid
    Load Simulator:
    [echo] Simulator directory = C:\Program Files\Research in Motion\BlackBerry WebWorks SDK
    2.3.1.5\simpack\7.0.0.318
    [echo] Simulator directory = C:\Program Files\Research in Motion\BlackBerry WebWorks SDK
    2.3.1.5\simpack\7.0.0.318
    [echo] Simulator of executable = C:\Program Files\Research in Motion\BlackBerryWebWorks SDK
    2.3.1.5\simpack\7.0.0.318/9930.bat
    [echo] All simulators of closing...
    [exec] No sessions running.
    [exec] Result: 1
    [echo] MDS directory = C:\Program Files\Research in Motion\BlackBerry WebWorks SDK 2.3.1.5/mds
    BUILD FAILED
    D:\ProjectBB\build.XML:51: The following error occurred when executing
    This line:
    D:\ProjectBB\blackberry.XML:153: D:\ProjectBB\build\StandardInstall does not exist.

    Total time: 7 seconds

    Please help me solve this problem

    Thanks in advance

    For the version of the SDK BlackBerry Smartphone (i.e. BBOS), please note that you need JDK1.6 and there are also 32 bits.

    Can you please try this change (uninstall previous versions of the JDK/JRE) and only install JDK1.6 32-bit (it will automatically install the JRE too.)

    As well, I see a problem in the community newspapers:

    [exec] [ERROR] Invalid application - archive name of archive is not valid

    There seems to be a problem with the name of the ZIP file:
    __Name__.zip

    Can you please try to remove the symbols _ the name of the archive?

  • ORA-13605: the specified task or object ADDM: < task > does not exist.

    Hello
    I use ORACLE 11g R2 & RHEL 5 DB.

    My task of bottom line is I want to send an AWR & ADDM report by mail to myself and the other members of my team all the hours for a particular user. I did a procedure for the same thing. When I perform this procedure from the sys user then it is run successfully and we even receive emails with attachments well. When I try to run this procedure from the particular user, it gives me the following error: -.

    "ORA-13605: the ADDM:1987121644_4118 of task or a specified object does not exist for the current user."

    When I explored my procedure, I found that the error was in the query that is used to generate the report of the ADDM. The same query within an enforcement procedure s successfully with the sys user, but not in the other user. The query is as below: -.
     select dbms_advisor.get_task_report(task_name,'TEXT','ALL') as ADDM_report
                         from dba_advisor_tasks
                        where task_id =
                              (select max(t.task_id)
                                 from dba_advisor_tasks t, dba_advisor_log l
                                where t.task_id = l.task_id
                                  and t.advisor_name = 'ADDM'
                                  and l.status = 'COMPLETED')
    When I accessed the sight of dba_advisor_tasks separately then I saw that each task the ower name was "SYS" user. So its gives me error when I have the fire of the other user. When I run it from SCOTT I get the following error: -.
    ORA-13605: The specified task or object ADDM:1987121644_4017 does not exist for the current user.
    ORA-06512: at "SYS.PRVT_ADVISOR", line 3189
    ORA-06512: at "SYS.DBMS_ADVISOR", line 590
    ORA-06512: at line 1
    ORA-06512: at "SCOTT.SEND_MAIL_FOR_AWR_ADDM_REPORT", line 72
    ORA-06512: at line 2
    I tried to use the view data dictionary with 'USER_'... like USER_advisor_tasks, but this returns null if it doesn't produce any report ADDM.

    What should I do to run my (other than the user SYS) user SCOTT procedure and must generate the ADDM report.

    Thanks in advance.

    Look at the signature of the function:

    function get_task_report (task_name      in varchar2,
                              type           in varchar2 := 'TEXT',
                              level          in varchar2 := 'TYPICAL',
                              section        in varchar2 := 'ALL',
                              owner_name     in varchar2 := NULL,
                              execution_name in varchar2 := NULL,
                              object_id      in number   := NULL)
      return clob;
    

    See owner_name.

    So:

    select owner,task_name,
           dbms_advisor.get_task_report
           (t.task_name,'TEXT','TYPICAL','ALL',t.owner) as ADDM_report
                         from dba_advisor_tasks t
                        where task_id =
                              (select max(t.task_id)
                                 from dba_advisor_tasks t, dba_advisor_log l
                                where t.task_id = l.task_id
                                  and t.advisor_name = 'ADDM'
                                  and l.status = 'COMPLETED');
    
  • I try to connect my apple TV.  I've been up to signature in ITunes but got the message that the connection failed because the network time has not been set.  I don't know what I should do.  Thanks in advance.

    I try to connect my apple TV.  I've been up to signature in ITunes but got the message that the connection failed because the network time has not been set.  I don't know what I should do.  Thanks in advance.

    Date and me are dealt with by the network. Try restarting your router/modem...

    Verify that DNS is set to auto

    Make sure port 123 is open on the router (refer to the manual of the router to you)

  • DBUM target Recon - java.sql.SQLSyntaxErrorException error: ORA-00942: table or view does not exist

    Hello

    When I run DBUM Targer user reconciliation (recon Filtered) I get the error in the log below.

    We have created an account with privileges below target. y at - it all permisssions more necessary for execution of the reconciliation of the target.

    [2015-10 - 09T 10: 47:45.717 - 07:00] [oimext_server1] [NOTIFICATION] [] [oracle.iam.scheduler.vo] [tid: OIMQuartzScheduler_Worker-4] [username: oiminternal] [ecid: 77744a889dde03de:-265ee4b8:15049ac7206: - 8000-0000000000000004, 1:18393] [APP: IOM #11.1.2.0.0] details executeJob DBUM Oracle user target reconciliation method

    [2015-10 - 09T 10: 47:45.842 - 07:00] [oimext_server1] [WARNING] [] [ORG. IDENTITYCONNECTORS. DBUM. DBUMCONNECTOR] [tid: Thread-276] [username: oiminternal] [ecid: 77744a889dde03de:-265ee4b8:15049ac7206: - 8000 - 1:18558 0000000000000004,] [APP: IOM #11.1.2.0.0] org.identityconnectors.dbum.DBUMConnector: parseConnectionProperties: no connection properties

    [2015-10 - 09T 10: 47:45.878 - 07:00] [oimext_server1] [WARNING] [] [ORG. IDENTITYCONNECTORS. DBUM. DBUMCONNECTOR] [tid: Thread-276] [username: oiminternal] [ecid: 77744a889dde03de:-265ee4b8:15049ac7206: - 8000-0000000000000004, 1:18558] [APP: IOM #11.1.2.0.0] org.identityconnectors.dbum.DBUMConnector: dropUnusedSearchAttributes: fall tmpQuota

    [2015-10 - 09T 10: 47:45.879 - 07:00] [oimext_server1] [WARNING] [] [ORG. IDENTITYCONNECTORS. DBUM. DBUMCONNECTOR] [tid: Thread-276] [username: oiminternal] [ecid: 77744a889dde03de:-265ee4b8:15049ac7206: - 8000-0000000000000004, 1:18558] [APP: IOM #11.1.2.0.0] org.identityconnectors.dbum.DBUMConnector: dropUnusedSearchAttributes: fall tmpQuota

    [2015-10 - 09T 10: 47:45.881 - 07:00] [oimext_server1] [ERROR] [] [ORG. IDENTITYCONNECTORS. DBUM. SQLEXECUTIONHANDLER] [tid: Thread-276] [username: oiminternal] [ecid: 77744a889dde03de:-265ee4b8:15049ac7206: - 8000-0000000000000004, 1:18558] [APP: IOM #11.1.2.0.0] org.identityconnectors.dbum.SQLExecutionHandler: executeAccountSearch: error when searching for user records [[ ]]

    java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)

    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)

    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)

    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)

    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548)

    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)

    at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:947)

    at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1283)

    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1441)

    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3769)

    at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3823)

    at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1671)

    at org.identityconnectors.dbum.SQLExecutionHandler.searchAccounts(SQLExecutionHandler.java:287)

    at org.identityconnectors.dbum.SQLExecutionHandler.executeAccountSearch(SQLExecutionHandler.java:95)

    at org.identityconnectors.dbum.DBUMConnector.executeQuery(DBUMConnector.java:199)

    at org.identityconnectors.dbum.DBUMConnector.executeQuery(DBUMConnector.java:74)

    at org.identityconnectors.framework.impl.api.local.operations.SearchImpl.rawSearch(SearchImpl.java:118)

    at org.identityconnectors.framework.impl.api.local.operations.SearchImpl.search(SearchImpl.java:82)

    at sun.reflect.GeneratedMethodAccessor5776.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.identityconnectors.framework.impl.api.local.operations.ConnectorAPIOperationRunnerProxy.invoke(ConnectorAPIOperationRunnerProxy.java:93)

    to com.sun.proxy. $Proxy575.search (unknown Source)

    at sun.reflect.GeneratedMethodAccessor5776.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.identityconnectors.framework.impl.api.local.operations.ThreadClassLoaderManagerProxy.invoke(ThreadClassLoaderManagerProxy.java:107)

    to com.sun.proxy. $Proxy575.search (unknown Source)

    at sun.reflect.GeneratedMethodAccessor5776.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    to org.identityconnectors.framework.impl.api.BufferedResultsProxy$ BufferedResultsHandler.run (BufferedResultsProxy.java:162)

    ]]

    [2015-10 - 09T 10: 47:45.892 - 07:00] [oimext_server1] [NOTIFICATION] [] [oracle.iam.scheduler.impl.quartz] [tid: OIMQuartzScheduler_Worker-4] [userId: oiminternal] [ecid: 77744a889dde03de:-265ee4b8:15049ac7206: - 8000-0000000000000004, 1:18393] [APP: #11.1.2.0.0 IOM] Job listener, Job was performed QuartzJobListener.jobWasExecuted Description DEFAULT null FullName. DBUM Oracle DBUM Oracle target reconciliation user name reconciliation target user

    [2015-10 - 09T 10: 47:46.116 - 07:00] [oimext_server1] [ERROR] [] [] [tid: [ASSETS].] [ExecuteThread: '6' for queue: "(self-adjusting) weblogic.kernel.Default"] [username: xelsysadm] [ecid: 77744a889dde03de:-265ee4b8:15049ac7206 :-8000-0000000000010 c 79, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000L1Dd4upEoIs6wjyWMG1M5jJP00000S] could not communicate with one of the server access set up, make sure it is running.

    [2015-10 - 09T 10: 47:46.517 - 07:00] [oimext_server1] [ERROR] [] [] [tid: Watcher] [username: < anonymous >] [ecid: 0000L19f77uEoIs6wjyWMG1M5jJP000000, 1:18404] error receive challenge server hacked

    [2015-10 - 09T 10: 47:49.271 - 07:00] [oimext_server1] [ERROR] [] [] [tid: [ASSETS].] [ExecuteThread: '12' to the queue: "(self-adjusting) weblogic.kernel.Default"] [username: xelsysadm] [ecid: 77744a889dde03de:-265ee4b8:15049ac7206:-8000-0000000000010c7c, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000L1Dd4upEoIs6wjyWMG1M5jJP00000S] could not communicate with one of the server access set up, make sure it is running.

    [2015-10 - 09T 10: 47:49.718 - 07:00] [oimext_server1] [ERROR] [] [] [tid: [ASSETS].] [ExecuteThread: '21' for queue: "(self-adjusting) weblogic.kernel.Default"] [username: xelsysadm] [ecid: 77744a889dde03de:-265ee4b8:15049ac7206:-8000-0000000000010c7e, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000L1Dd4upEoIs6wjyWMG1M5jJP00000S] could not communicate with one of the server access set up, make sure it is running.

    Thank you

    After changing the logging level for 32 track, filled with the SQL log file.

    The application consisted of a JOIN with two or three tables table (dba_users and dba_quota_tablespaces).

    After providing privileges select on the quota table, I was able to learn from the user.

    Thank you

  • Fail to load the ODI - ODI-17517: error in the interpretation of the task. ORA-00942: table or view does not exist

    Hi all

    Try to run the loads on the test environment and faced this exception. Guidance on what could be the cause?

    A functioning test environment code development. All models have been migrated using the synonym and the project had to be imported using Mode Duplication.

    The project had two dimension and makes loads... Dimensions has been properly run, its only that all the facts are a failure...

    ODI-1217: CM_PKG_CF_TEST Session (1494702) fails with return code 7000.

    Caused by: com.sunopsis.tools.core.exception.SnpsSimpleMessageException: ODI-17517: error in the interpretation of the task.

    Task: 6

    java.lang.Exception: the application script threw an exception: java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist

    OSB Info: get the joining to the line level columns: column 0: columnNo

    at com.sunopsis.dwg.codeinterpretor.SnpCodeInterpretor.transform(SnpCodeInterpretor.java:485)

    at com.sunopsis.dwg.dbobj.SnpSessStep.createTaskLogs(SnpSessStep.java:711)

    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:461)

    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2093)

    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1889)

    to oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor$ 2.doAction(StartScenRequestProcessor.java:580)

    at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)

    at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor.doProcessStartScenTask(StartScenRequestProcessor.java:513)

    to oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor$ StartScenTask.doExecute (StartScenRequestProcessor.java:1066)

    at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)

    to oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$ 2.run(DefaultAgentTaskExecutor.java:82)

    at java.lang.Thread.run(Thread.java:682)

    Caused by: org.apache.bsf.BSFException: the application script threw an exception: java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist

    OSB Info: get the joining to the line level columns: column 0: columnNo

    at bsh.util.BeanShellBSFEngine.eval (unknown Source)

    at bsh.util.BeanShellBSFEngine.exec (unknown Source)

    at com.sunopsis.dwg.codeinterpretor.SnpCodeInterpretor.transform(SnpCodeInterpretor.java:471)

    ... 11 more

    -< code printed here >-

    at com.sunopsis.dwg.dbobj.SnpSessStep.createTaskLogs(SnpSessStep.java:738)

    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:461)

    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2093)

    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1889)

    to oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor$ 2.doAction(StartScenRequestProcessor.java:580)

    at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)

    at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor.doProcessStartScenTask(StartScenRequestProcessor.java:513)

    to oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor$ StartScenTask.doExecute (StartScenRequestProcessor.java:1066)

    at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)

    to oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$ 2.run(DefaultAgentTaskExecutor.java:82)

    at java.lang.Thread.run(Thread.java:682)

    An analysis more thrust, found that Repo work had no appropriate grants.

    After adding, it solved the problem.

  • FDPSTP failed due to the ORA-02149: specified partition does not exist

    EBS R12.1.3
    Database 11.2.0.2
    Error message
    **Starts**23-JUL-2012 16:49:21
    ORACLE error 2149 in FDPSTP
    
    Cause: FDPSTP failed due to ORA-02149: Specified partition does not exist
    ORA-06512: at "SYSTEM.AD_DDL", line 165
    ORA-06512: at "APPS.MSC_MANAGE_PLAN_PARTITIONS", line 371
    ORA-14074: partition bound must collate higher than th
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    j := 1
    table := MSC_ATP_SUMMARY_SO
    partition_name : ATP_SUMMARY_SO__1
    l_count := 1
    Partition for instance 1 already exists
    table := MSC_ATP_SUMMARY_SD
    partition_name : ATP_SUMMARY_SD__1
    l_count := 1
    Partition for instance 1 already exists
    l_share_partition := N
    plan count := 0
    After Create Partitions
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+

    901629 wrote:
    EBS R12.1.3
    Database 11.2.0.2
    Error message

    **Starts**23-JUL-2012 16:49:21
    ORACLE error 2149 in FDPSTP
    
    Cause: FDPSTP failed due to ORA-02149: Specified partition does not exist
    ORA-06512: at "SYSTEM.AD_DDL", line 165
    ORA-06512: at "APPS.MSC_MANAGE_PLAN_PARTITIONS", line 371
    ORA-14074: partition bound must collate higher than th
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    j := 1
    table := MSC_ATP_SUMMARY_SO
    partition_name : ATP_SUMMARY_SO__1
    l_count := 1
    Partition for instance 1 already exists
    table := MSC_ATP_SUMMARY_SD
    partition_name : ATP_SUMMARY_SD__1
    l_count := 1
    Partition for instance 1 already exists
    l_share_partition := N
    plan count := 0
    After Create Partitions
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    

    How do you get this error?

    Please see (INSTALLER ALERT - setting the APS scores upward and Instance of Collections of data in R12 [552415.1 ID]).

    Thank you
    Hussein

  • ORA-39083, ORA-00959: tablespace "TEST_LIVE" does not exist

    Hello

    I'm trying to import using impdp but I am experiencing at the below mentioned error...

    Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With partitioning, OLAP, Data Mining and Real Application Testing options
    Table main "TEST_230511." "' SYS_IMPORT_FULL_01 ' properly load/unloaded
    Start "TEST_230511". ' SYS_IMPORT_FULL_01 ': TEST_230511/***@GEMSDB REMAP_SCHEMA = RΘPERTOIRE TEST_220511:test_230511 = dump_dict = test_live_230511.DMP test_230511.LOG = LOGFILE DUMPFILE.
    Processing object type SCHEMA_EXPORT/USER
    ORA-31684: USER object Type: 'TEST_230511' already exists
    Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
    Processing object type SCHEMA_EXPORT/ROLE_GRANT
    Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    Processing object type SCHEMA_EXPORT/DB_LINK
    Object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE of treatment
    Object type SCHEMA_EXPORT/TABLE/TABLE processing
    ORA-39083: object of type THAT TABLE could not create with the error:
    ORA-00959: tablespace "TEST_LIVE" does not exist
    Because sql is:
    CREATE TABLE 'TEST_230511 '. "" C_EXPENSECLAIMS_EMPLOYEE "("C_EXPENSECLAIMS_EMPLOYEE_ID"NUMBER (10.0),"AD_CLIENT_ID"NUMBER (10.0), NUMBER (10,0)"AD_ORG_ID","ISACTIVE"CHAR (1),"CREATED"DATE,"CREATEDBY"NUMBER (10.0), DATE 'DAY', 'UPDATEDBY" NUMBER (10.0), 'TRANSACTION_DATE"DATE, DATE 'EXPENSE_DATE', NUMBER (10.0) 'EXPENSE_TYPE_ID', 'BUDGET' CHAR (1) DEFAULT ('N'), THE NUMBER OF 'AMOUNT')
    ORA-39083: object of type THAT TABLE could not create with the error:
    ORA-00959: tablespace "TEST_LIVE" does not exist

    ORA-00959: tablespace "TEST_LIVE" does not exist

    Oracle has clearly tell you, need tablespace whose name is TEST_LIVE on the target database was created after that you can try import again.

Maybe you are looking for

  • How the auto join a jabber chat room

    Does anyone know how auto join a jabber chat room when the account becomes available, I have not found the way, and whenever I go online I have to join the chat room. 9.1 messages Thank you very much

  • Re: Lack of data partition after installing partition magic

    Hi there I m after a little help. Yesterday, I installed a program called partition magic. The installation went without errors or problems, but then when I run the program for the 1st time I got a blue screen and my closed laptop. I restarted the la

  • I'm putting my 4th generation Apple TV and it won't move from Spanish to English. Any suggestions?

    How can I get my Apple TV, 4th generation, the Spanish into English installation screen. THX

  • OfficeJet 8000

    All the lights on the printer start flashing. Nothing prints then. I restart the printer and after a page, or she does it again.  I replaced the print head and print the test sheet in halfway and the printer starts flashing again.  I searched the hel

  • Simulators not appearing is not in the JDE

    My company has recently switched us to new computers using Windows 7, which requires me to re - install the simulators that I had used and the JDE (JDE is 5.0 and is necessary according to the needs of the customer). Initially, I've deployed the Simu