Db - ORA-20000 R12 upgrade error: ORA-00955

Hi all

As part of our upgrade of the EBS R12 database I'm re creation of grants and synonyms for applications. One of the working process is run following error message:

ERROR on line 1:

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

Object:create_grants_and_synonyms(1,GL,APPLSYS,apps): create_base_gs (GL, APPS):

In the synonyms

Loop: create_synonym (GL, GL_DAILY_RATES_INTERFACE_BKP, APPS, GL_DAILY_RATES_INTERFAC

(E_BKP): do_apps_ddl (APPS, CREATE SYNONYM "GL_DAILY_RATES_INTERFACE_BKP" FOR)

GL. "" ""GL_DAILY_RATES_INTERFACE_BKP"):

ORA-06512: at line 5

There are three items of the same name - GL_DAILY_RATES_INTERFACE_BKP - database:

A synonym in a schema created by us and by two tables: one GL and a pattern of APPS. So what should I do to solve this problem?

Kind regards

Vinod

GL_DAILY_RATES_INTERFACE_BKP should not be seeded table. Perform a backup user someother and drop it.

concerning

Pravin

Tags: Oracle Applications

Similar Questions

  • 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.

  • Configuration failed somehow... may be an error ORA-00955

    I try to install vcloud Director.  I get to the configuration and to tell him what IP addresses to use, where the db server is, the service name, user name, password, keystore, etc. etc.

    He starts to set up and then wrote:

    Configuration failed somehow; the Director of Cloud service will not start.

    Before, I was getting an error with an ORA-00955 event id which apparently means that the table already exists.  I looked in the newspapers and it seems that he was trying to create a table called CATALOG.  I'm a total Oracle newb, so I don't know if I'm on that or not.

    In any case, I have tried to look in the logs of other errors, but have not really found anything.  I'm no longer error ORA-00955, but I not did something to correct this error, either.  I tried to create a new database, but also to get the same results (first the Oracle error and then just a generic).

    Any suggestions?

    Thank you!

    It seems that you have already some paintings created from your previous attempts to run the script configures. The best way would be to remove the user from the oracle and recreate the user vcloud and restart the configuration script. The best way to create a database for vcloud described the following KB:

    http://KB.VMware.com/kb/1025768

    If this is not enough, then attach the logs to the file ' / opt/vmware/logs "here,.

    HTH,

    Sangeeta

  • That irritate the error ORA-00955 :(

    Hey all I am currently studying free PL/SQL and I am so a noob I've been making that mistake since last night. I use the with table of Oracle Database 10 g Express edition, the schema HR to be precise.

    -- -------------------------------------------------------------------------------------------
    CREATE FUNCTION check_ForJobChange (in NUMBER, currentEmpStartDate AS currentEmpID)
    RETURN BOOLEAN IS

    Declare

    CURSOR emp_date_id_list1 IS (Select j1.start_date, e1.employee_id JOB_HISTORY j1 EMPLOYEES JOIN e1 ON j1.employee_id = e1.employee_id);

    checkVal NUMBER: = 0;

    Begin

    For em1 IN LOOP emp_date_id_list1

    IF (currentEmpID = em1.employee_id AND currentEmpStartDate! = em1.start_date) THEN
    checkVal: = 1;
    END IF;

    END LOOP;

    IF checkVal = 1 THEN
    RETURN TRUE;
    ELSIF checkVal = 0 THEN
    RETURN FALSE;
    END IF;

    End checkForJobChange;
    -- -------------------------------------------------------------------------------------------

    -- -------------------------------------------------------------------------------------------
    CREATE FUNCTION checkIfSalayExceedMin (currentJobID in NUMBER, currentProposedSalary number)
    RETURN BOOLEAN IS

    Declare

    minSalary NUMBER: = 0;

    Begin

    Select j.min_salary FROM minSalary of JOB j where j.job_id = currentJobID;

    IF currentProposedSalary > minSalary THEN
    RETURN TRUE;
    ELSIF currentProposedSalary < minSalary THEN
    RETURN FALSE;
    END IF;

    End checkIfSalayExceedMin;
    -- -------------------------------------------------------------------------------------------

    -- ===================MAIN====================
    Declare

    CURSOR emp_date_id_list IS (Select j.start_date, e.employee_id, e.job_id, e.salary JOB_HISTORY e j EMPLOYEES JOIN ON j.employee_id = e.employee_id);

    Begin

    For em IN emp_date_id_list LOOP

    IF (em.start_date < TO_DATE ('1990-01-01', 'YYYY-MM-DD')) THEN

    IF checkForJobChange (em.employee_id, em.start_date) THEN
    IF checkIfSalayExceedMin (em.job_id, (e.salary + (e.salary*.20))) THEN
    DBMS_OUTPUT. Put_line ('you can increase his salary');
    END IF;
    END IF;

    END IF;

    END LOOP;

    End;

    -- ================END==MAIN==================

    He is basically trying to do is check if the employee worked prior to January 1, 1990, and he has not been promoted or changed his work, if he has satisfied both these conditions he is eligible for a salary increase. That's basically it, the error I get is: ORA-00955: name is already used by an existing object

    Dang, been spend all night, I was wondering what the name of the object did I like a double T_T

    Help, please.

    Thank you!

    Hello, I'm sure that I have the unique function names, so why always make the mistake? It is clearly in my code they have parameters and names of different functions

    No, this isn't what I'm saying. You have created two functions. Then, you run your script once again. The second time around he not able to create one of them because they already exist in the database. You can not use 'create function x' when there is already a function 'x', even if it is perfectly obvious to you, it's the same one and you want to replace it. You must explicitly include Or REPLACE, otherwise fall explicitly every time.

    Well, a friend told me that uh, pirates may be able to easily replace the use of the service if I REPLACE them on the signature of the function. Not quite sure this info if haha.

    I'm afraid that your friend is wrong. REPLACE the keyword is not stored within the function (see USER_SOURCE).

  • (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.

  • ORA-02443 &amp; ORA-00955

    Hello guys;

    I have a table with a unique constraint that must be made of three keys, but made of a single key. I decided the drop and re-create it with three keys, but I received a message that said "ORA-02443: cannot delete constraint - constraint nonexistence." And when I try to recreate this constraint with the same name, I "ORA-00955: name used already had an existing object.»

    What should I do because I am frustrated with this controversial error message?

    Help, please.

    Question:

    select  object_type
      from  user_objects
      where object_name = 'name-of-constraint-you-want-to-add-in-upper-case'
    /
    

    and post results.

    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

  • Windows upgrade errors

    Currently, using Win7 Pro and Windows Update has stop working. I see my story yet it says that I have never updated. Whenever I try, I get an error of Windows upgrade error. 0x80072F8F-0 x 20000 or similar. I would like to Win 10, but this problem is to avoid the upgrade as well. Running MSRT earlier and no problems found. Security Essentials have run scans and it shows up-to-date with definitions and is also no problem. Have you tried the WIN10 upgrade icon, the Wizard download and download Win10 directly. The downloads go so far and restart, then come back with impossible to deal with errors. Any help is appreciated. Thank you.

    Hello

    With the publication of the description, I understand that you are affected by the problem with the Windows upgrade and get the error code 0x80072F8F-0 x 20000. We are sorry for the inconvenience caused. Since then, it is impossible to install updates and back to back with the same error, maybe that there might be incompatibility or component of Windows Update is corrupted on the computer leading to this error number or date, and synchronization.

    Method 1: Resolution of Windows Update problems.

    You can run the windows update to convenience store and check if it works.

    http://go.Microsoft.com/?linkid=9830262

    Method 2: Check and adjust the settings of date and time to do this, follow these steps, given below and check if that helps.

    1. click on start and then click Run.
    2. in the Open box, type Timedate.cpl, and then click OK.
    3. on the Date and time tab, make sure that the date and time of the computer are correct. If the settings are incorrect, adjust to the correct date and time.
    4. click OK to close the Date and time properties dialog box.

    Try to reinstall updates and check if it works.

    You can reset windows update components if the method 1 and 2 do not work.

    https://support.Microsoft.com/en-us/KB/971058

    Hope this information is useful. Please come back to write to us if you need more help, we will be happy to help you.
    Concerning

  • LaserJet 3020 upgrade error

    My Laserjet 3020 does not at all. A message is displayed on Didital sign indicating "UPGRADE ERROR, CALL HP HELP DESK".

    Please advice how ractify it.

    Alharamain wrote:

    I don't have. Since I do not know any number of support HP in Karachi centre.

    Try this:
    http://www.romakhi.com/

    Computers of Roma was created in 1988 and 20 years computer Roma has itself in magnates Macho in World.Roma a computer is authorized dealer of Hewlett Packard (H.P.).

    http://www.romakhi.com/contactus.html

  • Windows Vista Service Pack 4 upgrade errors - Error Codes 643 and D59

    original title: errors for Service Pack 4 Windows Vista update - error code 643 and D59 - I do not KNOW WHAT to DO!

    Windows Vista Service Pack 4 upgrade errors - Error Codes 643 and D59

    I DON'T KNOW WHAT TO DO!  I tried what he suggested, but cannot cross the error codes!  I am upset and frustrated because I can't work with the internet without slowing down.  I then close, only to have start all over again EVERY time!

    My internet keeps acting like dial upward because of this and I have cable internet!

    Help, please!

    This day SP4?

    Only in appropriate cases:

    When installing updates using Windows update or Microsoft Update you may receive error 80070643 0 x or 0 x 643
    http://support.Microsoft.com/kb/976982

    Just in case where it is .NET Framework 4 -

    You can try the case just only repair the .NET Framework versions affected, especially if only .NET Framework 4 is involved.

    To repair the .NET Framework 4 Client Profile or .NET Framework 4 extended etc. -.

    • Click on start/Orb and click on Control Panel.
    • Go to the program and features.
    • Locate the Microsoft.Net Framework 4 Client Profile or .NET Framework 4 extended, right-click.
    • You should have the choice to repair or uninstall/change, click it.
    • This will then give you the opportunity to fix it
    • Select the repair option.
  • Please help KB 976370-Upgrade error code-80073701

    Please help KB 976370-Upgrade error code-80073701

    Windows Update Forum:

    It comes with Vista, upgrade install and activate Forum.

    You will get the best help for any problem of Update/Service Pack in the Windows Update Forum; the link below:

    http://social.answers.Microsoft.com/forums/en-us/vistawu/threads

    When you repost here, kindly include the Error Codes, and exactly what is happening when you try to update.

    In this way, you will receive the best help.

    See you soon.

    Mick Murphy - Microsoft partner

  • R12 upgrade test

    Hi all

    We have improved of 11.5.10.2 to R12 (12.1.3) on linux (rhel 4.6 to 6.2) platform

    The one you suggest what testing (technical) we have to cross after the R12 upgrade has been done.

    Thank you

    In addition to what you can find in the manual to upgrade Oracle E-Business Suite Upgrade Guide the healthy list of mind, check question would include something like the following:

    Create/update users/responsibilities/functions/menus

    -Introduce the different types of concurrent programs

    S ' ensure cm and workflow works as expected

    -Check the OPMN components and log files

    -Check your custom tops (if any)

    .. etc.

    You should come up with your own list when you upgrade your instance to test and verify the same for the upgrade of production.

    You can Google "R12 Upgrade Lesson Learned" and/or "R12 Post technical Upgrade" and you should get many hits.

    Thank you

    Hussein

  • VCenter 4.0 to 4.1 upgrade error

    Hi all

    Try to improve vCenter 4.0 to 4.1.

    During the database upgrade, the installation fails, and the following is logged in the VCDatabaseUpgrade.log:

    DROP VIEW VPXV_STAT_HISTORICAL_INTERVALS
    [20/04/2011 09:39:05] Error: Unable to run the command: DROP VIEW VPXV_STAT_HISTORICAL_INTERVALS
    [20/04/2011 09:39:05] The exception: ERROR [42S 02] [Microsoft] [SQL Native Client] [SQL Server] failed to delete the "VPXV_STAT_HISTORICAL_INTERVALS" view, because it does not exist or you are not allowed.
    [20/04/2011 09:39:05] Upgrade error: ERROR [42 S 02] [Microsoft] [SQL Native Client] [SQL Server] failed to delete the "VPXV_STAT_HISTORICAL_INTERVALS" view, because it does not exist or you are not allowed.
    [20/04/2011 09:39:05] Info: Release upgrade wizard

    The database is running on a MS SQL 2008 R2

    Can't find any KB about it if anyone has a tip for what is wrong?

    / Strunk

    My VCDB_mssql.sql file under the VC installation folder (C:\Program Files\VMware\Infrastructure\VirtualCenter Server):

    Your first check to be sure that this is the same procedure.

    /*==============================================================*/
    / * Display: VPXV_STAT_HISTORICAL_INTERVALS * /.
    /*==============================================================*/
    CREATE a VIEW VPXV_STAT_HISTORICAL_INTERVALS as
    Select the sid. INTERVAL_SEQ_NUM ID
    sid. INTERVAL_DEF_NAME as NAME
    sid. INTERVAL_VAL as SAMPLING_PERIOD
    sid. INTERVAL_LENGTH lengthwise
    sid. STATS_LEVEL
    case sid. ROLLUP_ENABLED_FLG
    When 1 then 'Y '.
    When 0 then 'n.'
    as ACTIVE end
    SID VPX_STAT_INTERVAL_DEF
    ;

  • DB Upgrade during the R12 upgrade approach

    We have a 11.5.10.2 instance with 10.2.0.5 database and we have the intention to upgrade the database to 11.2.0.3 during our upgrade R12.1.1, as in the notes 761570.1 , we have the Patch C and D of path at our disposal. We decided to use the path C upgrade IE the database to 11.2.0.3 during the upgrade R12 itself and not two windows of downtime. According to this Note 761570.1, in the path c If the database upgrade is part of the R12 upgrade, perform all operations in the Interoperabity Notes except the following:

    Check the versions of the software
    Run adgrants.sql
    Implement and run the automatic configuration
    Recreate the grants and synonyms
    Restart the application server process
    Apply the Oracle human resources (HRMS) patch 7721754

    so that means that we do not have to apply all the patches mentioned under the versions of software to check like patch interoperability, ATG Patch 7456837 etc. on 11i?

    Thank you
    Murali

    You must run directly after the upgrade of database with the exception of the measures that require the application to be upward, then you can implement it after starting the application.

    Thank you
    Hussein

Maybe you are looking for

  • Cannot connect WRT54G2 on printer Canon WiFi

    We have bought a Canon MG 3100 printer but am unable to connect.  Have restarted the router but still no joy.  Any suggestions?

  • No sound after importing video from the camera to Windows Movie Maker

    I imported a video from my camera in movie maker so I can change the direction of the video to share. When I do I play but without audio. How to fix this problem?

  • Replacement 760ti GTX with GTX 970 in an R2 of Alienware X 51?

    Just did a little research, and from what I can tell the reference GTX 970 and 760ti share the same exact dimensions in length and depth; and use less power at idle and supported; and it gives off less heat. Does anyone know if there will be complica

  • How to download to my Cisco 887 Device IOS...

    Hello I would like updrage IOS for my ADSL/router Cisco 887. I found a version of firmware named c800-universalk9-mz. Spa. 154 - 3.M3.bin but my rom is named c880xxxxxxxxxxxxxx When I put the c800 firmware, it says ' % caveat: an executable not valid

  • Logos and illustrations inventory

    HelloI'm new in this world and from a company. I am confused about the rules regarding use of the logo and that do not. After reading the FAQ, an article mentions the stock illustration can, "Adobe active Stock may be used in any creative project, in