Standby db-EE edition and Standard edition

Dear friends,
10g on solaris 10.
What are the differences in standby db when using a enterprise edition and standard edition ?..
Any input will be of great help
Kai

Niall and team
I have read your presentation - "You Probably Don't need dataguard" and I tried it out on test database. I setup a manual standby database, archivelog is manually copied to standby db.
Maybe you have an idea on regarding SCN or archivelog that is not present but Oracle is asking/suggestion during recovery procedure..
environment:
2 virtual box - Solaris 10 Virtual Machine host on Windows XP
Oracle 10.2.0 Standard Edition
Primary DB host name: SE
Standby DB host name: SE2
archive dest = /export/home/oracle/archive (same on both machine)
db file = /export/home/oracle/oradata/se , /export/home/oracle/oradata/se2 --> so I used db_file convert parameter in init.ora
Steps:
On the newly created database, create a test table and insert values.
SQL> create table test(a number) tablespace users;
Table created.
SQL> insert into test values(&a);
Enter value for a: 1
old 1: insert into test values(&a)
new 1: insert into test values(1)
1 row created.
SQL> /
Enter value for a: 21
old 1: insert into test values(&a)
new 1: insert into test values(21)
1 row created.
SQL> /
Enter value for a: 31
old 1: insert into test values(&a)
new 1: insert into test values(31)
1 row created.
SQL> /
Enter value for a: 41
old 1: insert into test values(&a)
new 1: insert into test values(41)
1 row created.
SQL> commit;
Commit complete.
SQL> alter system archive log current;
System altered.
SQL>
$ ls -lrt
total 41808
-rw-r----- 1 oracle oinstall 21378048 Feb 24 15:52 1_2_711819574.dbf
$
Again, insert some values to test table,
SQL> insert into test values(&a);
Enter value for a: 33
old 1: insert into test values(&a)
new 1: insert into test values(33)
1 row created.
SQL> /
Enter value for a: 44
old 1: insert into test values(&a)
new 1: insert into test values(44)
1 row created.
SQL> /
Enter value for a: 55
old 1: insert into test values(&a)
new 1: insert into test values(55)
1 row created.
SQL> /
Enter value for a: 11
old 1: insert into test values(&a)
new 1: insert into test values(11)
1 row created.
SQL> commit;
Commit complete.
SQL> alter system archive log current;
System altered.
SQL> select * from test;
A
1
21
31
41
33
44
55
11
8 rows selected.
check archivelog dir,
$ ls -lrt
total 41816
-rw-r----- 1 oracle oinstall 21378048 Feb 24 15:52 1_2_711819574.dbf
-rw-r----- 1 oracle oinstall 4096 Feb 24 15:55 1_3_711819574.dbf
$
Then,
1. shutdown immediate (primary)
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL>
2. copy datafile, redo, archive log to SE2 node.
$ pwd
/export/home/oracle/oradata/se
$ ls
control01.ctl control03.ctl redo02.log sysaux01.dbf temp01.dbf users01.dbf
control02.ctl redo01.log redo03.log system01.dbf undotbs01.dbf
$ scp * [email protected]:/export/home/oracle/oradata/se2
Password:
control01.ctl 100% |******************************************************| 6896 KB 00:01
control02.ctl 100% |******************************************************| 6896 KB 00:01
control03.ctl 100% |******************************************************| 6896 KB 00:00
redo01.log 100% |******************************************************| 51200 KB 00:09
redo02.log 100% |******************************************************| 51200 KB 00:11
redo03.log 100% |******************************************************| 51200 KB 00:08
sysaux01.dbf 100% |******************************************************| 240 MB 00:54
system01.dbf 100% |******************************************************| 480 MB 01:35
temp01.dbf 100% |******************************************************| 20488 KB 00:04
undotbs01.dbf 100% |******************************************************| 25608 KB 00:05
users01.dbf 100% |******************************************************| 5128 KB 00:01
$
$ ls -lrt
total 41816
-rw-r----- 1 oracle oinstall 21378048 Feb 24 15:52 1_2_711819574.dbf
-rw-r----- 1 oracle oinstall 4096 Feb 24 15:55 1_3_711819574.dbf
$ scp 1_2_711819574.dbf [email protected]:/export/home/oracle/archive
Password:
1_2_711819574.dbf 100% |******************************************************| 20877 KB 00:04
$
3. startup (primary)
4. create standby control file
SQL> startup
ORACLE instance started.
Total System Global Area 167772160 bytes
Fixed Size 1279120 bytes
Variable Size 62917488 bytes
Database Buffers 100663296 bytes
Redo Buffers 2912256 bytes
Database mounted.
Database opened.
SQL> alter database create standby controlfile as '/export/home/oracle/standby.ctl';
Database altered.
5. copy standby control file to SE2
$ pwd
/export/home/oracle
$ scp standby.ctl [email protected]:/export/home/oracle
Password:
standby.ctl 100% |******************************************************| 6896 KB 00:01
$
6. edit init.ora, specify location of control file - use standby control file
*.control_files='/export/home/oracle/standby.ctl'
7. SE2,
SQL> startup nomount pfile=/export/home/oracle/product/10.2.0/db_1/dbs/initse.ora
ORACLE instance started.
Total System Global Area 167772160 bytes
Fixed Size 1279120 bytes
Variable Size 62917488 bytes
Database Buffers 100663296 bytes
Redo Buffers 2912256 bytes
8. alter database mount standby database;
SQL> alter database mount standby database;
Database altered.
SQL>
9. we'll try to open as read only without recovery,
SQL> alter database open read only;
alter database open read only
ERROR at line 1:
ORA-16004: backup database requires recovery
ORA-01152: file 1 was not restored from a sufficiently old backup
ORA-01110: data file 1: '/export/home/oracle/oradata/se2/system01.dbf'
10. then, we recover by - recover standby database;
SQL> recover standby database;
ORA-00279: change 540274 generated at 02/24/2010 15:58:26 needed for thread 1
ORA-00289: suggestion : /export/home/oracle/archive/1_4_711819574.dbf
ORA-00280: change 540274 for thread 1 is in sequence #4
Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
auto
ORA-00308: cannot open archived log
'/export/home/oracle/archive/1_4_711819574.dbf'
ORA-27037: unable to obtain file status
Intel SVR4 UNIX Error: 2: No such file or directory
Additional information: 3
ORA-00308: cannot open archived log
'/export/home/oracle/archive/1_4_711819574.dbf'
ORA-27037: unable to obtain file status
Intel SVR4 UNIX Error: 2: No such file or directory
Additional information: 3
ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
ORA-01152: file 1 was not restored from a sufficiently old backup
ORA-01110: data file 1: '/export/home/oracle/oradata/se2/system01.dbf'
<observation> notice that archive log 4 is not yet present in Primary DB and STBY DB.
Question: Why Oracle is asking archivelog that does not exist? I noticed in other exercise that you can use the redo log instead of archive log that does not exist. Is this because when we create the standby control file, the SCN is in sync with redo log.
10. Now, we will copy archive log 3 to STDB,
$ cd archive
$ ls
1_2_711819574.dbf 1_3_711819574.dbf
$ scp 1_3_*711819574.dbf [email protected]:/export/home/oracle/archive
Password:
1_3_711819574.dbf 100% |******************************************************| 4096 00:00
$
11. on SE2, recover
SQL> recover automatic standby database until cancel;
ORA-00279: change 540274 generated at 02/24/2010 15:58:26 needed for thread 1
ORA-00289: suggestion : /export/home/oracle/archive/1_4_711819574.dbf
ORA-00280: change 540274 for thread 1 is in sequence #4
ORA-00278: log file '/export/home/oracle/archive/1_4_711819574.dbf' no longer
needed for this recovery
ORA-00308: cannot open archived log
'/export/home/oracle/archive/1_4_711819574.dbf'
ORA-27037: unable to obtain file status
Intel SVR4 UNIX Error: 2: No such file or directory
Additional information: 3
Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
cancel
ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
ORA-01152: file 1 was not restored from a sufficiently old backup
ORA-01110: data file 1: '/export/home/oracle/oradata/se2/system01.dbf'
ORA-01112: media recovery not started
12. Now, to generate the archivelog 4 and get the SCN that is indicated above, from one of our redo log. we will go to PRIMARY DB, and insert some rows to TEST TABLE and switch log file.
SQL>
SQL> insert into test values(&a);
Enter value for a: 99
old 1: insert into test values(&a)
new 1: insert into test values(99)
1 row created.
SQL> /
Enter value for a: 100
old 1: insert into test values(&a)
new 1: insert into test values(100)
1 row created.
SQL> /
Enter value for a: 101
old 1: insert into test values(&a)
new 1: insert into test values(101)
1 row created.
SQL> commit;
Commit complete.
SQL> alter system switch logfile;
System altered.
$ ls -lrt
total 42568
-rw-r----- 1 oracle oinstall 21378048 Feb 24 15:52 1_2_711819574.dbf
-rw-r----- 1 oracle oinstall 4096 Feb 24 15:55 1_3_711819574.dbf
-rw-r----- 1 oracle oinstall 376832 Feb 24 16:28 1_4_711819574.dbf
13. We will again, switch logfile, to generate archive 5, before we copied archive 4 to STBY, we are sure that arch 5 is the active archivelog.
SQL> alter system switch logfile;
System altered.
SQL> exit
Disconnected from Oracle Database 10g Release 10.2.0.2.0 - Production
$ ls -lrt
total 42570
-rw-r----- 1 oracle oinstall 21378048 Feb 24 15:52 1_2_711819574.dbf
-rw-r----- 1 oracle oinstall 4096 Feb 24 15:55 1_3_711819574.dbf
-rw-r----- 1 oracle oinstall 376832 Feb 24 16:28 1_4_711819574.dbf
-rw-r----- 1 oracle oinstall 1024 Feb 24 16:31 1_5_711819574.dbf
$
14. copy archive log 4 to STBY (SE2)
$ scp 1_4_711819574.dbf [email protected]:/export/home/oracle/archive
Password:
1_4_711819574.dbf 100% |********************************************| 368 KB 00:00
$
15. In SE2, recover
SQL> recover automatic standby database until cancel;
ORA-00279: change 540985 generated at 02/24/2010 16:28:36 needed for thread 1
ORA-00289: suggestion : /export/home/oracle/archive/1_5_711819574.dbf
ORA-00280: change 540985 for thread 1 is in sequence #5
ORA-00278: log file '/export/home/oracle/archive/1_5_711819574.dbf' no longer
needed for this recovery
ORA-00308: cannot open archived log
'/export/home/oracle/archive/1_5_711819574.dbf'
ORA-27037: unable to obtain file status
Intel SVR4 UNIX Error: 2: No such file or directory
Additional information: 3
Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
cancel
Media recovery cancelled.
15. Now let's see if we can open as read only and check test table.
SQL> alter database open read only;
Database altered.
SQL> select * from test;
A
1
21
31
41
33
44
55
11
99
100
101
11 rows selected.
16. Now shutdown STBY database,
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL>
17. On SE (PRIMARY), insert some records to TEST table, please take note that current archivelog is no. 5. We want to generate archivelog 6 and archivelog 7. Then only archivelog 5 and 6 will be copied to STBY.
SQL> insert into test values(&a);
Enter value for a: 1000
old 1: insert into test values(&a)
new 1: insert into test values(1000)
1 row created.
SQL> /
Enter value for a: 1001
old 1: insert into test values(&a)
new 1: insert into test values(1001)
1 row created.
SQL> /
Enter value for a: 1002
old 1: insert into test values(&a)
new 1: insert into test values(1002)
1 row created.
SQL> commit;
Commit complete.
SQL> alter system archive log current;
System altered.
SQL> exit
Disconnected from Oracle Database 10g Release 10.2.0.2.0 - Production
$ ls -lrt
total 42632
-rw-r----- 1 oracle oinstall 21378048 Feb 24 15:52 1_2_711819574.dbf
-rw-r----- 1 oracle oinstall 4096 Feb 24 15:55 1_3_711819574.dbf
-rw-r----- 1 oracle oinstall 376832 Feb 24 16:28 1_4_711819574.dbf
-rw-r----- 1 oracle oinstall 1024 Feb 24 16:31 1_5_711819574.dbf
-rw-r----- 1 oracle oinstall 31744 Feb 24 16:41 1_6_711819574.dbf
we will do, log switch to create archive log 7,
SQL> alter system switch logfile;
System altered.
SQL> exit
Disconnected from Oracle Database 10g Release 10.2.0.2.0 - Production
$ ls -lrt
total 42634
-rw-r----- 1 oracle oinstall 21378048 Feb 24 15:52 1_2_711819574.dbf
-rw-r----- 1 oracle oinstall 4096 Feb 24 15:55 1_3_711819574.dbf
-rw-r----- 1 oracle oinstall 376832 Feb 24 16:28 1_4_711819574.dbf
-rw-r----- 1 oracle oinstall 1024 Feb 24 16:31 1_5_711819574.dbf
-rw-r----- 1 oracle oinstall 31744 Feb 24 16:41 1_6_711819574.dbf
-rw-r----- 1 oracle oinstall 1024 Feb 24 16:42 1_7_711819574.dbf
Then copy, arc 5 and arc 6 to SE2 (STBY)
$ scp 1_5_711819574.dbf 1_6_711819574.dbf [email protected]:/export/home/oracle/archive
Password:
1_5_711819574.dbf 100% |*********************************************************| 1024 00:00
1_6_711819574.dbf 100% |*********************************************************| 31744 00:00
$
17. in SE2, recover
SQL> startup nomount pfile=/export/home/oracle/product/10.2.0/db_1/dbs/initse.ora
ORACLE instance started.
Total System Global Area 167772160 bytes
Fixed Size 1279120 bytes
Variable Size 62917488 bytes
Database Buffers 100663296 bytes
Redo Buffers 2912256 bytes
SQL> alter database mount standby database;
Database altered.
SQL> recover automatic standby database until cancel;
ORA-00279: change 541270 generated at 02/24/2010 16:41:26 needed for thread 1
ORA-00289: suggestion : /export/home/oracle/archive/1_7_711819574.dbf
ORA-00280: change 541270 for thread 1 is in sequence #7
ORA-00278: log file '/export/home/oracle/archive/1_7_711819574.dbf' no longer
needed for this recovery
ORA-00308: cannot open archived log
'/export/home/oracle/archive/1_7_711819574.dbf'
ORA-27037: unable to obtain file status
Intel SVR4 UNIX Error: 2: No such file or directory
Additional information: 3
Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
cancel
Media recovery cancelled.
18. open as read only, to check if the newly inserted records can be view,
SQL> alter database open read only;
Database altered.
SQL> select * from test;
A
1
21
31
41
33
44
55
11
99
100
101
A
1000
1001
1002
14 rows selected.
OK, that means that archive log 5 and archivelog 6 are applied to STBY database.
Question. Why Oracle is asking the arc 7 , is it correct to say that last SCN is based on arc 5 and arc 6. Or is it Oracle behavior to ask the "next" SCN, after the arc 6. when performing recovery? ... that's why we have CANCEL.
Appreciate your response on this..
Thanks..
19. For the sake of curiosity, lets try if we can use - recover managed standby database; (archivelog is still manually copied)
on SE2, we will put it on "recovery mode"
shutdown immediate,
startup nomount pfile =
alter database mount standby database
recover managed standby database; (though the archivelogs are still copied manually )
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup nomount pfile=/export/home/oracle/product/10.2.0/db_1/dbs/initse.ora
ORACLE instance started.
Total System Global Area 167772160 bytes
Fixed Size 1279120 bytes
Variable Size 62917488 bytes
Database Buffers 100663296 bytes
Redo Buffers 2912256 bytes
SQL> alter database mount standby database;
Database altered.
SQL> recover managed standby database; (it will "hang", if you need to CANCEL open new session and use - recover managed standby database cancel)
our current arch is 7, we will insert records to test table, and generate arch 8 and arch 9, then we will transfer arch 7 and arch 8 to SE2,
on SE,
Connected to:
Oracle Database 10g Release 10.2.0.2.0 - Production
SQL> insert into test values(&a);
Enter value for a: 2000
old 1: insert into test values(&a)
new 1: insert into test values(2000)
1 row created.
SQL> /
Enter value for a: 2001
old 1: insert into test values(&a)
new 1: insert into test values(2001)
1 row created.
SQL> /
Enter value for a: 2003
old 1: insert into test values(&a)
new 1: insert into test values(2003)
1 row created.
SQL> commit;
Commit complete.
SQL> alter system archive log current;
System altered.
SQL> alter system switch logfile;
System altered.
SQL> exit
Disconnected from Oracle Database 10g Release 10.2.0.2.0 - Production
$ pwd
/export/home/oracle/archive
$ ls -lrt
total 45758
-rw-r----- 1 oracle oinstall 21378048 Feb 24 15:52 1_2_711819574.dbf
-rw-r----- 1 oracle oinstall 4096 Feb 24 15:55 1_3_711819574.dbf
-rw-r----- 1 oracle oinstall 376832 Feb 24 16:28 1_4_711819574.dbf
-rw-r----- 1 oracle oinstall 1024 Feb 24 16:31 1_5_711819574.dbf
-rw-r----- 1 oracle oinstall 31744 Feb 24 16:41 1_6_711819574.dbf
-rw-r----- 1 oracle oinstall 1024 Feb 24 16:42 1_7_711819574.dbf
-rw-r----- 1 oracle oinstall 1584640 Feb 24 17:02 1_8_711819574.dbf
-rw-r----- 1 oracle oinstall 2048 Feb 24 17:02 1_9_711819574.dbf
$
$ scp 1_7_711819574.dbf 1_8_711819574.dbf [email protected]:/export/home/oracle/archive
Password:
1_7_711819574.dbf 100% |*********************************************************| 1024 00:00
1_8_711819574.dbf 100% |*********************************************************| 1547 KB 00:00
$
Please take note that in SE2 initse.ora file, we also set standby_control_file = /export/home/oracle/archive parameter.
19. On SE2, open new session, and cancel recovery,
session 2,
SQL> recover managed standby database cancel;
Media recovery complete.
SQL>
session 1,
SQL> recover managed standby database;
ORA-16043: managed recovery session canceled
ORA-16037: user requested cancel of managed recovery operation
Lets check if archivelog is applied, by checking test table,
SQL> alter database open read only;
Database altered.
SQL> select * from test;
A
1
21
31
41
33
44
55
11
99
100
101
A
1000
1001
1002
14 rows selected.
Notice that 2000, 2001, 2002 are not added in TEST table.
Lets do manual recovery,
SQL> startup nomount pfile=/export/home/oracle/product/10.2.0/db_1/dbs/initse.ora
ORACLE instance started.
Total System Global Area 167772160 bytes
Fixed Size 1279120 bytes
Variable Size 62917488 bytes
Database Buffers 100663296 bytes
Redo Buffers 2912256 bytes
SQL> alter database mount standby database;
Database altered.
SQL> recover automatic standby database until cancel;
ORA-00279: change 541804 generated at 02/24/2010 17:02:34 needed for thread 1
ORA-00289: suggestion : /export/home/oracle/archive/1_9_711819574.dbf
ORA-00280: change 541804 for thread 1 is in sequence #9
ORA-00278: log file '/export/home/oracle/archive/1_9_711819574.dbf' no longer
needed for this recovery
ORA-00308: cannot open archived log
'/export/home/oracle/archive/1_9_711819574.dbf'
ORA-27037: unable to obtain file status
Intel SVR4 UNIX Error: 2: No such file or directory
Additional information: 3
Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
cancel
Media recovery cancelled.
SQL> select * from test;
select * from test
ERROR at line 1:
ORA-01219: database not open: queries allowed on fixed tables/views only
SQL> alter database open read only;
Database altered.
SQL> select * from test;
A
1
21
31
41
33
44
55
11
99
100
101
A
1000
1001
1002
2000
2001
2003
17 rows selected.

