CFPresentation and Standard Edition Limitation

What is the limitation of CFPresentation with the standard
edition of CF8? Cause it says "Limited" on the Adobe site as a
feature of CF8
Thanks
Cedric

Have you tried it? I just browsed through its syntax
description, my concern is on the "duration" attribute, that is,
different users may have different reading speed/viewing habit,
it's hard to predict, one option would be the slide would stop upon
user intervention such as a click, need to play with it to know
outcome.

Similar Messages

  • 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

  • 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.

  • 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]

  • 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

  • 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

  • Oracle RAC and Standard Edition 11g R2

    Hi,
    Our application is tested with Oracle 11g r2 enterprise edition on RAC (inhouse).
    A customer is asking whether he can use Oracle 11g r2 standard edition on RAC.
    I need a gut feel on this, as our application does not use any of the enterprise edition features. Also our application has been successfully tested with oracle 11g r2 standard edition on single instance.
    This is a big account and i need reliable answer.
    Thanks in advance,
    Krishna

    Hello,
    Yes, it is possible to have Oracle RAC with 11gR2 standard edition.
    You can take a look at this http://docs.oracle.com/cd/E11882_01/license.112/e10594/editions.htm
    Krishna Nazare      
    Newbie
    Handle:      Krishna Nazare
    Status Level:      Newbie
    Registered:      Jul 11, 2011
    Total Posts:      16
    Total Questions:      8 (8 unresolved)
    Name      Krishna
    Location      Bangalore
    Occupation      Software Architect Please follow the forum etiquette by marking your questions as answered by providing appropriate points if you feel that they have been answered. Please keep the forum clean !!

  • Differences between ( E. Edition,Standard E. ) and ( Standard Edition One )

    Hi friends
    What are the limits that I have to carry my EE or SE database to SEO regarding the internal objects of the database ?
    If there are documents about it, it would be excellent for the research I am doing... thanks

    Thanks for the answers guys. I'll read the information.
    At my enterprise has a Primary Database in SE and according some information.... We can acquire SEO for the secundary to implement Standby or Data Guard. The SEO is going to support all the features and components of my SE ?. Do you have any document or article that touchs this theme ?
    Thanks one more time.
    Bye

  • Differences between standard and enterprise editions

    I have applications deployed to both AS7 standand and enterprise editions.
    For development we have dynamic reload turned on. So when I touch a file .reload in the expanded application directory $ASHOME/domains/domainname/instancename/applications/j2ee-apps/appname/.reload the application gets reloaded.
    In platform and standard editions this only reloads the application whose directory the .reload file is in.
    However, in enterprise edition, every application seems to get reinitialized.
    I could be mistaken as we have different applications deployed to both environments. The applications on enterprise edition might just be logging more information during initialization.
    Or maybe there is a configuration option that allows individual applications to be reloaded versus all the applications being reloaded.
    Has anyone else run across this?

    Hi,
    I think you are talking about Database versions, so this is not the right forum since this is Forms's forum.
    Look at this link:
    http://www.orafaq.com/faq/what_is_the_difference_between_the_enterprise_standard_and_personal_editions_of_oracle
    Hope it helps you :)
    Regards
    Carlos

  • What is limit of database size in oracle 10g standard edition/edition one

    Hai All,
    What is the limit of database size in oracle 10g standard edition and standard edition one.. I see the white paper of oracle says that the limitation is 500 GB. This limitation is correct.? if correct then what happened after the limit..?
    Please help?
    Shiju

    What white paper would that be? I can't see any limit in the Oracle Database 10g Editions comparisons.
    C.

  • 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.

  • Differences between Oracle 10g Enterprise and Standare editions

    Can someone please direct me to a link where I can find the differences between Enterprise and standard editions? Thanks in advance.

    10g provides many self-tuned festures like SGA. Browser based DBcontrol, AWR, ADDM, advisors ....

  • Difference Between Enterprise and Personal Editions?

    Hi All,
    I want to install Oracle 9i on Window XP Pro. I am wondering what is the difference between the Enterprise Edition and the Personal Edition? Do they both come with the Enterprise Manager clients that I am used to using?
    Any advice much appreciated.

    Hi Alex,
    You can get the information from the "doc" directory in the "disk1". If case you do not have it, I had copy it here for you. Hope it can help you to know more about the differences before choosing which one to install. I too have the tough time deciding until I came across this information.
    Enterprise Edition: If you select this type, Oracle Universal Installer installs a preconfigured seed database, networking services, licensable Oracle Options, database environment tools, the Oracle Enterprise Manager framework of management tools, including Console, Management Server, and Intelligent Agent, Oracle utilities, and online documentation. It also installs those products most commonly used in data warehousing and transaction processing environments.
    Standard Edition: If you select this type, Oracle Universal Installer installs a preconfigured seed database, networking services, Oracle Enterprise Manager framework of management tools, including Console, Management Server, and Intelligent Agent, and Oracle utilities.
    Personal Edition: If you select this type, Oracle Universal Installer installs the same software as the Enterprise Edition installation type, but supports only a single user development and deployment environment that requires full compatibility with Enterprise Edition and Standard Edition.
    Best Regards,
    William Loong
    Hi All,
    I want to install Oracle 9i on Window XP Pro. I am wondering what is the difference between the Enterprise Edition and the Personal Edition? Do they both come with the Enterprise Manager clients that I am used to using?
    Any advice much appreciated.

  • Only SOME Streams Features Available in Standard Edition?

    hi everyone,
    I have some installations using 10g Standard and 1 installation that is 10g Enterprise edition.
    I found this quote in another post: "Oracle Streams Message queuing and apply features of Oracle Streams are available in Standard Edition and Standard Edition One, but change capture is available only in Enterprise Edition. "
    I have a couple of questions about which edition can do what.
    1. If I want to use Streams to replicate data to my alternate/failover server, can I do that with the Standard Edition or only with Enterprise Ed?
    2. With Standard Edition, how could Streams be used - what are some good uses - alert notification?, message queueing ?
    Thanks very much. John

    Thanks for the compliments!
    With Streams you can also transform the data. For example, we use it to load our data warehouse. Now if you start transforming the data (using dml handlers or custom rule base transformations) the performance degrades.
    You can use streams for several purposes: auditing/upgrades/etc, anything that can be done with transaction data captured at a source database. You can get very creative with all the available options offered by streams.
    I encourage you to read the manuals. I know they are big but it is an amazing technology in my opinion.
    Cheers

Maybe you are looking for