Sunteți pe pagina 1din 3

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

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)

Friday, June 4, 2010

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)

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 Oracle Database 9i Release 2 (9.2) Oracle Database 10g Release 1 (10.1) Oracle Database 10g Release 2 (10.2) Oracle Database 11g Release 1 (11.1)

Default Value 8.1.0 10.0.0

Minimum Value 20 Jun - 27 Jun (6)


6 Jun - 13 Jun (2)

8.1.0.0.0 9.2.0.0.0

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

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

10.2.0

9.2.0.0.0

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)

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

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)

WE8ISO8859P1 and WE8MSWIN1252 characterset Oracle forum list

whenever you want. 2) If you are using spfile parameter to start up your database then complete the following things. a. Update the server parameter file to set or change the value of the COMPATIBLE initialization parameter. For example, to set the COMPATIBLE initialization parameter to 10.2.0, issue the following statement: SQL> ALTER SYSTEM SET COMPATIBLE = '10.2.0' SCOPE=SPFILE; b. Shut down and restart the instance. SQL> SHUTDOWN IMMEDIATE SQL> 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 the COMPATIBLE initialization parameter. For example, to set the COMPATIBLE initialization parameter to 10.2.0, enter the following in the initialization parameter file: COMPATIBLE = 10.2.0 c. Start the instance using STARTUP. SQL> STARTUP Related Documents http://arjudba.blogspot.com/2008/04/list-of-oracle-databaseversion-release.html http://arjudba.blogspot.com/2008/04/oracle-database-editions.html http://arjudba.blogspot.com/2008/04/oracle-products.html http://arjudba.blogspot.com/2008/04/timeline-of-oracle-rdbmsmajor-release.html http://arjudba.blogspot.com/2008/04/history-of-oraclecorporation.html http://arjudba.blogspot.com/2008/10/list-of-patchset-numberin-metalink.html http://arjudba.blogspot.com/2010/01/how-to-know-whether-patches-appliedto.html 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

There was an error in this gadget Sign up to get the blog updates via email.

Categories
About 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)

About Me Email Scams Know about Scam emails Report about scam emails Subscribe by email

Which Oracle database version you use?


11gR1 11gR2 10gR1 10gR2 9i 8i Others You may select multiple answers. Show results Votes so far: 856 Days left to vote: 552

Oracle Job Lock Change Change Job

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
Posted by Arju at 8:35 PM Labels: Version

+1 Recommend this on Google


Reactions:

No comments:
Post a Comment

Newer Post Subscribe to: Post Comments (Atom)

Home

Older Post

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)

Linux Jobs -Urgent


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

Tag Cloud

Oracle Database

Oracle 11G

DB Oracle Archival ASM Blogger

About Oracle Administration Audit Audit Vault Backup

Bug

Concepts Connection Controlfiles CSS Data Block Data Dictionary Data Guard Data Pump Data Type Database Administration Database Vault DBConsole EM
Explain plan Export Functions Globalization Support Import Indexes initializaion parameter Installation Internals Internet Joins Limitation Linux Listener MySQL Net Services Network OCP Oracle Oracle Concepts Oracle Recovery OS Others Packages Parameters Patchset Performance Pfile PHP PL/SQL Flashback HTML Redo Log

Exercise

Popular Posts
Logistic Marketing Group is hiring SEO Specialist, Graphics Designer & Programmer ORA-00054: resource busy and acquire with NOWAIT specified Eid ul-Azha Eid Mubarak Greeting Cards How to check your mobile number in GP/Aktel/Airtel /Banglalink in Bangladesh Oracle Database Security Policy Checklist The listener supports no services Step by Step Oracle 11gR2 RAC Installation on Linux Job opportunity as Oracle DBA What is enq: TX - row lock contention How to open an odt file

Quiz RAC Recovery RMAN Scripts Security SEO Server Administration


Solaris Spfile

Shell Script Sql*Plus Startup Problem


Temp TNS Error Utilities Version

SQL
Tablespaces UNIX
Oracle Upgrade

Troubleshooting
Windows Wordpress
Oracle Server

Oracle Rac

Which OS you like best for 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: 534 Days left to vote: 917

S-ar putea să vă placă și