Similar Messages

  • Features&Pricing difference Ora10g Enterprise Edition and Standard Edition

    Hi All,
    I want to know the "Features&Pricing difference between Oracle 10g Enterprise Edition and Standard Edition"
    Kindly share if anybody have.
    Thanks and regards,
    Muhammad Shakeel Azeem

    Please see,
    http://www.oracle.com/us/products/database/product-editions-066501.html
    For listed pricing, check https://shop.oracle.com/pls/ostore/f?p=dstore:home:0::::: .
    Aman....

  • Difference between Enterprise Edition and Standard Edition for Oracle RAC

    Hi,
    In our current setup we have RAC on standard edition and client is now planning to go for Enterprise Edition but not yet decide because of cost.
    Is there any difference between Grid Infrastructure 11gR3 Enterprise edition and Standard Edition ?
    They told me to first install Enterprise Edition and then will move to Standard Edition if they can't get the EE license so in that case do i have to re-install Grid infrastructure for standard edition?
    Regards,
    Chirag

    994551 wrote:
    Hi,
    In our current setup we have RAC on standard edition and client is now planning to go for Enterprise Edition but not yet decide because of cost.
    Is there any difference between Grid Infrastructure 11gR3 Enterprise edition and Standard Edition ?
    They told me to first install Enterprise Edition and then will move to Standard Edition if they can't get the EE license so in that case do i have to re-install Grid infrastructure for standard edition?Hi,
    There is no "Grid Infrastructure 11gR3 Enterprise edition and Standard Edition", is only Grid Infrastructure 11gR2.
    About Oracle Clusterware (Grid Infrastructure) licensing.
    At least one of the servers in the cluster is licensed for Oracle Database (SE1, SE, or EE)
    A cluster is defined to include all the machines that share the same Oracle Cluster Registry (OCR) and Voting Disk.
    http://docs.oracle.com/cd/E11882_01/license.112/e10594/editions.htm#CJAHFHBJ
    About Database licensing.
    http://www.oracle.com/us/products/database/enterprise-edition/comparisons/index.html
    Note : Oracle Real Application Clusters (Oracle RAC), is an option to Oracle Database 11g Enterprise Edition and included with Oracle Database 11g Standard Edition (on clusters with a maximum of 4 sockets).
    If you move to Oracle EE you must purchase a separate licence to use RAC option
    About Installation:
    Nothing changes on your current setup of Grid Infrastructure 11.2
    Just install a new fresh installation of Oracle Database (On current clusterware) chosing E.E during Install. Configure the database/services to start from this new ORACLE HOME. Nothing change on Database all previous backup and features used still unchanged. Using this new Oracle Home new features are enabled to be used by your databases.
    About Downgrade:
    Step by Step Procedure to Convert from Enterprise Edition to Standard Edition [ID 465189.1]

  • Enterprise edition and standard edition

    ORACLE 10.2.0.1.0 /REDHAT 5.1 - Enterprise linux 2.6.18
    we would like to MIGRATE from enterprise edition to standard edition .
    can we use dataguard,partitioning,flashback in standard edition .
    santhanam.

    Hi,
    Yes, there are so many options not available with standard edition. like as you said dataguard and flashback database
    like
    1)online rebuilding/reorganization of tables
    2)multiple channels in RMAN
    3)only basic materialized view..
    4)tuning&diagnostic packs
    there are so many..
    read http://www.dba-oracle.com/art_so_oracle_standard_enterprise_edition.htm
    http://searchoracle.techtarget.com/answer/Standard-vs-Enterprise-Editions-of-Oracle

  • About Standard Edition and Standard Edition one

    Good day people.
    I 'm not sure if this question has been asked, excuse me if I haven't noticed it.
    Where I currently work are planning the implementation of an software running over Oracle DataBase, but they are unsure for which DB version to choose.
    1. What are the main differences between Oracle Standard Edition and Oracle Standard Edition one? (besides that the second doesn't support RAC or clusters.)
    2. I am still unsure if license for processors are counted as processors or cores, for instance 1 processor with 4 cores (means 1 processor? or 4 processors or a factor multiply)?
    3. Is it true that EVERY license I buy MUST have 1 first year as support?
    And 4. Is Windows Server 2008 supported? (64bits)
    Gracias, a lot.

    Hi;
    Firstly for license its better to contact wiht your local oracle sale representative which you can get exact answer.
    1. What are the main differences between Oracle Standard Edition and Oracle Standard Edition one? (besides that the second doesn't support RAC or clusters.)Please see below:
    http://download.oracle.com/docs/cd/B28359_01/license.111/b28287/editions.htm#CJACGHEB
    2. I am still unsure if license for processors are counted as processors or cores, for instance 1 processor with 4 cores (means 1 processor? or 4 processors or a factor multiply)?See:
    Licensing-Oracledb
    Query Regarding Oracle Installation
    Oracle Licensing
    Re: Licensing Technology
    3. Is it true that EVERY license I buy MUST have 1 first year as support?Yes
    And 4. Is Windows Server 2008 supported? (64bits)What is DB version?
    Check certification matrix and also see:
    Master Note For Oracle Database Server Installation [ID 1156586.1]
    Regard
    Helios

  • Standard Edition vs Standard Edition 1 vs Enterprise Edition

    Hello All,
    I am using Oracle 11g R2 and I want to know what is the difference technically between Standard Edition, Standard Edition 1 and Enterprise Edition?
    is it as below ? anything else?
    Standard edition: It is Single Instance database with all it is features ? up to 4 sockets, what is socket ? is it processor ?
    Standard edition one: It come with RAC and ASM?
    Enterprise edition: RAC + ASM + Dataguard?
    any other technical differences.
    Please your feedback....
    Regards,

    NB wrote:
    Thank you so much Girish, it is helpful !NB,
    The link that Girish Sharma provided to you will be very helpful, but the information in that documentation page does not fully describe the potential performance differences between Standard Edition (or Standard Edition One) and Enterprise Edition. The term potential performance could mean that Standard Edition is either faster or slower than Enterprise Edition for certain operations. A year ago I put together a four part article series that explores some of the potential performance differences between Standard Edition and Enterprise Edition:
    Part 1 http://hoopercharles.wordpress.com/2010/11/21/different-performance-from-standard-edition-and-enterprise-edition-1/
    The Enterprise Edition of Oracle Database 11.2 supports deferred segment creation, while the Standard Edition does not. Somewhat oddly, this feature may result in different execution plans on the Enterprise Edition and Standard Edition, as may be seen in one of the final comments in this blog article:
    http://hoopercharles.wordpress.com/2012/02/13/will-enabling-a-10046-trace-make-my-query-slower-or-faster/
    Charles Hooper
    http://hoopercharles.wordpress.com/
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • Difference between standard edition and enterprise edition?

    Is there any document describing the feature differences between Oracle 9i standard edition and enterprise edition?
    Specifically is Oracle Text bundled with the standard edition?
    Thanks a lot
    James

    Hi,
    Check this document:
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=112591.1
    Apart from the features that are present in E.E. and not in S.E., there is little difference (except the license price...).
    Note that some seperately purchased options are only available with E.E., not S.E. (e.g. Partitioning, Enterprise Manager Packs).
    MB

  • What is the difference between 9i standard edition and enterprise edition

    hi,
    who can tell me what is the difference between ora 9i standard edition and enterprise edition?? relevant http links are also appreciated. thank you!
    regards,
    iron teung.

    If your 'professor' really said that then I think you need to find a new college!I agree. 11g is a superset of 9i. In fact,you can tell 11g to run in 9i compatibility mode.
    >
    I firmly believe that you would do well starting with
    9i and then going through the new features with each
    release to 11g.Since 9i is officially about to start it's second year in 'Extended Support' (which, due to the surcharge in support fee, will likely see a drop-off in adoption) I would encourage anyone studying Oracle database to start with 10g.
    But the idea of starting at 9i is not bad.
    >
    'Client' is the software required to
    access/interact/maintain an Oracle database remotely
    from a client machine. Different features become
    available as you progress from Personal to Standard
    to Enterprise editions. They are cost related to
    whichever license you buy in a production environment.One point of confusion is that Personal Edition really is targeted for the Developer and therefore includes all capabilities, features and options of Enterprise Edition turned on and included in the license. (Except RAC and OEM packs) When I draw a picture, I put Personal Edition at the top as most capable.

  • SDK support in Pro and Standard editions.

    Hi,
    I want to convert PDF file into DOCX programatically. I have written the code using Acrobat SDK and tried with Acrobat X Pro trial version, and it works fine. I just want to confirm whether Acrobat X Standard edition supports exporting PDF to DOCX via SDK? and whether my code will work in Standard edition.
    Also, want to know whether there are any differences between Pro and Standard editions in terms of SDK support.
    With regards,
    Pinakin Purandare

    Hi,
    Apologies for missing the code.
    Below is the code:
                AcroPDDoc pdDocument = new AcroPDDocClass();
                if (pdDocument != null)
                    try
                        // Open PDF file.
                        result = pdDocument.Open(location);
                        if (result)
                            // If PDF file is opened then get the docx file name.
                            string docxFileName = string.Concat(Path.GetFileNameWithoutExtension(location), ".docx");
                            docxFileName = Path.Combine(Path.GetFullPath(tempPath), docxFileName);
                            try
                                object jsObject = pdDocument.GetJSObject();
                                Type type = jsObject.GetType();
                                type.InvokeMember("saveAs", BindingFlags.InvokeMethod, null, jsObject,
                                    new object[] { docxFileName, "com.adobe.acrobat.docx" });
                            finally
                                pdDocument.Close();
                                pdDocument = null;
                    finally
                        pdDocument = null;
    I have gone through the feature list of Standard edition on Acrobat site and it mentions that it has feature of exporting it to Word. But since I was not able to find trial version of standard version, I am not able to test the code.
    I want to make the decision on buying the edition based on the export to DOCX feature programatically. Hence wanted to confirm.
    With regards,
    Pinakin Purandare

  • Weblogic 10gR3 standard edition and enterprise edition

    Difference between weblogic 10gR3 standard edition and enterprise edition ??

    WebLogic Server software is the same in all of the various download distributions available that vary on platform and 32/64 bit architecture. However, which features are licensed for use vary by the edition customers license, which is covered here:
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14860/products.htm#i1041725
    That link is for WLS 11g, but it applies generally to WLS 10.3.0 as well.

  • Standby DB is available in standard edition ???

    Hi,
    i want to ask whether standby DB feature is available in oracle standard edition server ???
    Thanks
    Steve
    null

    According to the 10g Licencing info, only table compression is listed under Table 1-1 Features Not Available with Oracle Database Standard Edition or Standard Edition One.
    Cheers, APC

  • Insert Edit and Overwrite Edit Crashes This One Premiere Project

    Hi All,
    I'm working off of many premiere projects, and one crashes when I use the insert edit and override edit button. At first it was only if I used the keyboard command, but now it happens when using the mouse. I'm afraid the project file is corrupted.
    Has anyone come across this issue? The workarounds I have tried include copying and pasting sequences to a new project, copying contents of a sequence into a new sequence, and importing an XML to a new project (which I thought would work, but I got an error message: Premiere experienced a generic message).
    Any thoughts? I'm kind of stumped and don't want to lose a  few days rebuilding the project file.

    Thanks for the response, Mark. And giving the version makes sense...an obvious oversight on my part
    Anyway, I was running 2014 and I actually ended up uninstalling and then reinstalling. Guessing that I was at 2014.0.0, but now I have 2014.0.1.  Since doing that, I haven't experienced the crashes. And, yes, it was with merged clips.
    HOWEVER, I still can't target audio only and insert/overwrite merged clips without jumping through a couple hoops. Works fine if I'm targeting video only with merged clips, or if I'm targeting audio only with any kind of clip (merged or non-merged). But audio only with merged? No deal.
    In order to make that work, I have to go to the merged clip in the project window, select Modify, and then futz with the the audio channels. See screen shot below. Audio tracks 1 and 2 are from my DSLR. Tracks 3 and 4 are my "good" audio. Is this something that I should need to do for each merged clip to make them work?

  • A series of video files (0001.MTS to 0005.MTS) were imported into premiere, when moved to timeline premiere combined them and made them look like one long clip nmed 0001.MTS. Multiple motion edits and opacity edits were made. When project manager moved th

    A series of video files (0001.MTS to 0005.MTS) were imported into premiere, when moved to timeline premiere combined them and made them look like one long clip named 0001.MTS. Multiple motion edits and opacity edits were made. When project manager moved the project, the actual video content of 0002.MTS to 0005.MTS was missing(source clips are still there but they were playing and working as part of that 0001.MTS timeline clip before). Those parts of the 0001.MTS clip in the timeline were Danger Striped and can be relinked but now have no edits anymore. The edits are apparently only linked with the original 0001.MTS source clip but extend beyond the actual range of the actual source clip. At the time I thought it was weird that premiere displayed the whole string of clips as one (with one name and no breaks) but it all works in the original project file but cannot be transferred to another location without multiple clips showing Danger Stripes.I need to move it and preserve the dozens of motion and opacity edits linked to the apparently oversized timeline clip. HELP!! any ideas?
    I did not nest any clips or sequences, premiere just seemed to combine the clips under one name when I moved them to timeline.
    I am using CS5.

    A series of video files (0001.MTS to 0005.MTS) were imported into premiere, when moved to timeline premiere combined them and made them look like one long clip named 0001.MTS. Multiple motion edits and opacity edits were made. When project manager moved the project, the actual video content of 0002.MTS to 0005.MTS was missing(source clips are still there but they were playing and working as part of that 0001.MTS timeline clip before). Those parts of the 0001.MTS clip in the timeline were Danger Striped and can be relinked but now have no edits anymore. The edits are apparently only linked with the original 0001.MTS source clip but extend beyond the actual range of the actual source clip. At the time I thought it was weird that premiere displayed the whole string of clips as one (with one name and no breaks) but it all works in the original project file but cannot be transferred to another location without multiple clips showing Danger Stripes.I need to move it and preserve the dozens of motion and opacity edits linked to the apparently oversized timeline clip. HELP!! any ideas?
    I did not nest any clips or sequences, premiere just seemed to combine the clips under one name when I moved them to timeline.
    I am using CS5.

  • Personal Edition and Enterprise Edition

    What's the difference between personal edition and enterprise Edition? Is there any limitation,especially connection limitation, for the personal edition?
    Of course, price is one of the differences :). But I'm wonderring the difference making the price difference :).
    Thanks

    The differences are explained in this white paper
    http://www.oracle.com/technology/products/database/oracle10g/pdf/twp_general_10gdb_product_family_0104.pdf

  • Migration from Enterprise edition to Standard Edition

    Hi,
    DB version :10.2.0.4 (production database)
    OS version :windows 2003 Std edition 64 bit.
    how to migrate database from enterprise edition to standard edition.
    1)cold backup will be sufficient?
    or any way to migrate with best way> will be any impact after migrating.
    will be appreciated fro right answers.
    Thanks

    hi sb,
    Thanks for your response.
    1)i did clone database from enterprise edition to standard edition, no invalid objects found ( from production to development)
    2) i did restoration using RMAN backupsets from ENterprise edition to standard edition , no invalid objects found (from production to development)
    3) i did cold backup from enterprise edition to standard edition , no invalid objects found ( test machine)
    i already checked this before, but here mentioned as to use traditional export / import instead of expdp/impdp. ?
    Thanks

Maybe you are looking for