How to recreate appsora.env

Hello,
Some have My appsora.env has been corrupted. How could I recreate appsora.env file.
Could some help to me to recreate that file?
Thanks

The easiest way is to run autoconfig - see ML Note 218089.1
Srini

Similar Messages

  • How to recreate INST_TOP ?

    Hi ,
    Our env config details are below
    EBS : R12.1.1
    OS: Sun Sparc
    DB : 10g R2
    Its a 2 node Apps Tier using Shared Appl Top and a 2 node RAC DB . PCP is configured.
    Problem:
    In one of the apps Tier node ( Node1) $INST_TOP directory, files and its sub-directories got deleted because of some issue but we still have all the entries of this node in the database intact. Is there a way to recreate $INST_TOP ? Does this need something like adding a new node or do we have some other option to recreate it ?
    Please let me know if you have come across such an issue .
    Note:* One option is to restore the filesystem from the backup and we are progressing that but would like to know how to recreate $INST_TOP.
    Thanks ,
    Sasi

    Hi,
    Apart from restoring the file from a backup, you can either run preclone and postclone on this node and this will recreate $INST_TOP for you -- Cloning Oracle Applications Release 12 with Rapid Clone [ID 406982.1]
    Or, you could retrieve the context file and run AutoConfig -- Using AutoConfig to Manage System Configurations in Oracle E-Business Suite Release 12 [ID 387859.1]
    Thanks,
    Hussein

  • How to Recreate DashboardBuilder IMT Analytics for Use in BI workspaces 4.x

    Hi,
    With the conversion of the SAP BusinessObjects Dashboard Builder product to SAP BusinessObjects BI workspaces, support for the universal-based visualization analytics was removed. The list of available analytics was eliminated from the module library, thereby disallowing the creation of analytics directly in BI workspaces.
    As a result, analytics created previously in Dashboard Builder can be opened in BI workspaces, but they are not displayed, instead the user will see an information message.
    The solution to this change is to recreate the required analytics in other SAP BusinessObjects tools, such as SAP BusinessObjects Dashboard Design or SAP BusinessObjects Web Intelligence. You can then substitute the new analytics for the objects created previously in Dashboard Builder.
    The following article describe [How to Recreate Dashboard Builder IMT Analytics for Use in BI workspaces 4.x|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/00c4e111-ef52-2e10-75a6-8d7978bd2581]
    looking forward for comments
    Best regards,
    Nisim

    Thanks, I am able to set the java path in windows environment and able to execute the jar command. It created a analytics2.ear file but when i try to deploy from the weblogic console it gives the following error..
    [J2EE:160120]Error: The module, 'analytics.war', is declared either in the application.xml or in the weblogic-application.xml descriptor but cannot be found in the ear file.
    Trying to research on the above. Any inputs are appreciated. I have the following files in my directory
    1. analytics2.war
    2.analytics2-ws.war
    3. META-INF
    They are in Analytics_war directory of windows. I am not able to use
    jar -cf analytics.war -C app .
    as it gives me an error that 'app\. folder does not exits. Replaced with Analytics_war assuming that it is looking to write the file to app folder still it did not work.
    Thanks

  • How to recreate capture for oracle 10gR2 in window

    Hi Experts,
    After I got the archived issues, I restarted capture process in vmsdbhq by strmadmin account and then I saw the messages as: WAITING FOR REDO: LAST SCN MINED 6134217037123.
    SQL> DECLARE
    2 -- Declare variable to hold instantiation SCN
    3 iscn NUMBER;
    4 BEGIN
    5 iscn:=DBMS_FLASHBACK.GET_SYSTEM_CHANGE_NUMBER();
    6 DBMS_OUTPUT.PUT_LINE ('Instantiation SCN is: ' || iscn);
    7 END;
    8 /
    Instantiation SCN is: 6134217223400
    SQL> begin
    2 DBMS_cAPTURE_ADM.ALTER_CAPTURE(
    3 capture_name => 'STREAM_CAPTURE',
    4 start_scn => 6134217223400,
    5 first_scn => 6134217223400);
    6 end;
    7 /
    begin
    ERROR at line 1:
    ORA-26666: cannot alter STREAMS process STREAM_CAPTURE
    ORA-06512: at "SYS.DBMS_CAPTURE_ADM_INTERNAL", line 166
    ORA-06512: at "SYS.DBMS_CAPTURE_ADM", line 212
    ORA-06512: at line 2
    PL/SQL procedure successfully completed.
    I got advice to recreate this capture.
    How to recreate a capture? May I have a procedure in detail? which difference between recreate capture and create capture?
    Or i need to stop propagation during using alter exist capture?
    If drop capture, do I need to all capture steps?
    I am new person in here
    Thanks for your help!
    JIm

    +" which difference between recreate capture and create capture?"+
    No major difference.
    Create capture - You are creating capture process for the first time.
    Recreate capture - You are dropping capture process and creating it again..
    To recreate capture process, first you have to stop associated propagation and apply process.
    than stop and drop the exising capture process. You can follow the same procedure as you followed for creating the capture process initially..
    See following example, followed by me for the same:
    1) stop capture process
    BEGIN
    DBMS_CAPTURE_ADM.STOP_CAPTURE(
    capture_name => 'APPS_CAPTURE');
    END;
    2) Stop propagation process.
    Execute following command as stream administrator from primary database.
    BEGIN
    DBMS_PROPAGATION_ADM.STOP_PROPAGATION(
    propagation_name => 'APPS_PROP');
    END;
    3) Stop apply process.
    Execute following command as stream administrator from replica database.
    BEGIN
    DBMS_APPLY_ADM.STOP_APPLY(
    apply_name => 'APPS_APPLY');
    END;
    4) drop capture process
    BEGIN
    DBMS_CAPTURE_ADM.DROP_CAPTURE(
    capture_name => 'APPS_CAPTURE',
    drop_unused_rule_sets => true);
    END;
    5) check table status. (as sys user)
    select count(*) from dba_objects where object_name like 'APPS_CAP_TABLE';
    6) ----check rules (our rule is:
    SELECT rule_owner, rule_name FROM dba_rules
    7) ----create capture process
    begin
    DBMS_CAPTURE_ADM.CREATE_CAPTURE(
    queue_name => 'APPS_CAP_QUEUE',
    capture_name => 'APPS_CAPTURE',
    rule_set_name => NULL,
    start_scn => NULL,
    source_database => 'AQPROD',
    use_database_link => FALSE,
    first_scn => NULL,
    logfile_assignment => 'implicit',
    negative_rule_set_name => NULL,
    capture_user => NULL,
    checkpoint_retention_time => 6);
    end;
    8) --------START CAPTURE PROCESS
    BEGIN
    DBMS_CAPTURE_ADM.START_CAPTURE(
    capture_name => 'APPS_CAPTURE');
    END;
    9) --------START PROPAGATION PROCESS
    BEGIN
    DBMS_PROPAGATION_ADM.START_PROPAGATION(
    capture_name => 'APPS_PROP');
    END;
    10) Start apply process.
    Execute following command as stream administrator from replica database.
    BEGIN
    DBMS_APPLY_ADM.START_APPLY(
    apply_name => 'APPS_APPLY');
    END;
    HTH.
    Regards,
    Dipali..

  • How to recreate datafile in oracle 10g.

    pls tell me how to recreate datafile in oracle 10g...
    what are situation to recreate datafile
    Edited by: 898085 on Nov 18, 2011 9:16 PM

    898085 wrote:
    pls tell me how to recreate datafile in oracle 10g...
    what are situation to recreate datafile
    Edited by: 898085 on Nov 18, 2011 9:16 PMDid u mean create or recreate?
    if datafie is deleted then you may add it into existing tablespace.
    Try this : -
    1.)sqlplus sys/xx as sysdba
    2.)alter tablespace <tablespace_name> add datafile <datafile_name> size <give size>;
    HTH:-)

  • How to recreate the control files

    Can someone tell me how to recreate the control file?
    Thanks in advance
    Himanshu

    Hi, You can use the following statement.
    CREATE CONTROLFILE
    SET DATABASE prod
    LOGFILE GROUP 1 ('/u01/oracle/prod/redo01_01.log',
    '/u01/oracle/prod/redo01_02.log'),
    GROUP 2 ('/u01/oracle/prod/redo02_01.log',
    '/u01/oracle/prod/redo02_02.log'),
    GROUP 3 ('/u01/oracle/prod/redo03_01.log',
    '/u01/oracle/prod/redo03_02.log')
    NORESETLOGS
    DATAFILE '/u01/oracle/prod/system01.dbf' SIZE 3M,
    '/u01/oracle/prod/rbs01.dbs' SIZE 5M,
    '/u01/oracle/prod/users01.dbs' SIZE 5M,
    '/u01/oracle/prod/temp01.dbs' SIZE 5M
    MAXLOGFILES 50
    MAXLOGMEMBERS 3
    MAXLOGHISTORY 400
    MAXDATAFILES 200
    MAXINSTANCES 6
    ARCHIVELOG;
    Thanks

  • How to recreate sample basic

    Hi
    We deleted sample basic after we installed Essbase (11.1.1.3). Now some users want to have sample basic available to practice. Do anyone know how to recreate sample basic in Essbase?
    Thanks

    opening the zip file it looks like all of the files are there. So from EAS create the Sample application (BSO non unicode) and then create the database Basic. Stop the application then copy all of the files in the zip into the basic directory on the server (pathing may vary based on what version you are using) but there should be an app\sample\basic directory. Then start the app and you should be good to go

  • How to recreate the portal inbuilt preferences

    Hi All,
    I have a problem when i want to edit the group. I m getting following error....
    Not Foun Path : 'oracle.portal.style' Name:Default(51002)
    whether the preference path has been deleted from the portal???? if yes then how to recreate the preference path????
    Any help is highly appreciated.
    -regards

    Hi, You can use the following statement.
    CREATE CONTROLFILE
    SET DATABASE prod
    LOGFILE GROUP 1 ('/u01/oracle/prod/redo01_01.log',
    '/u01/oracle/prod/redo01_02.log'),
    GROUP 2 ('/u01/oracle/prod/redo02_01.log',
    '/u01/oracle/prod/redo02_02.log'),
    GROUP 3 ('/u01/oracle/prod/redo03_01.log',
    '/u01/oracle/prod/redo03_02.log')
    NORESETLOGS
    DATAFILE '/u01/oracle/prod/system01.dbf' SIZE 3M,
    '/u01/oracle/prod/rbs01.dbs' SIZE 5M,
    '/u01/oracle/prod/users01.dbs' SIZE 5M,
    '/u01/oracle/prod/temp01.dbs' SIZE 5M
    MAXLOGFILES 50
    MAXLOGMEMBERS 3
    MAXLOGHISTORY 400
    MAXDATAFILES 200
    MAXINSTANCES 6
    ARCHIVELOG;
    Thanks

  • How to recreate MDSYS schema.

    We installed Oracle Xe 10.2 on Windows Xp (850 client). Mdsys schema was dropped after Xe install. How to recreate MDSYS schemas without reinstall XE?

    I ran this script successfully with some error. But there was some invalid objects. After create mdsys I tested two sql. First sql wasn't ran. Second sql was ran successfully. I thing this method incorrect. I think, I will re-install XE edition.
    Thank you your support...
    SELECT c.IL_ADI, SDO_GEOM.SDO_CENTROID(c.geoloc, m.diminfo)
    FROM il_v113 c, user_sdo_geom_metadata m
    WHERE m.table_name = 'IL_V113';
    SELECT M.* FROM IL_V113 M WHERE SDO_RELATE(M.GEOLOC, sdo_geometry(2001,8307,sdo_point_type(28.8110549178336,41.1581182896854,null),null,null), 'mask=ANYINTERACT') = 'TRUE'

  • How to recreate dbconsole (Oracle10g ) after change SYS password?

    Hi all,
    would like to know how to recreate dbconsole after change SYS password? is there any links i can refer?
    Thanks
    Rgds,
    Nonie

    You don't need to recreate the console after changing the SYS password, it is not required. Once you have changed the sys password, the only two tasks you'll may have to do are:
    1. Connect to the DB Control Console with the new password (mandatory, obviously).
    2. Change the preferred credentials, in case you have stored the sys password as preferred credentials for your database.
    Console repository and EM configuration have to be rebuilt only when there are connectivity conditions that have changed, such as host name change, or IP address change, which happens when you get your IP address by means of a DHCP server.
    Are you currently facing some issue, besides the log in with new credentials, when attempting to start services?
    One more thing I could guess you are working on a 10gR?? (1 or 2) on an unknown platform (unix, windows???) please specify.
    ~ Madrid

  • How to recreate the relation?

    Help me. How to recreate?
    kanish

    Help me. How to recreate?Seriously, this is all the information you are going to give us! Perhaps you should review Grant Ronald's thread Before posting on this forum please read.
    There are a number of ways to create a relationship between data blocks. You can use the Data Block Wizard or you can open the block node in the Object Navigator - select the "Relationship" sub-node and then click on (+) to open the Relationship Wizard. If you have a data block situation where a standard relationship object doesn't work, then you have to recreate - through code - the functionality of a relationship.
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • How to Recreate DBA,AQ_Administrator Roles if Dropped

    How to Recreate DBA,AQ_Administrator,exp_full_database and other admin scripts which was dropped.

    hi bahadir,
    this is the OracleAS Portal Content Management forum. Please post your question in the Database forum
    General Database Discussions
    thanks,
    christian

  • How to recreate the database only?

    Hi All,
    We are having some dictionary blocks corrupted in our application database. The solution is to recreate the database and import the whole database into this new database. Details of product we are having
    OS : RHEL- ES 3
    Application : 11.5.9
    Database : 11.2.0.3
    Now our main consideration is:
    1) How to recreate the database without reinstalling the applications.
    2) Is there any special consideration to follow?
    3) What will be the impact of recreation of database on Applications?
    Pls help me in this matter.
    Thanks and Regards
    Amit Raghuvanshi

    You can use the above command to just install the Oracle Home in a new path.
    But, i am not sure if export / import works or not. May be other experts can comment on this.
    If you have a physical backup, it would be better to clone the db rather than Export / import.

  • Wf_notification_out table dropped, how to recreat urgent help  !!!!!!!!!!!!

    Hi all,
    I was following tech note *"Workflow Mailers Not Sending Notifications [ID 560472.1]"*.
    As per this tech note i dropped wf_notification_out table, i was not able to take backup of this table beacuse of space issues.
    As the table size was 10 GB. Now i dropped the table. How to recreate this table?
    I have another test Instance, from this Instance i tried to perform export and import nut export is not working for this table.
    I have cold backup, but it will take long time to restore, flashback is not enabled.
    This is development Instance (critical).
    Any inputs and suggestion on this is greatly appreciated.
    Thanks in advance.

    Hi Hussein,
    As always thanks for your prompt response.
    When im trying to use the script ist giving error:
    SQL> @wfntfqup APPS **** APPLSYS
    declare
    ERROR at line 1:
    ORA-20000: Oracle Error = 100 - ORA-01403: no data found
    ORA-06512: at line 87
    As per the tech note *560472.1*
    1. Backup the Oracle Alert messages that are unprocessed on the WF_NOTIFICATION_OUT.
    create table APPLSYS.AQ$WF_NOTIFICATION_OUT_BAK
    as
    select *
    from APPLSYS.AQ$WF_NOTIFICATION_OUT
    where CORR_ID like 'APPS:ALR%' and msg_state in ('READY','WAIT');
    But unfortunately i missed this step beacues of space issues i thought *@wfntfqup.sql* will create new wf_notification_out table, but this script is just to create queues it seems.
    Now the object wf_notification_out does not exists.
    So please suggest me accordingly.

  • How to recreate scott schema?

    I created customized database ,version of 11g r2 .And when I try to practice the sql performance analyzer experiment,the scott schema is just an username,no data under the schema.
    How to recreate the scott schema with the original data?

    http://www.orafaq.com/wiki/Scott

