how to change compatible parameter in oracle

3
Most Visited Recently SP2-0734: unknown command beginning rest of line ignored Exercises with Oracle Create Table Add Columns DataPump Parameters INCLUDE and EXCLUDE - How to Load and Unload Specific Objects Step by Step Oracle 11gR2 RAC Installation on Linux ORA-12557: TNS:protocol adapter not loadable ORA-01779: cannot modify a column which maps to a non key-preserved table ORA-00054: resource busy and acquire with NOWAIT specified The listener supports no services Difference between 1 Friday, June 4, 2010 How to change compatible parameter in Oracle Overview of Compatible parameter Oracle compatible parameter is a string data type parameter and value of this parameter is oracle database version. It can take value as 11.1.0.7, 11.1.0.6, 10.2.0.4, 10.2.0.3, 10.1.0.5, 10.1.0.4, 9.2.0.8, 9.0.1.4, 8.1.7.4 etc. This parameter controls the database behavior for example whether a feature will work for a database. For example if database version is 10.2.0.4 but compatible parameter is set to 9.2 then certain feature like RMAN compression will not work. After the database upgrade, if the compatible parameter is set to database version then new feature stores any data on disk (including data dictionary changes) that cannot be processed with your previous release. However after upgrade if compatible parameter is not changed then new feature of the upgraded version will not be available. Default, minimum and maximum value of compatible parameter Here goes the compatible parameter default, minimum and maximum values based on oracle database version. Oracle Database Release Default Value Minimum Oracle Database 9i Release 2 (9.2) 8.1.0 8.1.0.0.0 Oracle Database 10g Release 1 (10.1) 10.0.0 9.2.0.0.0 Oracle Database 10g Release 2 (10.2) 10.2.0 9.2.0.0.0 Oracle Database 11g Release 1 (11.1) 11.0.0 10.0.0.0.0 In order to check your compatible parameter issue, SQL> SELECT name, value, description FROM v$parameter WHERE name = 'compatible'; or if you use sql*plus issue, SQL> show parameter compatible; Steps to change compatible parameter 1) Perform full backup of your database (optional). Before changing compatible parameter, you should take a full backup of your database. Because raising the COMPATIBLE initialization parameter may cause your database to become incompatible with earlier releases of the Oracle Database, and a backup ensures that you can return to the earlier release Blog Archive 2012 (86) 2011 (331) 2010 (235) 26 Dec - 2 Jan (3) 19 Dec - 26 Dec (14) 12 Dec - 19 Dec (6) 5 Dec - 12 Dec (12) 28 Nov - 5 Dec (8) 21 Nov - 28 Nov (3) 14 Nov - 21 Nov (4) 7 Nov - 14 Nov (5) 31 Oct - 7 Nov (2) 24 Oct - 31 Oct (1) 17 Oct - 24 Oct (19) 10 Oct - 17 Oct (10) 3 Oct - 10 Oct (2) 26 Sep - 3 Oct (12) 19 Sep - 26 Sep (6) 12 Sep - 19 Sep (1) 5 Sep - 12 Sep (1) 29 Aug - 5 Sep (9) 22 Aug - 29 Aug (2) 8 Aug - 15 Aug (1) 1 Aug - 8 Aug (4) 25 Jul - 1 Aug (3) 18 Jul - 25 Jul (7) 11 Jul - 18 Jul (14) 4 Jul - 11 Jul (1) 20 Jun - 27 Jun (6) 6 Jun - 13 Jun (2) 30 May - 6 Jun (3) How to change compatible parameter in Oracle java.util.zip.ZipException: reading zip file centr... Abasa Arju born in this earth on 1st June, 2010 23 May - 30 May (4) 16 May - 23 May (2) 2 May - 9 May (12) 18 Apr - 25 Apr (1) 4 Apr - 11 Apr (2) 28 Mar - 4 Apr (7) 21 Mar - 28 Mar (4) 14 Mar - 21 Mar (1) 7 Mar - 14 Mar (1) 28 Feb - 7 Mar (3) 21 Feb - 28 Feb (3) 14 Feb - 21 Feb (3) 24 Jan - 31 Jan (4) 17 Jan - 24 Jan (10) 10 Jan - 17 Jan (8) 3 Jan - 10 Jan (9) 2009 (332) 2008 (646) Oracle in World I work as Technical Consultant in Oracle database, Php programming (Wordpress+JOOMLA), shell script, css+html, SEO etc. I am on at arjuiut at gmail.com, mohammadabdulmominarju in skype. You can reach me at +8801710282272/ +8801833320825 Like 161 Send

