ORA-02264: name already used by an existing constraint

Hey, I am facing a problem when I create a table
create table customers_products(transactionid number(4) constraint pk_customers_products primary key,
custNo  number(4) constraint  fk_customers_products references customers(custNo),                               
productNo number(4)constraint fk_customers_products references products(productNo) ,date_of_purchase date,qty_purchased number(5));

ERROR at line 2:
ORA-02264: name already used by an existing constraint
How can we know which table is to use?

Published by: Sandy on April 6, 2011 07:27

could be two reasons

1. you use the same name of constraint on the two columns. use different names.

CONSTRAINT fk_customers_products REFERENCES customers (custNo)
CONSTRAINT fk_customers_products REFERENCES products (productNo)

2 pk could have been used.

select * from user_constraints where constraint_name in ('PK_CUSTOMERS_PRODUCTS','FK_CUSTOMERS_PRODUCTS');

G.

Tags: Database

Similar Questions

  • get the following errors "" sql error: ORA-00955: name already used by an existing object ""

    Untitled.png

    So, you already have a table called ADDRESS.  Once created, you can not keep recreate unless you drop everything first.

  • Help to create the view - error: ORA-00955: name is already used by an existing object

    Hello

    I am trying to create the following view but sqlplus displays a message and point of view has not been created. I use 11g Express.

    SQL > create view (client, f_pedido, total) orders as

    2     (

    3 select usr, date, sum (rising) as important

    4 of

    5             (

    6 select lineas_any.usuario as usr, lineas_any.fecha_pedido as date, lineas_any.cantidad * as rising referencia.precio

    7 of lineas_any

    inner join 8

    referencia 9

    10 on lineas_any.referencia = referencia.codbarras

    11             )

    Group 12 by usr, date

    13)

    14 order by date asc, usr;

    of lineas_any

    *

    ERROR on line 7:

    ORA-00955: name is already used by an existing object

    There are also descriptions of the two tables involved:

    SQL > describe lineas_any

    Name                                          Null?    Type

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

    USER NOT NULL VARCHAR2 (60)

    FECHA_PEDIDO NOT NULL DATE

    REFERENCIA NOT NULL VARCHAR2 (15)

    AMOUNT NUMBER (2)

    SQL > describe referencia

    Name                                          Null?    Type

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

    CODBARRAS NOT NULL VARCHAR2 (15)

    PRODUCT NOT NULL VARCHAR2 (50)

    FORMATO NOT NULL VARCHAR2 (20)

    SILTING NOT NULL VARCHAR2 (15)

    PRECIO NOT NULL NUMBER (7.2)

    STOCK NUMBER (5) NOT NULL

    MIN_STOCK NOT NULL NUMBER (5)

    MAX_STOCK NOT NULL NUMBER (5)

    Please, could someone help me in this matter?

    Thanks in advance.

    Kind regards

    It means that it is already an object named peridos. Question:

    Select object_type from user_objects where object_name = 'PERIDOS;

    to find out what type of object it is. Any chance you try to change the existing definition of peridos view? If so, use

    CREATE or REPLACE view orders (customer, f_pedido, total) as...

    SY.

  • ORA-00955: name is already used by an existing object to 'MDSYS. SDO_RDF_IN

    Hi all

    While using the easy loading of the java batch to load a literal value large triple I lost network connection, killing the shell with this process.
    When you restart the load to help

    $ORACLE_HOME/jdk/bin/java - Xmx1g - DjustTriple = true - Dexchange = false - Dappend = true - Ddb.user = uniprot_rdf - Ddb.password = < password > - Ddb.host = 127.0.0.1 - Ddb.port = 1526 - Ddb.sid = < SID > classpath - $ORACLE_HOME/md/jlib/sdordf.jar:$ORACLE_HOME/jdbc/lib/ojdbc5.jar oracle.spatial.rdf.client.BatchLoader logs/uniprot.bad uniprot_rdf_data uniprot rdf

    I get the following error:
    Temporary table already exists!
    java.sql.SQLException: ORA-00955: name is already used by an existing object
    ORA-06512: at the 'MDSYS. SDO_RDF_INTERNAL', line 5557
    ORA-06512: at the 'MDSYS. SDO_RDF_INTERNAL', line 5593
    ORA-06512: at the 'MDSYS. RDF_APIS', line 933
    ORA-06512: at line 1

    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:74)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:131)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:204)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1034)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:191)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:950)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1222)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3387)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3488)
    at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:3840)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1086)
    at oracle.spatial.rdf.client.NTripleConverter.loadNTriple(NTripleConverter.java:391)
    at oracle.spatial.rdf.client.BatchLoader.main(BatchLoader.java:302)

    This is similar to [825344 | ] Temporary table already exists! but a little different in the location.
    What item should be dropped here? In a later version, you may wish to update the message generated here be
    more informative.

    Kind regards
    Jerven

    Please try the same solution as in the other thread:

    Call the following to a privileged user:

    drop mdsys. RDF_LINK$ _TEMPBM$;

  • ORA-00955: name is already used by an existing object

    I dropped a table using DROP TABLE admin CASCADE CONSTRAINTS PURGE

    I then run a CREATE TABLE and then a CREATE INDEX command using fields 1.

    But the CREATE INDEX fails with an ORA-00955: name is already used by an existing object error.

    How can this be? If I let off the table, is not also delete the index?

    Any help would be greatly appreciated.

    Kind regards
    Marty

    Yes... That is the question.

    Kind regards
    JO

  • (ORA-00955) conflict of naming for index and constraint when you use a unique index (.. desc,.. CSA)

    Hello

    indexes and constraints are in different namespaces, so it should be possible to give them the same name.

    In the following case that apparently does not work:

    create unique index orders_year_show_uq
      on orders (year desc, show_orders asc);
     
     alter table orders
      add constraint orders_year_show_uq unique (year, show_order);
    

    When I run these statement, I get a "SQL Error: ORA-00955: name is already used by an existing object". ""

    If I clean and I execute the same instructions as above with the only difference on the 2 line, using "asc year" instead of "year desc":

    
      on orders (year asc, show_orders asc);
    

    then it success.

    I can't explain it, you have an idea?

    Thanks in advance.

    Kind regards

    Giovanni

    First of all, you have show_orders in index and show_order in the constraint. I'll assume that it's a typo. Second, when you create constraint without index enhance the specification Oracle seeks indexes existing on the same set of columns in ascending order. If this index does not exist (and it's your case, since one of your columns to index is in descending order), Oracle tries to create one with the same name as the constraint. That's why you get ORA-00955: name is already used by an existing object. In general, you can specify explicitly the index name to force the Oracle by using the existing index. But it will not help you. If you issue

    ALTER table orders add unique constraint (year, show_orders) orders_year_show_uq using index orders_year_show_uq;

    You will get the ORA-14196: specified index cannot be used to apply the constraint.

    In any case, Oracle does not support using index DESC for PK/UK.

    SY.

  • Error: A module with this name already exists

    Hello

    I work for a company that provides mobile content for handsets and have you encountered a problem when the combinations of Jad/Jar for BlackBerry handsets. In most cases, the files we delivery are the Jad/Cod files, we have no problem with.

    The first problem we had is the Jad files, which we received from our suppliers have been referencing cod files which we have not been sent. We were sent only the Jar file. We have removed all RIM - COD... lines of the file Jad and the problem was resolved. On delivery, the MIDLET-JAR-URL is dynamically modified to point to a page on our site that provides the content, as explained below.

    However, when we tried to install two different applications (the two combinations of Jad/Jar) for a handset, we received the error message: "[App2] contains a module called [WebpageName]. A module with this name already exists in the application [App1]. If you continue, [App1] will be replaced by [App2]. "

    We deliver our streaming content to valid requests to a single web page. Unique QueryString parameters determine which files are provided to ensure that our content is secure. The [WebpageName] in the error is the name of the Web page that all files are delivered, IE: http://www.someurl.com/ [WebpageName] .aspx? foo = bar & this = who

    This causes us some problems when clients try to download multiple of these applications/games.

    I looked at the following article, which unfortunately did not help:

    http://supportforums.BlackBerry.com/T5/testing-and-deployment/A-module-with-that-name-already-exists...

    I would be grateful for any suggestion.

    Thank you
    Aaron

    I had to create a work around for the problem. I thought I would post it in case it helps anyone:

    In IIS, I created a Custom 404 error that redirects to the page [WebpageName]. I then used the file name of the Jar file to create the URL in Jad so the module name is taken with respect to the individual application.

    Example: The MIDLET-JAR-URL in Jad line is changed:

    From: [WebpageName] http://www.someurl.com/ .aspx? foo = bar & what =

    To: http://www.someurl.com/ [FileName] .app? foo = bar & what =

    By default, I have replace the .app extension so that it is not a type of file in IIS.

    Hope this helps someone else.

  • PIN of Smartphones blackBerry already registered, user name and password do not exist

    Hi, recently bought "BOLD" without a contract on Starhub Singapore for a gift

    first unboxing recorded with BES then decide to use a different "BOLD"

    put us an another blackberry simcard Telkomsel in Indonesia, tried to register the account with telkomsel.blackberry.com, but responded with "an account already exists for this PIN"

    a little weird because I never registered with blackberry.com so I ttried to recover the password by using the link "forgotten password".

    received a message:

    "You asked to have your password sent to your device.

    user name and password don't exist. Please use your device to access Blackberry Internet Service

    I call starhub, the technician never faced this problem and suggest o call Canada RIM

    How to do this? someone with experience like that? BlackBerry is useless rightnow

    appreciate a lot for the help

    Kind regards

    Bram

    Nevermind, I solved the problem

    happy, we have 2 "BOLD" for the exchange of sim card, put it back again

    now I can record, weird, never experience something like this

    What happens if I have a "BOLD"? Laughing out loud

  • The data store name already exists

    Hello

    I have 3 hosts in my group and I am trying to add a 4th. The host, I'm trying to add part of the cluster, but it was removed there because it has been used a few weeks somewhere else. I have since reinstalled ESX and try to add back to the cluster.

    When I try and add a NFS data store to the host named "NAS-storage" added it is automatically renamed to "NAS-storage (1)", if I try the rename without (1) I get an error message...  "The NAS-storage name already exists." 3 other guests are currently connected to the data without any problem store.

    How can I fix it?

    I tried to reboot the host, restart the service of railway infrastructure and to rename the data store on the other hosts to something else.

    Welcome to the forums.

    Make sure that you add the store of data with exactly the same name/IP address and the name of path as those mounted on other hosts

    You can get the correct mount point by running

    esxcfg-nas -l
    

    Maish

    VMTN moderator | vExpert

    Author of VMware vSphere Design

    @maishsk | My Blog

  • Creating an element indicates the element with the name already exists

    Hello dear,

    I'm on R12

    We are to modernize a few standard Link elements that weren't before. So I end of all the links in the element and then end the element as 31-dec-2012.
    I am trying to use the same element of 1 January 2013 and set it as a standard binding element, but it is throwing an error indicating that the element with the name already exists
    who is reasonably.

    My requirement is that I wanted to use the same element name and set it as a standard link. I can do this.

    Your entries are highly appreciated.

    Thank you

    You can go the previous day, press Delete again, and select Remove next or all future changes

  • Update settings prevented the second office "an account with that name already exists...". »

    My provider has modernized and forces me to change the server settings. I did this successfully on a desktop computer and now I want to do this on the second and the third office where I want my accounts available e-mail.

    When I try, I get a window of the wizard account saying "an account with that name already exists. Please enter a different account name. "And I'm prevented from doing the settings made on the second Desktop server.

    How do I get around this?

    Thank you,
    DJBrewster

    Open the configuration editor and search for entries with this name

    There should be two entries with mail.server.serverXX.name (where XX is a number.) change on them and try and change the setting again.

  • Setup wireless adapter - error - name already exists a service name or the display name of the service.

    Vista operating system

    Relocation of a Netgear network card fails with the error message that the name exists already a service name or a service display name.

    I've uninstalled and reinstalled the latest driver successfully a number of times, but whenever the material is inserted into the USB port (I tried different ports), it will fail to install with the same message.

    Peripheral displays device manager not configured correctly (Code 1) name already exists, etc.

    What problem did you who pushed you to uninstall the driver? What are the steps that you took to uninstall the driver? Have you tried to remove the entire application?

    MS response: http://support.microsoft.com/kb/823771

  • ORA-01017: name of user and password invalid when using the TNS Alias

    Friends,

    I have this strange problem in 11 G R2. When I use tnsalias and connect using sqlplus username/password@TNS it shows ORA-01017: name of user and password invalid. But the same works with ORACLE_SID. See below.
    -bash-3.00$ uname -a
    SunOS ibs-ash-sr147 5.10 Generic_144489-06 i86pc i386 i86pc
    -bash-3.00$ env | grep ORACLE
    ORACLE_SID=DB1
    ORACLE_BASE=/project/oracle/orabase
    ORACLE_HOME=/project/oracle/orabase/product/11.2.0/dbhome_1
    -bash-3.00$ tnsping DB
    
    TNS Ping Utility for Solaris: Version 11.2.0.1.0 - Production on 17-JUN-2011 12:23:12
    
    Copyright (c) 1997, 2009, Oracle.  All rights reserved.
    
    Used parameter files:
    /project/oracle/orabase/product/11.2.0/dbhome_1/network/admin/sqlnet.ora
    
    
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = crs-scan)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = DB)))
    OK (0 msec)
    -bash-3.00$ sqlplus IRES_USER@DB
    
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 17 12:30:22 2011
    
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    
    Enter password:
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    
    SQL> show parameter sec_case_sensitive_logon
    
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    sec_case_sensitive_logon             boolean     TRUE
    
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    -bash-3.00$ sqlplus IRES_USER/U9$bvs#ir@DB
    
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 17 12:34:30 2011
    
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    
    ERROR:
    ORA-01017: invalid username/password; logon denied
    
    
    Enter user-name: ^C
    My understanding is that both connections use a TNS alias, but then does not work. Any help is appreciated.

    Thanks in advance,
    SSN

    Published by: SSNair on June 17, 2011 05:43

    After sqlplus apostrophes and try

    http://download.Oracle.com/docs/CD/B28359_01/server.111/b28320/initparams211.htm

  • Error starting service: a context with this name already exists: Portal

    I'm running into errors when starting Windows for ALUI 6.5 services. The error is:

    Error analysis of the application in the file data: D:\bea\alui_65\ptws\6.5\bin\...... \.. \common\... \settings\portal\portalconfig-SSO.xml: a context with this name already exists: Portal

    Can you shed some light on this or help me solve it?

    Thank you.

    I think that what he says GIS that there is a duplicate of a component called entry: portal in the file xml, and you must delete it.

    Sorry, I saw and probably encountered this error before but this means there is something wrong in the .xml file.

    I don't think that to 6.5, there is a file portalconfig - sso.xml more... I think that it is portalconfig.xml only, but I could be wrong. 10.3 has only portalconfig.xml

  • ERROR: ORA-01017: name of user and password invalid. connection refused

    Hi all

    I need your help.

    I have installed Oracle Audit Vault Server Release 10.2.3.2 in agent collection and Linux system in Windows system. Adding and start collecting DBAUD went fine however adding AGAIN collector back return errors when executing command avorcldb add_collector as follows

    [oracle@avsrv ~] $

    [oracle@avsrv ~] $ avorcldb add_collector - SrcName orcl nom_agent - avagent01 - colltype REDO - av Lugaopc:1521:orcl

    collector REDO_Collector for orcl source already exists

    the initialization of the REDO Collector

    ERROR: could not get by using jdbc connection AV source user:oracle:oci:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Lugaopc)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)))

    ERROR: ORA-01017: name of user and password invalid. connection refused

    [oracle@avsrv ~] $

    Here are the contents of the avorcldb.log file

    09/09/13 16:58:44 [INFO] command add_collector treatment

    09/09/13 16:58:44 [INFO] treatment arg - FromName = orcl

    09/09/13 16:58:44 [INFO] treatment arg - nom_agent = avagent01

    09/09/13 16:58:44 [INFO] treatment arg - colltype = REDO

    09/09/13 16:58:44 [INFO] treatment arg - av = Lugaopc:1521:orcl

    09/09/13 16:58:44 [INFO] connect information: Lugaopc:1521:orcl

    09/09/13 16:58:45 [INFO] connecting administration AV got using jdbc:oracle:oci:@AVDB

    09/09/13 16:58:45 [INFO] execution SQL like [ADM@AV] select s.host |': ' | A1.num_value |': ' | avsys.av A2.char_value $attrvalue a1, a2 avsys.av$ attrvalue, avsys.av$ s source, avsys.av$ attrdef ad1, ad2 avsys.av$ attrdef where source_name =: 1 and a1.inst_id = s.source_id and a2.inst_id = s.source_id and a1.attr_id = ad1.attr_id and ad1.attr_name = 'PORT' and a2.attr_id = ad2.attr_id and ad2.attr_name = 'DB_SERVICE. '

    09/09/13 16:58:45 [INFO] using bind value orcl

    09/09/13 16:58:45 [INFO] Return value = Lugaopc:1521:orcl

    09/09/13 16:58:45 [INFO] connect information: Lugaopc:1521:orcl

    09/09/13 16:58:45 [INFO] execution SQL like [ADM@AV] select to_char (source_id) in the avsys.av$ source where source_name =: 1

    09/09/13 16:58:45 [INFO] using bind value orcl

    09/09/13 16:58:45 [INFO] return value = 1

    09/09/13 16:58:46 [INFO] got the source user connection using jdbc:oracle:oci:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Lugaopc)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)))

    09/09/13 16:58:46 [INFO] executing SQL in [ADM@AV] select decode (c.status, 1, 'active', 0, 'fallen', null) of avsys.av$ collector c, avsys.av$ s source where source_name =: 1 and collector_name =: 2 and c.source_id = s.source_id

    09/09/13 16:58:46 [INFO] using bind value orcl

    09/09/13 16:58:46 [INFO] bind Using REDO_Collector value

    09/09/13 16:58:46 [INFO] Return value = active

    09/09/13 16:58:46 [MESG] collector REDO_Collector for orcl source already exists

    09/09/13 16:58:46 [INFO] executing SQL in [ADM@AV] select decode (c.status, 1, 'active', 0, 'fallen', null) of avsys.av$ collector c, avsys.av$ s source where source_name =: 1 and collector_name =: 2 and c.source_id = s.source_id

    09/09/13 16:58:46 [INFO] using bind value orcl

    09/09/13 16:58:46 [INFO] bind Using REDO_Collector value

    09/09/13 16:58:46 [INFO] Return value = active

    09/09/13 16:58:46 [MESG] initialization REDO Collector

    09/09/13 16:58:46 [INFO] execution SQL like [ADM@AV] select the username of avsys.av$ source where source_name =: 1

    09/09/13 16:58:46 [INFO] using bind value orcl

    09/09/13 16:58:46 [INFO] Return value = AVSRCUSR1

    09/09/13 16:58:46 [INFO] as [ADM@AV] SQL execution {? = call avsys.dbms_audit_vault.reset_source_user (?)}

    09/09/13 16:58:46 [INFO] adding user password mask

    09/09/13 16:58:46 [INFO] execution SQL like [USR@SRC] select table_name from user_tables where upper (table_name) = upper(:1)

    09/09/13 16:58:46 [INFO] bind Using STREAMS_HEARTBEAT value

    09/09/13 16:58:46 [INFO] Return value = STREAMS_HEARTBEAT

    09/09/13 16:58:46 [INFO] execution as [USR@SRC] SQL drop table streams_heartbeat

    09/09/13 16:58:46 [INFO] execution as [USR@SRC] SQL create table streams_heartbeat (src_dbname varchar2 (4000), job_number number, heartbeat_time timestamp)

    09/09/13 16:58:46 [INFO] execution SQL like [USR@SRC] declare dbs_name varchar2 (4000); start selecting rename in dbs_name from global_name; insert into streams_heartbeat values (dbs_name, 0, SYSTIMESTAMP); end;

    09/09/13 16:58:46 [INFO] SQL execution as [USR@SRC] create or replace procedure update_heartbeat IS start update streams_heartbeat set heartbeat_time = (select systimestamp from double); commit; end;

    09/09/13 16:58:46 [INFO] execution SQL like [USR@SRC] select table_name from user_tables where upper (table_name) = upper(:1)

    09/09/13 16:58:46 [INFO] bind Using CAPTURE_RULES value

    09/09/13 16:58:46 [INFO] Return value = CAPTURE_RULES

    09/09/13 16:58:46 [INFO] execution as [USR@SRC] SQL drop table capture_rules

    09/09/13 16:58:46 [INFO] execution as [USR@SRC] SQL create table capture_rules (nom_regle varchar2 (50), rule_scope varchar2 (6), rule_type VARCHAR2 (3), obj_name varchar2 (100))

    09/09/13 16:58:46 [INFO] execution SQL like [ADM@AV] select Rename global_name

    09/09/13 16:58:46 [INFO] Return value is AVDB. AVSRV

    09/09/13 16:58:46 [INFO] execution SQL like [USR@SRC] select db_link in user_db_links where db_link =: 1

    09/09/13 16:58:46 [INFO] Using AVDB bind value. AVSRV

    09/09/13 16:58:46 [INFO] Return value is AVDB. AVSRV

    09/09/13 16:58:46 [INFO] the Execute SQL as database link [USR@SRC] drop "AVDB. AVSRV ".

    09/09/13 16:58:46 [INFO] execution SQL like [USR@SRC] select the version of v$ instance

    09/09/13 16:58:46 [INFO] Return value = 11.2.0.1.0

    09/09/13 16:58:46 [INFO] creating DB link using AVDB. AVSRV, AVSRCUSR1, {avsrcusr_pwd}, Lugaopc, 1521, orcl

    09/09/13 16:58:46 [INFO] login as srcuser_ora01 to @(DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=Lugaopc) (PORT = 1521)) (CONNECT_DATA = (SERVICE_NAME = orcl)))

    09/09/13 16:58:46 [INFO] output of SQLPlus

    09/09/13 16:58:46 [INFO]

    09/09/13 16:58:46 [INFO] Package created.

    09/09/13 16:58:46 [INFO]

    09/09/13 16:58:46 [INFO] no error.

    09/09/13 16:58:47 [INFO]

    09/09/13 16:58:47 [INFO] package body created.

    09/09/13 16:58:47 [INFO]

    09/09/13 16:58:47 [INFO] no error.

    09/09/13 16:58:47 [INFO]

    09/09/13 16:58:47 [INFO] Package created.

    09/09/13 16:58:47 [INFO]

    09/09/13 16:58:47 [INFO] no error.

    09/09/13 16:58:47 [INFO]

    09/09/13 16:58:47 [INFO] package body created.

    09/09/13 16:58:47 [INFO]

    09/09/13 16:58:47 [INFO] no error.

    09/09/13 16:58:47 [INFO] execution SQL like [USR@SRC] select distinct name of user_errors, whose name =: 1

    09/09/13 16:58:47 [INFO] bind Using DBMS_SRC_STREAMS_COLLECTOR value

    09/09/13 16:58:47 [INFO] Return value = null

    09/09/13 16:58:47 [ERROR] could not get by using jdbc connection AV source user:oracle:oci:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Lugaopc)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)))

    09/09/13 16:58:47 [ERROR] ORA-01017: name of user and password invalid. connection refused

    java.sql.SQLException: ORA-01017: name of user and password invalid. connection refused

    at oracle.jdbc.driver.T2CConnection.checkError(T2CConnection.java:765)

    at oracle.jdbc.driver.T2CConnection.logon(T2CConnection.java:414)

    to oracle.jdbc.driver.PhysicalConnection. < init > (PhysicalConnection.java:546)

    to oracle.jdbc.driver.T2CConnection. < init > (T2CConnection.java:162)

    at oracle.jdbc.driver.T2CDriverExtension.getConnection(T2CDriverExtension.java:53)

    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:521)

    at java.sql.DriverManager.getConnection(DriverManager.java:525)

    at java.sql.DriverManager.getConnection(DriverManager.java:140)

    to oracle.av.avca.jdbc.JdbcConnection. < init > (JdbcConnection.java:87)

    at oracle.av.orcldb.DAO.initConnection(DAO.java:79)

    to oracle.av.orcldb.DAO. < init > (DAO.java:64)

    at oracle.av.orcldb.commands.AddCollector.setupCollector(AddCollector.java:746)

    at oracle.av.orcldb.commands.AddCollector.execute(AddCollector.java:230)

    at oracle.av.orcldb.Command.process(Command.java:89)

    at oracle.av.orcldb.Main.process(Main.java:118)

    at oracle.av.orcldb.Main.main(Main.java:132)

    I searched the forum at my best level without clear solution

    Concerning

    Sadik

    avorcldb add_collector - REDO SrcName orcl nom_agent - avagent01 - colltype - av Lugaopc:1521:orcl

    Specify the connection string to the Vault check server not in the source database



Maybe you are looking for