Maybe you are looking for

  • Error Ora-3134, connection to Oracle 9.2.0.6

    Hi, I want to create connection from Windows 2008 server 64 bit to Oracle database version 9.2.0.6. I have installed "Oracle 11g Release 2 ODAC 11.2.0.1.2 with Oracle Developer Tools for Visual Studio" where in installation instruction I have found f

  • All Open Applications Quitting Unexpectedly and Randomly

    It started last night after I finally allowed App Store to install a bunch of OS X updates that it had wanted to install for quite some time. I'm not 100% sure but I believe one of those updates was for OS X 10.8.4 from 10.8.3 but I may be mistaken a

  • PLEASE HELP ME! Ipod touch not recognised!

    I have a white 20gb ipod and have been usin i-tunes for about 2 years. I bought a new itouch as an Xmas present and wanted to put my music on it so it was ready to go on Xmas morn. When I plug it into laptop, it recognises a device, then says my ipod

  • In the Table Overflow can we change show link to + sign?

    In the Table Overflow can we change show link to + sign?

  • Problem trying to import a CD

    I have a CD that, when I insert it into the CD drive, iTunes doesn't respond at all. It's the Bright Eyes - I'm Wide Awake It's Morning CD. I'm running iTunes 7.4 on a Windows machine. If I view the contents of the CD, I can see all 12 tracks, with a