11g - deletion and update new list of parameter queries

Hi all

We intend to update the 10.2.0.4 E Business suite 11.2.0.1 (11.5.10.2.) database.
We have little withdrawal and new list of parameters in database 11g based on the notes 216205.1

We have compatible mode as 10.2.0 before and after the upgrade until the system is stable. So, until we change the compatible to 11.2.0, do we need to have the settings in the list of deletion or we can remove that although we have the compatible as 10.2.0 during the upgrade.

There are also two new settings optimizerautostats_job = false and sec_case_sensitive_logon = FALSE.

Please let us know if we can have these new changes of parameter find when we have the compatible 10.2.0 to 11 g database.

Thank you and best regards,
Rakesh

Rakesh,

Please let us know if we can have these new changes of parameter find when we have the compatible 10.2.0 to 11 g database.

You can have these settings, and you can remove it later once you are finished with the upgrade.

Note: 881505.1 - version of Oracle Applications 11i with Oracle 11 g Release 2

Adjust the settings of initialization for the new version file
http://download.Oracle.com/docs/CD/E11882_01/server.112/e10819/afterup.htm#CEGHAAFH

Thank you
Hussein

Tags: Oracle Applications

Similar Questions

  • How edit, delete and put new photos in an album on Adobe Revel?

    How edit, delete and put new photos in an album on Adobe Revel?

    HI Margaret

    Take a look at these links, I think that this covers your questions:

    Guinot

    DELETE

    FAQ? How can I delete a file at Revel?
    http://forums.Adobe.com/thread/1162793?TSTART=0

    Share
    FAQ: How do I share my pictures to Revel?
    http : / / forums.adobe. com / message/5092831 #5092831

    DOWNLOAD
    FAQ: How can I add files (upload) of Revel?
    http : / / forums.adobe. com /thread/1162795? TSTART =0

    DOWNLOAD
    FAQ: How to download files from Revel?
    http : / / forums.adobe. com /thread/1166462? TSTART =0

    EDIT

    FAQ: How can I change the pictures at Revel?
    http : / / forums.adobe. com / message/5088287 #5088287

  • How can I transfer my address book from Thunderbird to another running Thunderbird computer and combine the old and the new list into one?

    I have a computer in my summer residence and one to my winter home. They both run Thunderbird for my emails. When I move one residence for others, I want to update my address book Thunderbird. I do it by selecting - address book - tools - export, on the ' old computer ', store them on a memory stick, and paste _ address book - tools - import, the new address to load the list from memory. It works, except that the address of old and new lists are separate lists. I would like to combine them, but without the duplication of the same addresses. Is this possible? How can I do this?

    http://KB.mozillazine.org/Moving_address_books_between_profiles
    http://forums.mozillazine.org/viewtopic.php?f=28 & t = 1588535

  • Deleting and updating through a procedure

    Hello

    I'm a dynamic naïve for collections of Oracle & SQL concepts and always learning, here is a procedure that I wrote. First of all, it will delete the records if a version of records already exist and update dates with null, prior to their release records as the current version. Grateful if you can spot the mistakes, I think to make bulk binding when I updated but still struggling to come up with a approach, please help me with all the entries. Thank you.

    create or replace

    procedure fcs_stage_data_delete2 (p_extract_dt in varchar2, p_provider in varchar2, p_uninum in varchar2, p_ver_num in numbers, retval number)

    IS

    i_commit pls_integer: = 100000;

    i_rowcount pls_integer: = 0;

    v_code NUMBER;

    v_errm VARCHAR2 (64);

    TABLIST TYPE IS THE TABLE OF THE VARCHAR2 (20);

    TABNAME TABLIST: IS TABLIST('FEED_PROCESS_LOG','CUSTOMER','LOAN','HASH_TOTALS_FY1213');.

    Start

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

    / * DELETION OF THE STAGE TABLES * /.

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

    Start

    REMOVE FROM CUSTOMER_LOAN_XREF

    WHERE CUSTOMER_EXTRACT_DT = p_extract_dt

    AND CUSTOMER_PROVIDER = P_PROVIDER

    AND CUSTOMER_UNINUM = P_UNINUM

    AND CUSTOMER_VER_NUM = P_VER_NUM

    AND LOAN_EXTRACT_DT = p_extract_dt

    AND LOAN_PROVIDER = p_provider

    AND LOAN_UNINUM = p_uninum

    AND LOAN_VER_NUM = p_ver_num;

    COMMIT;

    end;

    RUN IMMEDIATELY 'ALTER TABLE CUSTOMER_LOAN_XREF DISABLE CONSTRAINT FK_CUSTOMER_LOAN_XREF_CUSTOMER;

    RUN IMMEDIATELY 'ALTER TABLE CUSTOMER_LOAN_XREF DISABLE CONSTRAINT FK_CUSTOMER_LOAN_XREF_LOAN;

    FOR I IN TABNAME. FIRST... TABNAME. LAST

    LOOP

    IMMEDIATE EXECUTION

    'REMOVE'. TABNAME (I) | »

    WHERE EXTRACT_DT =: HAS

    AND PROVIDER =: B

    AND UNINUM =: C

    "AND VER_NUM =: D"

    WITH THE HELP OF P_EXTRACT_DT, P_PROVIDER, P_UNINUM, P_VER_NUM;

    COMMIT;

    END LOOP;

    RUN IMMEDIATELY 'ALTER TABLE CUSTOMER_LOAN_XREF ENABLE CONSTRAINT FK_CUSTOMER_LOAN_XREF_CUSTOMER;

    RUN IMMEDIATELY 'ALTER TABLE CUSTOMER_LOAN_XREF ENABLE CONSTRAINT FK_CUSTOMER_LOAN_XREF_LOAN;

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

    / * UPDATE THE PAINTINGS OF SCENE * /.

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

    IF p_ver_num > 1

    then

    Start

    because me in (SELECT ROWID, T.* FROM FEED_PROCESS_LOG T T.EXTRACT_DT = P_EXTRACT_DT WHERE

    and T.PROVIDER = P_PROVIDER AND T.UNINUM = P_UNINUM AND T.VER_NUM = P_VER_NUM-1)

    loop

    UPDATE FEED_PROCESS_LOG SET ACT_END_DT = NULL, UPDATE_ID = NULL, UPDATE_DT = NULL WHERE ROWID = I.ROWID;

    end loop;

    commit;

    end;

    Start

    for i in (SELECT ROWID, T.* FROM CUSTOMER T WHERE T.EXTRACT_DT = p_extract_dt and T.PROVIDER = P_PROVIDER

    AND T.UNINUM = P_UNINUM AND T.VER_NUM = P_VER_NUM-1)

    loop

    UPDATE CUSTOMER SET ACT_END_DT = NOTHING WHERE ROWID is i.ROWID;.

    end loop;

    commit;

    end;

    end if;

    retval: = 0;

    exception, then than others

    then

    v_code: = SQLCODE;

    v_errm: = SUBSTR (SQLERRM, 1, 64);

    retval: = 1;

    end fcs_stage_data_delete2;

    I'm talking about the loops that do updates, not deletions.

    Bulk collect a bunch of SQL UPDATE of ROWID instructions just use directly.

    I compared the time taken with and "bulk collect" and I see better performance when I bulk collect and update.

    Sorry - I don't believe you. I don't see anything in BULK COLLECT (which were not yet made you in the first code you posted) may possibly be faster than an update SQL statement.

    Most collect must search for lines, download the ROWID, create a collection and then move this collection to the SQL engine to make the update

    An UPDATE to SQL finds the lines and then did the update. It does not use the PL/SQL, a collection or get the collection back.

    Summary - COLLECTION BULK actually what does the SQL UPDATE and more.

    The new code in BULK COLLECT you posted also has two major problems in it.

    First of all there is no LIMIT clause to limit the amount of memory of expensive PGA which is used.

    In the second place, because there is no LIMIT clause, there not need all of the loop.

    Just use an SQL UPDATE statement that removes lines based on the WHERE clause you are currently using to find the ROWID.

  • Thunderbird keeps questioning a former e-mail account that has been deleted and is not listed in the tools/options account

    I even deleted and reloaded firefox, Thunderbird , but it continues to try to recover a deleted account emails. Where it becomes the info to try to access the account? Tools/choice of account does not contain the account more.

    The title of the question and first sentence edited by moderator. This question is about Thunderbird, not Firefox. AW

    Something was quite wrong. Settings that use Thunderbird cannot come from his profile, but if the account has been for settings and yet the account is always logged, then the settings page has become out of step with the real state of the profile. Note that uninstalling and then reinstalling the program Thunderbird are usually ineffective because the settings are kept separately in the profile folder.

    I would go to tools | Options | Advanced > Configuration Editor and search for it references to the unwanted account and see if they can be removed by here. If this fails, I close Thunderbird and browse the js files in a text editor. If you do this, be sure to make backups, because if the files are preferably incorrectly formatted, Thunderbird will not start.

  • OSX 10.11. mail problem, deleted and bad addresses listed at:

    I had this problem before even of 10.8, 10.9

    After having written an email, put the first letter or even a second letter to an address in the field to: a few email addresses will be listed.

    Among them are several good and often bad or addresses that I had deleted in my address book.

    Is there a file, perhaps in ~ library to change?

    Thank you very much in advance for your answer

    weleo 20.03.2016 (03.20.2016)

    Remove addresses from the list of previous winners under the window menu.

  • Update May 13/14 breaks SFC and "Updates" installed list

    The last round of updates of 13/14 may created serious problems for my Win7 SP1 box.

    After the first round of updates (KB2965237, etc.) successfully installed, I came home 2 hours later to my monitors still on.  Power settings turn off after 20 minutes at idle.  Tried to reboot, BSOD.  I've never seen a BSOD, I only know that he was there since the event logs, after that I brought the system up.  He just hung when stopping down.

    Now, I have not SFC to try to fix anything, because "Windows Resource Proetection could not perform the requested operation."

    I can't uninstall the updates, because the list of installed updates said: "there are no updates installed on this computer.

    And try to use the system restore produces a crash.

    Brilliant, guys.  If it's more "prepare me for windows 10" *, I'm going to be * very * annoyed.  But I'll rant about how Windows Express upgrade works later.

    Anyone has any bright ideas (in addition to recreate the image, which is tempting looking anyway)?

    Another thread deals precisely with this question

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-system/SFC-cannot-fix-corrupted-files-in-Windows-7/f798f377-126C-47ff-Bb16-ef5e0dddb5be

  • Select, insert, delete and update

    explain the process of selection work, recessed, update, delete statement in oracle?

    Patricia wrote:

    explain the process of selection work, recessed, update, delete statement in oracle?

    http://download.Oracle.com/docs/CD/E11882_01/server.112/e16508/sqllangu.htm#CHDFCAGA

    He explained.

  • Distribute the data in a column and update new column with data of split

    Hi all

    I'm working on Oracle 10 g. One of my table of the column stores the data, sampled below.

    1722999340KK000200000
    1444210829AB1001EX003
    1444300000CD0148EX003
    1722999340KL 000200000

    I want to split the data in the report between the numbers (4; 6; 6; 5), as shown below and store it in different columns (A1 |) A2 | A3 | A4).
    1444 | 210829 | AB1001 | EX003

    Grateful if someone can give me some advice on how to achieve the same in the SQL database.

    See you soon,.

    novice
    insert into split_tab  (A1,A2,A3,A4)
    select substr(mycolumn,1,4), substr(mycolumn,5,6), substr(mycolumn,11,6), substr(mycolumn,17)
    from myoriginaltab;
    

    Max

  • Cannot copy the addresses in new list since the update of 31.5

    I'm trying to set up a new list successfully) and fill it with addresses by copying and dragging the addresses in my personal address book. I have done this dozens of times in the past. Now, from 31.5, it seems that the addresses have been copied, but when I opened the new list, it is empty. I have not implemented a new list for the last few months so don't know when this happened. Went through all the settings but can find no one who would control it.

    Help please!

    6rtury

    A new facility would create a new profile, but already, it has a profile in the right position and will, as it does on the updates, use the existing profile. Watch profile.ini %appdata%\roaming\thunderbird

    (If not, everything inside the new profile to delete and copy everything from the inside of the old profile here.)

  • How can I delete (permanently) updates that Microsoft recommends? It maintains lists for Microsoft Office, which I don't have on my computer.

    How can I delete (permanently) updates that Microsoft recommends?  It maintains lists for Microsoft Office, which I don't have on my computer.

    Hello

    / Do you have an older version, spectators or one test on the system? Those who may be why the
    try to install updates - a glitch is also possible.

    Control Panel - Windows Updates - right click on updates and SKIN

    also follow these steps:

    How to reset the Windows Update components? -a Mr Fixit
    http://support.Microsoft.com/kb/971058

    Description of the system for Windows Vista, Windows Server 2008, update tool and
    for Windows 7
    http://support.Microsoft.com/kb/947821

    I hope this helps.
    Rob - bicycle - Mark Twain said it is good.

  • Select Microsoft Mathematics 4.0 and how delete/install old & new

    I'm looking for 'FREE' Microsoft Mathaematics 4.0 update, but do not know how to determine the file to download.  MS offers three choices: MSetup_x64.exe;  MSetup_x86.exe;  and Readme_Mathematics4.htm.  I have a XP operating system that already has the (c) 1993-2006 Microsoft as student Math installed.  I want to remove this program and upgrade to version 4.0.  In 69 years and not major in technology, I need help and instructions on what to download and how or if I need to delete the old program of math or will be the new facility to do for me and replace the old and the new.  Help, please!

    If you have Windows XP (and you did not bother to point on it was 64-bit) then you need to install 32-bit (or x 86).  The Readme is just... Well well... a file, you can read.

    Download it, run it, go.

  • Is it OK to delete the update number 2 after the new update has been entered IE number 6 of the same program?

    to delete the update number 2 after the new update has been entered IE number 6 of the same program

    original title: he is allowed to delete the previous updates of files

    Hi Carl,

    I suggest you go through this article to Java which can be useful.

    Why should I remove old versions of Java in my system?

    Removal of previous versions of the .net Framework is based on the applications that are running on the computer.

    For applications, if you have an application based on any .NET Framework on the computer, you cannot delete it since you have need to support the application runs correctly.

    .NET framework 3.5 SP1 includes .NET Framework 2.0 SP2 and 3.0 SP2. This means that .NET Framework 2.0 and 3.0 can not be deleted because they are the sine qua non of .NET Framework 3.5 SP1. If you have any application based on .NET Framework 3.5 SP1, please do not remove .NET 2.0 SP2, 3.0 SP2 and 3.5 SP1.

    I would also not to uninstall the security updates that are important for the security of your computer.

  • PC Tools Performance Toolkit, removed from the list of programs recently used in the Start Menu and a new one is born not more

    I used the destructor of the demo feature PC Tools Performance Toolkit allows you to delete a directory that I couldn't take off any other way. At the same time used a few other functionlities software to clean my computer, the software promised to improve the performance of my computer (Vista). Then I discovered that the software deleted the list of programs recently used in the start which was not desirable. Now there is a list of recently used programs, and a new one is created either. How can I get the list to create again?

    Hello

    It is not recommended to use any cleaners/tune Up all registry program on modern operating systems.

    And they can do more harm to your any good operating system that they claim to be able to do.

    See if that helps you.

    Do a system restore, if necessary using the safe, before the problem started.

    http://bertk.MVPs.org/html/restoresysv.html

    How to access Safe Mode

    http://www.bleepingcomputer.com/tutorials/how-to-start-Windows-in-safe-mode/#Vista

    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

    Or follow this path:

    "Use the System File Checker tool to fix the files of system missing or corrupted on Windows Vista or Windows 7"

    http://support.Microsoft.com/kb/929833?WA=wsignin1.0

    If SFC is erors that it cannot repair, you may need to do a repair upgrade installation.

    But, to a Microsoft Vista DVD, not the valorization of the disc manufacturer.

    "How to perform a repair for Vista Installation"

    http://www.Vistax64.com/tutorials/88236-repair-install-Vista.html

    See you soon.

  • Of hard drive and installed new drive but Code failure not accepted. Original install was XP with Vista update.

    Of hard drive and installed new drive but Code failure not accepted.  Original install was XP with Vista update.  What do I need to install the xp before installing vista?

    How to activate Windows 7 or Vista manually (activate by phone)
    1) click Start and in the search for box type: slui.exe 4
    (2) press the ENTER"" key.
    (3) select your "country" in the list.
    (4) choose the option "activate phone".
    (5) stay on the phone (do not select/press all options) and wait for a person to help you with the activation.

    Also:
    How to activate Windows Vista by phone
    http://support.Microsoft.com/kb/940315
    http://www.mydigitallife.info/2008/10/13/how-to-activate-Windows-Vista-by-phone-activation/

    JS
    http://www.PAGESTART.com

    Never be afraid to ask. This forum has some of the best people in the world to help.

Maybe you are looking for