Upload: abhjijit-chandra

Post on 24-Nov-2015

55 views

Category:

Documents


13 download

DESCRIPTION

nnn

TRANSCRIPT

  • Most Visited RecentlySP2-0734: unknown commandbeginning rest of line ignored

    Exercises with Oracle CreateTable Add Columns

    DataPump ParametersINCLUDE and EXCLUDE - Howto Load and Unload SpecificObjects

    Step by Step Oracle 11gR2 RACInstallation on Linux

    ORA-12557: TNS:protocoladapter not loadable

    ORA-01779: cannot modify acolumn which maps to a nonkey-preserved table

    ORA-00054: resource busy andacquire with NOWAIT specified

    The listener supports no services

    Difference between

    1

    Friday, June 4, 2010

    How to change compatible parameter inOracleOverview of Compatible parameterOracle compatible parameter is a string data type parameter and value of thisparameter is oracle database version. It can take value as 11.1.0.7, 11.1.0.6,10.2.0.4, 10.2.0.3, 10.1.0.5, 10.1.0.4, 9.2.0.8, 9.0.1.4, 8.1.7.4 etc. This parametercontrols the database behavior for example whether a feature will work for adatabase. For example if database version is 10.2.0.4 but compatible parameter isset to 9.2 then certain feature like RMAN compression will not work.

    After the database upgrade, if the compatible parameter is set to database versionthen new feature stores any data on disk (including data dictionary changes) thatcannot be processed with your previous release. However after upgrade ifcompatible parameter is not changed then new feature of the upgraded versionwill not be available.

    Default, minimum and maximum value of compatible parameterHere goes the compatible parameter default, minimum and maximum valuesbased on oracle database version.

    Oracle Database Release Default Value Minimum Value

    Oracle Database 9i Release 2 (9.2) 8.1.0 8.1.0.0.0

    Oracle Database 10g Release 1(10.1)

    10.0.0 9.2.0.0.0

    Oracle Database 10g Release 2(10.2)

    10.2.0 9.2.0.0.0

    Oracle Database 11g Release 1(11.1)

    11.0.0 10.0.0.0.0

    In order to check your compatible parameter issue,SQL> SELECT name, value, description FROM v$parameter WHEREname = 'compatible';

    or if you use sql*plus issue,SQL> show parameter compatible;

    Steps to change compatible parameter1) Perform full backup of your database (optional).Before changing compatible parameter, you should take a full backup of yourdatabase. Because raising the COMPATIBLE initialization parameter may causeyour database to become incompatible with earlier releases of the OracleDatabase, and a backup ensures that you can return to the earlier release

    Blog Archive

    2012 (86)

    2011 (331)

    2010 (235) 26 Dec - 2 Jan (3)

    19 Dec - 26 Dec (14)

    12 Dec - 19 Dec (6)

    5 Dec - 12 Dec (12)

    28 Nov - 5 Dec (8)

    21 Nov - 28 Nov (3)

    14 Nov - 21 Nov (4)

    7 Nov - 14 Nov (5)

    31 Oct - 7 Nov (2)

    24 Oct - 31 Oct (1)

    17 Oct - 24 Oct (19)

    10 Oct - 17 Oct (10)

    3 Oct - 10 Oct (2)

    26 Sep - 3 Oct (12)

    19 Sep - 26 Sep (6)

    12 Sep - 19 Sep (1)

    5 Sep - 12 Sep (1)

    29 Aug - 5 Sep (9)

    22 Aug - 29 Aug (2)

    8 Aug - 15 Aug (1)

    1 Aug - 8 Aug (4)

    25 Jul - 1 Aug (3)

    18 Jul - 25 Jul (7)

    11 Jul - 18 Jul (14)

    4 Jul - 11 Jul (1)

    20 Jun - 27 Jun (6)

    6 Jun - 13 Jun (2)

    30 May - 6 Jun (3)How to change compatible

    parameter in Oracle

    java.util.zip.ZipException:reading zip file centr...

    Abasa Arju born in this earthon 1st June, 2010

    23 May - 30 May (4)

    16 May - 23 May (2)

    2 May - 9 May (12)

    18 Apr - 25 Apr (1)

    4 Apr - 11 Apr (2)

    28 Mar - 4 Apr (7)

    21 Mar - 28 Mar (4)

    14 Mar - 21 Mar (1)

    7 Mar - 14 Mar (1)

    28 Feb - 7 Mar (3)

    21 Feb - 28 Feb (3)

    14 Feb - 21 Feb (3)

    24 Jan - 31 Jan (4)

    17 Jan - 24 Jan (10)

    10 Jan - 17 Jan (8)

    3 Jan - 10 Jan (9)

    2009 (332)

    2008 (646)

    Oracle in WorldI work as Technical Consultant in Oracle database, Php programming (Wordpress+JOOMLA), shellscript, css+html, SEO etc. I am on at arjuiut at gmail.com, mohammadabdulmominarju in skype.You can reach me at +8801710282272/ +8801833320825

    Like 161 Send

  • WE8ISO8859P1 andWE8MSWIN1252 characterset

    Oracle forum list

    CategoriesAbout Oracle (7)Administration (20)Alerts (6)Archival (11)Audit (19)Backup (38)Block Corruption (4)Blogger (16)Browser (4)Bug (92)Clusterware (4)Concepts (28)Connection (9)Controlfiles (18)CSS (14)Data Block (11)Data Dictionary (28)Data Guard (20)Data Pump (77)Data Type (21)Database Administration (7)DBConsole (15)EM (21)Exercise (158)Explain plan (15)Export (38)Firmware (5)Flashback (18)Functions (12)Globalization Support (18)HTML (12)Import (15)Indexes (9)initializaion parameter (16)Installation (30)Internals (7)Internet (34)Joins (12)Limitation (10)Linux (36)Listener (16)Magento (6)MySQL (10)Net Services (14)Network (13)Operators (3)Oracle (35)Oracle Concepts (8)Oracle Recovery (10)OS (12)Others (47)OUI (5)Packages (15)Parameters (32)Partitioning (4)Patchset (9)Performance (57)Pfile (13)PHP (43)PL/SQL (36)Profile (5)RAC (34)Recovery (36)Recovery Problems (6)Redo Log (15)RMAN (79)

    Related Posts on Version

    How to know whether patches applied to database

    New features in Oracle database administration in 11g

    How to Find out or Check Linux Version Information

    RunInstaller fails with java.lang.UnsatisfiedLinkError

    ORA-38760: This database instance failed to turn on flashback database ORA-38701

    ORA-27037

    How to verify whether weblogic is installed in your server.

    How to change compatible parameter in Oracle

    Newer Post Older Post

    whenever you want.

    2) If you are using spfile parameter to start up your database then complete thefollowing things.

    a. Update the server parameter file to set or change the value of theCOMPATIBLE initialization parameter.For example, to set the COMPATIBLE initialization parameter to 10.2.0, issuethe following statement:SQL> ALTER SYSTEM SET COMPATIBLE = '10.2.0' SCOPE=SPFILE;

    b. Shut down and restart the instance.SQL> SHUTDOWN IMMEDIATESQL> STARTUP

    3) If you are using pfile parameter, then complete the following steps.

    a. Shut down the instance if it is running:SQL> SHUTDOWN IMMEDIATE

    b. Edit the initialization parameter file to set or change the value of theCOMPATIBLE initialization parameter.For example, to set the COMPATIBLE initialization parameter to 10.2.0, enterthe following in the initialization parameter file:COMPATIBLE = 10.2.0

    c. Start the instance using STARTUP.SQL> STARTUP

    Related Documentshttp://arjudba.blogspot.com/2008/04/list-of-oracle-database-version-release.htmlhttp://arjudba.blogspot.com/2008/04/oracle-database-editions.htmlhttp://arjudba.blogspot.com/2008/04/oracle-products.htmlhttp://arjudba.blogspot.com/2008/04/timeline-of-oracle-rdbms-major-release.htmlhttp://arjudba.blogspot.com/2008/04/history-of-oracle-corporation.htmlhttp://arjudba.blogspot.com/2008/10/list-of-patchset-number-in-metalink.htmlhttp://arjudba.blogspot.com/2010/01/how-to-know-whether-patches-applied-to.html

    Posted by Arju at 8:35 PM Labels: Version

    Reactions:

    No comments:

    Post a Comment

    Home

    Subscribe to: Post Comments (Atom)

    There was an error in thisgadget

    Sign up to get the blogupdates via email.

    About MeEmail ScamsKnow about Scam emailsReport about scam emailsSubscribe by email

    Which Oracle databaseversion you use?

    11gR1

    11gR2

    10gR1

    10gR2

    9i

    8i

    Others

    You may select multiple answers.

    Show results

    Votes so far: 856Days left to vote: 552

    +1 Recommend this on Google

    Oracle Job Lock Change

    Change Job

  • Scripts (22)Security (59)SEO (27)Server Administration (16)Shell Script (51)Solaris (7)Spfile (14)SQL (123)Sql*Plus (32)Startup Problem (15)SwingBench (3)Tablespaces (24)Temp (7)TNS Error (8)Troubleshooting (95)UNIX (61)Utilities (11)Windows (34)Wordpress (12)

    Popular PostsLogistic Marketing Group ishiring SEO Specialist, GraphicsDesigner & Programmer

    ORA-00054: resource busy andacquire with NOWAIT specified

    Eid ul-Azha Eid MubarakGreeting Cards

    How to check your mobilenumber in GP/Aktel/Airtel/Banglalink in Bangladesh

    Oracle Database Security PolicyChecklist

    The listener supports no services

    Step by Step Oracle 11gR2 RACInstallation on Linux

    Job opportunity as Oracle DBA

    What is enq: TX - row lockcontention

    How to open an odt file

    Which OS you like bestfor your oracle

    Red Hat Enterprise Linux

    Oracle Enterprise Linux

    HP-UX

    Solaris

    Microsoft Windows Server

    Others

    You may select multiple answers.

    Show results

    Votes so far: 534Days left to vote: 917

    Tag CloudAbout Oracle Administration Archival ASM

    Audit Audit Vault Backup Blogger

    Bug Concepts Connection ControlfilesCSS Data Block Data Dictionary Data Guard Data Pump Data

    Type Database Administration Database Vault DBConsole EM

    Exercise Explain plan Export Flashback Functions Globalization Support

    HTML Import Indexes initializaion parameter Installation Internals Internet Joins Limitation Linux Listener

    MySQL Net Services Network OCP OracleOracle Concepts Oracle Recovery OS Others Packages Parameters

    Patchset Performance Pfile PHP PL/SQL Quiz RAC Recovery

    Redo Log RMAN Scripts Security SEO Server Administration

    Shell Script Solaris Spfile SQL Sql*Plus Startup Problem Tablespaces

    Temp TNS Error Troubleshooting UNIXUtilities Version Windows Wordpress

    Linux Jobs -Urgentwww.monsterindia.com

    Top Companies Hiring Now. Submit CV to Apply & Find Jobs

    Oracle Database Oracle 11G DB Oracle

    Oracle Rac Oracle Server Oracle Upgrade