Practical use of Flashback Archive in Oracle 11g

Hi all,
<br>
<br>
With Oracle 11g, I have a conclusion on Flashback Archive and I'd like to know your opinion about it.
<br>
<br>
With the following limitation:
<br>
"For a table with Flashback Archiving enabled, you cannot issue the following DDL commands: <br>
ALTER TABLE (except adding a column), DROP TABLE, RENAME TABLE, TRUNCATE TABLE"
<br>
<br>
<b>I think Flashback Archive object cannot practically replace auditing mechanism we used to use in the database <br>
level by creating triggers on the audited table. What do you think?</b>

Hi all,
<br>
<br>
With Oracle 11g, I have a conclusion on Flashback
Archive and I'd like to know your opinion about it.
<br>
<br>
With the following limitation:
<br>
"For a table with Flashback Archiving enabled, you
cannot issue the following DDL commands: <br>
ALTER TABLE (except adding a column), DROP TABLE,
RENAME TABLE, TRUNCATE TABLE"
<br>
<br>
<b>I think Flashback Archive object cannot
practically replace auditing mechanism we used to use
in the database <br>
level by creating triggers on the audited table. What
do you think?</b>I think it depends on the app. ALTER TABLE is a fairly significant restriction I'd imagine for most people. On the other hand most user defined auditing answers the 'what happened here?' question that auditors ask, but not the 'what did the data look like then?' associated question (except by hard graft).
Niall Litchfield
http://www.orawin.info/

Similar Messages

  • Flashback archive in oracle 11g

    dear all,
    i am trying to make flashback archive using tablespace users
    create flashback archive ftst tablespace users retention 5 year;
    oracle returns error
    ora-55603 invalid flashback archive command
    and when i try to make the same thing using newly created tablespace things go fine,
    what are the things in users tablespace that prevent the flashback archive to be done here?
    another thing , any one knows if the 11g new feature can be done using enterprise manager or not?
    thx for reading,

    Hi all,
    <br>
    <br>
    With Oracle 11g, I have a conclusion on Flashback
    Archive and I'd like to know your opinion about it.
    <br>
    <br>
    With the following limitation:
    <br>
    "For a table with Flashback Archiving enabled, you
    cannot issue the following DDL commands: <br>
    ALTER TABLE (except adding a column), DROP TABLE,
    RENAME TABLE, TRUNCATE TABLE"
    <br>
    <br>
    <b>I think Flashback Archive object cannot
    practically replace auditing mechanism we used to use
    in the database <br>
    level by creating triggers on the audited table. What
    do you think?</b>I think it depends on the app. ALTER TABLE is a fairly significant restriction I'd imagine for most people. On the other hand most user defined auditing answers the 'what happened here?' question that auditors ask, but not the 'what did the data look like then?' associated question (except by hard graft).
    Niall Litchfield
    http://www.orawin.info/

  • Not able to create a database link using the database gateway of oracle 11g

    HI,
    While trying to create a database link to SQL server from Oracle ,using the database gateway provided with 11g, i am getting the following error while making use of it in selecting columns from tables :
    Error starting at line 1 in command:
    select * from test1@dblink
    Error at Command Line:1 Column:20
    Error report:
    SQL Error: ORA-28513: internal error in heterogeneous remote agent
    ORA-02063: preceding line from DBLINK
    These are the steps i have followed for setting up:
    1.Ran the set up for the Database gateway.and mentioned the SQL server name and database .ALos set up a listener.
    2. Added the following in the Listener.ora of Oraclehome 11/NETWORK/ADMIN:
    LISTENER_SQL_FCD =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST =localhost) (PORT = 1541)
    SID_LIST_LISTENER_SQL_FCD =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME=dg4msql)
    (ORACLE_HOME= D:\app\20537\product\11.1.0\db_3)
    (PROGRAM=dg4msql)
    3.Added the following in tnsnames.ora inOracle home/NETWORK/ADMIN:
    dg4msql=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1541))
    (CONNECT_DATA=(SID=dg4msql))
    (HS=OK)
    4. Following is the entry in initdg4msql.ora in C:\product\11.1.0\tg_5\dg4msql\admin:
    HS_FDS_CONNECT_INFO=10.148.45.242:1433//SalesDemo
    HS_FDS_TRACE_LEVEL=DEBUG
    HS_FDS_RECOVERY_ACCOUNT=RECOVER
    HS_FDS_RECOVERY_PWD=RECOVER
    5. Created the database link :
    create database link dblink
    connect to "sa" identified by "<pswd>"
    using 'dg4msql'
    On running :select * from test1@dblink i get the following error:
    Error starting at line 1 in command:
    select * from test1@dblink
    Error at Command Line:1 Column:20
    Error report:
    SQL Error: ORA-28513: internal error in heterogeneous remote agent
    ORA-02063: preceding line from DBLINK
    Is there any issue with the set or definition that I get the above error?

    What is the version of the Oracle database in which you have specified/and use the database link?
    If it is for example 10.2.0.3.0 you need to apply the mandatory patch for RDBMS bug 5965763 first before being able to use an 11g gateway. Have a look at MetaLink note 457808.1 for details about this patch.
    Regards,
    Ed

  • Produce Message to AQ Queue using standalone Java client in Oracle 11g FMW

    I have a Java client that creates a TextMessage and tries to post it to AQ queue using the server context. Please find the sample code below:
    QueueSession jmsSession = null;
    QueueConnection queueConnection = null;
    try {
    Properties parm = new Properties();
    parm.setProperty("java.naming.factory.initial","weblogic.jndi.WLInitialContextFactory");
    parm.setProperty("java.naming.provider.url","t3://10.209.125.23:8001");
    parm.setProperty("java.naming.security.principal","weblogic");
    parm.setProperty("java.naming.security.credentials","weblogic1");
    Context ctx = new InitialContext(parm);
    System.out.println("Weblogic Initial Context obtained : " + ctx);
    //DataSource ds = (DataSource)ctx.lookup(datasourceJNDI);
    QueueConnectionFactory queueConnfactory = (QueueConnectionFactory)ctx.lookup(QCF) ;
    System.out.println("QueueConnectionFactory from QCF jndi lookup : " + queueConnfactory);
    queueConnection = queueConnfactory.createQueueConnection();
    System.out.println("QueueConnection obtained : " + queueConnection);
    //Make QueueSession
    jmsSession = queueConnection.createQueueSession(true, Session.AUTO_ACKNOWLEDGE);
    System.out.println("QueueSession obtained : " + jmsSession);
    //Start QueueConnection else no messages will be delivered
    queueConnection.start();
    Queue aqQueue = (Queue)ctx.lookup(QUEUE_JNDI);
    System.out.println("Queue obtained from lookup: " + aqQueue);
    QueueSender sender = ((AQjmsSession)jmsSession).createSender(aqQueue);
    System.out.println("QueueSender obtained: " + sender);
    File file = new File("C:
    Documents and Settings\\Apara\\Desktop\\EH_Mig\\development
    Resub.xml");
    XmlObject object = XmlObject.Factory.parse(file);
    String payloadString = object.toString();
    System.out.println("Message to be sent : " + payloadString);
    Message message = jmsSession.createTextMessage(payloadString);
    sender.send(message);
    jmsSession.commit();
    System.out.println("Message sent : " + message.toString());
    catch(Exception ex) {
    ex.printStackTrace();
    finally {
    if (jmsSession != null)
    jmsSession.close();
    if (queueConnection != null)
    queueConnection.stop();
    queueConnection.close();
    The code gives a runtime exception when it reaches the statement sender.send() as below :
    weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception
    at weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_1032_WLStub.physicalConnectionWithin(Unknown Source)
    at weblogic.jdbc.rmi.SerialConnection_weblogic_jdbc_rmi_internal_ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_1032_WLStub.physicalConnectionWithin(Unknown Source)
    at oracle.sql.TypeDescriptor.setPhysicalConnectionOf(TypeDescriptor.java:817)
    at oracle.sql.TypeDescriptor.<init>(TypeDescriptor.java:622)
    at oracle.sql.StructDescriptor.<init>(StructDescriptor.java:317)
    at oracle.sql.StructDescriptor.createDescriptor(StructDescriptor.java:200)
    at oracle.sql.StructDescriptor.createDescriptor(StructDescriptor.java:168)
    at oracle.sql.StructDescriptor.createDescriptor(StructDescriptor.java:137)
    at oracle.jpub.runtime.MutableStruct.toDatum(MutableStruct.java:113)
    at oracle.jms.AQjmsGenMessage_C.toDatum(AQjmsGenMessage_C.java:46)
    at oracle.jms.AQjmsProducer.jdbcEnqueue(AQjmsProducer.java:1027)
    at oracle.jms.AQjmsProducer.send(AQjmsProducer.java:747)
    at oracle.jms.AQjmsProducer.send(AQjmsProducer.java:517)
    at co.uk.morrisons.errorhospital.util.QueueTest.sendMessageUsingServerContextAndQCF(QueueTest.java:245)
    at co.uk.morrisons.errorhospital.util.QueueTest.main(QueueTest.java:293)
    Caused by: java.rmi.MarshalException: error marshalling return; nested exception is:
    java.io.NotSerializableException: oracle.jdbc.driver.T4CConnection
    at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
    at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:223)
    ... 15 more
    Caused by: java.io.NotSerializableException: oracle.jdbc.driver.T4CConnection
    at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1156)
    at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:326)
    at weblogic.rjvm.MsgAbbrevOutputStream.writeObject(MsgAbbrevOutputStream.java:618)
    at weblogic.utils.io.ChunkedObjectOutputStream.writeObject(ChunkedObjectOutputStream.java:63)
    at weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_WLSkel.internalInvoke2(Unknown Source)
    at weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_WLSkel.internalInvoke1(Unknown Source)
    at weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_JTAConnection_weblogic_jdbc_wrapper_XAConnection_oracle_jdbc_driver_LogicalConnection_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:589)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:477)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:473)
    at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    I am using a ForeignServer configuration which is targeted to a JMS Server. This a Weblogic 10.3.2 feature. Please see if you can help me to enqueue the message.
    Thanks,
    Aparajeeta

    It finally got resolved with help from Edwin Biemond and Oracle docs. I have made a blog out of it @
    http://technicknacks.blogspot.com
    Edited by: oraaps on Mar 26, 2010 5:33 PM

  • How to store and use the BLOB data in Oracle 11G?

    Recentlly,when I tested the Blob data in Oracle11G ,I found that there were too many differences between the SQL
    Server and the Orcale on the capabilities.In Orcale ,I created the table like this:
    create table point
    xid number(10) primary key,
    North number(30,15) default null,
    West number(30,15) default null,
    South number(30,15) default null,
    East number(30,15) default null,
    Area number(30,15) default null,
    Len number(30,15) default null,
    Geometry BLOB default null
    organization index overflow
    tablespace "Tab1"
    lob (Geometry) store as securefile
    tablespace "Tab1"
    enable storeage in row
    chunk 4096
    pctversion 20
    nocache
    no logging
    compress high
    and I stored 10248 rows in this table,
    then ,I used "select geometry from point where xid > ? and xid < ?" as the testing SQL langauage in Java and the
    programme runed once per 5000 pieces of memory.
    the total time used in Orcale is twice more than that in SQLServer.In my Application programs, once the same
    orders runed,their differences were three times and more.As usually,the capability of Orcale is more strongger
    than the SQLServer.Why?

    select geometry from point where xid > ? and xid < ?"Does an index on XID exist?
    Are statistics current for table & indexes?

  • Use of q operator in oracle 11g

    Hi,
    I am looking for following data Rewards–ALL (UK/IE,US,Germany & China). even though i have used q operator. when report is generated using following query
    and UTL_FILE in excel sheet it show following data
    Rewards–ALL (UK/IE,US,Germany & China)here is the query. sql developer worksheet result tab shows Rewards–ALL (UK/IE,US,Germany & China) though
    SELECT 'c' temp,q'#Rewards–ALL (UK/IE,US,Germany & China)#'
    FROM memberhistory mlhthanks
    sandy
    Edited by: Sandy310 on Apr 27, 2010 5:10 PM
    Edited by: Sandy310 on Apr 27, 2010 5:10 PM

    First, it appears you have an illegal ASCII character after REWARDS - the "–" character.
    Did you SET ESCAPE ON ?
    Here is what I did after changing out the illegal character in SQL Developer, I executed it as a script.
    set escape on
    SELECT  'c' temp
            ,q'[Rewards-ALL (UK/IE,US,Germany \& China)]'  search_string
    FROM
             dual   ;
    TEMP SEARCH_STRING                         
    c    Rewards-ALL (UK/IE,US,Germany & China)I don't know why you are using the q operator. It is designed to eliminate the need for doubling up single quotes - the string you have does not have any quotes.

  • How to Create Manual Standby for a Oracle 11g RAC with ASM to Single Instan

    Hi All,
    I have a task to configure a Single Instance Standby Database with ASM for 2-node Primary RAC+ASM database.
    Version using : 11.1.0.6 Oracle 11g --- *" STANDARD EDITION "* Please note datagaurd will not be supported in standard edition.
    Primary database - 2 -Node RAC using ASM storage (All datafiles, redologs, controfile and archive logs)
    Need to setup a single instance standby database manually and than using scripts to transfer the archive logs from primary server to standby server to do recovery time to time.
    Please let me know if there are any configuration document(s) which can help me to set the manual standby? or need your kind help to give your valuable ideas how to go in above situation.
    Thanks in advance

    Niall Litchfield wrote:
    El DBA wrote:
    Well if the archive logs are stored in ASM on the primary nodes, you almost definitely want to be using RMAN to access them. Then to transfer between primary and standby there are many options, this is essentially the step that Data Guard takes care of - so if you (and I) are running Standard Edition, this is the part to "worry" about.
    I'm not really sure what you mean by this:
    As in standard edition the archive destination will be on ASMI don't think the Edition of Oracle (Standard or Enterprise) dictates where and how you store your archive logs, but it's possible I've misunderstood what you mean...SE dictates that database storage for RAC will be ASM, including archive log files. Anything else is not officially supported. I haven't tested but it may be that you can use LOG_ARCHIVE_DUPLEX_DEST to specify a local filesystem for archive log files as well.
    If that doesn't work you'll have to script rman "backup as copy" jobs regularly and then transport the results of that.
    Niall Litchfield
    http://www.orawin.info/
    By the way, it seems Robert has been pretty helpful, it's polite to give him some points dude. And since this is your thread, not mine, give him a "helpful" from me too :p
    El DBA
    Incidentally if you are forced down the RMAN backup as copy route then this will likely throw your current backup retention strategy somewhat, you'll need to think carefully about when an archivelog can be deleted following backup, how many times it might be backed up and so on. I do understand, and have argued for, the use of SE RAC. I also understand and have argued for and implemented manually managed standby a number of times. However by the time your primary database is a RAC instance and you need a standby for DR etc then you really have to look very seriously at whether Standard Edition is still the right investment or not. You will be spending a lot of DBA time managing and troubleshooting this, and you will find that it is less reliable than the off the shelf solution. I suspect that you are very close to the point where an EE installation becomes a worthwhile investment here.
    Niall Litchfield
    http://www.orawin.info/

  • Oracle 11g advantages for performance

    Hello,
    I am doing test of Client side result set cache on oracle 11 g rel2 ,O/S- RHEL
    i am doing test as below on 2 Oracle 11g rel2 test servers on RHEL
    one oracle 11g rel2 instance is used as server1,from other oracle 11g rel2 server2, i am running queries connecting to server1 through sqlplus,listener(tnsnames )
    i run query few times without any client cache settings then
    i have set init.ora paras for oracle 11g rel2 for client result cache,cache size/cache lag
    i run the same query few times
    in both the cases after each run i am noting statistics
    select * from V$RESULT_CACHE_OBJECTS;
    select * from V$CLIENT_RESULT_CACHE_STATS;
    select * from gv$cpool_conn_info;
    also autotrace,plan etc
    but after using cache this views are getting poplulated ,autiotrace plan shows cache is used
    but i cant see any improvement in performance after using client cache like speed,reduce network trip, etc
    in fact without using cache/with no hint ,query executes faster
    let me know if i am missing something,i believe sqlplus internally using OCI
    thanks

    >
    I tested with custom code using java/jdbc thin driver ,connecting same as between 2 oracle 11g2 instance 1 as client other server,running code calling queries from client connecting to server
    >
    Unless you plan to provide the information ask for about what it is you are doing there really isn't any point in providing status updates that: you test this, you tested that. You made several statements about what you were doing
    >
    i have set init.ora paras for oracle 11g rel2 for client result cache,cache size/cache lag
    i run the same query few times
    in both the cases after each run i am noting statistics
    select * from V$RESULT_CACHE_OBJECTS;
    select * from V$CLIENT_RESULT_CACHE_STATS;
    select * from gv$cpool_conn_info;
    also autotrace,plan etc
    >
    and were asked to provide specific information that you haven't provided nor have you provided the query.
    >
    You say you are doing a bunch of things
    But you don't post any of those results so we can see what it is you are looking at.
    No one can comment on things they can't see.
    >
    You have to be using OCI for client side caching so if you use the Java thin driver but don't use OCI there won't be any cacheing. There also won't be any if it is not enabled or if the query has certain constraints as listed in the doc
    http://docs.oracle.com/cd/B28359_01/appdev.111/b28395/oci10new.htm#CHDGGFEF
    >
    Queries that are not Cached
    There are queries that are not cached on the OCI client even if the result cache hint is specified. Such queries may be cached on the database if the server result cache feature is enabled (see Oracle Database Concepts, "SQL Query Result Cache" for more information). If a SQL query includes any of the following, then the result set of that query is not cached in the OCI client result cache:
    •Views
    •Remote objects
    •Complex types in the select list
    •Snapshot-based or flashback queries
    •Queries executed in a serializable, read-only transaction, or inside a flashback session
    •Queries that have PL/SQL functions in them
    •Queries that have VPD policies enabled on the tables
    >
    This Oracle-Developer.net article author doesn't seem to have any trouble caching results.
    http://www.oracle-developer.net/display.php?id=503

  • Oracle 11g dumpfile to be imported in 10g

    Hi ,
    I am using windows server 2003 and oracle 11g R1 .
    There is an old dump file taken using oracle export utility whch I need to import in oracle 10g R2 .
    Command I am using in 10g for doing this is
    imp tkcsowner/tkcsowner@wfcdbtst file=D:\Backups\Hold_Backups\wfcdbtst_export.dmp log=D:\Backups\Hold_Backups\wfcdbtst_export.log fromuser=tkcsowner touser=tkcsowner statistics=none
    But , it is throwing me the below error ..
    IMP-00010: not a valid export file, header failed verification
    IMP-00000: Import terminated unsuccessfully
    If I use the same dump file in 11g , it imports fine .
    Can , someone tell me if it is not possible to import an 11g dumpfile to 10g , if possible then please lete me know the steps . Thanks

    sourav wrote:
    Hi ,
    I am using windows server 2003 and oracle 11g R1 .
    There is an old dump file taken using oracle export utility whch I need to import in oracle 10g R2 .
    Command I am using in 10g for doing this is
    imp tkcsowner/tkcsowner@wfcdbtst file=D:\Backups\Hold_Backups\wfcdbtst_export.dmp log=D:\Backups\Hold_Backups\wfcdbtst_export.log fromuser=tkcsowner touser=tkcsowner statistics=none
    But , it is throwing me the below error ..
    IMP-00010: not a valid export file, header failed verification
    IMP-00000: Import terminated unsuccessfully
    If I use the same dump file in 11g , it imports fine .
    Can , someone tell me if it is not possible to import an 11g dumpfile to 10g , if possible then please lete me know the steps . Thanksis the export taken using exp or expdp?

  • Oracle 11g installation on Oracle Enterprise Linux, 64bit version.

    Hi
    I want to install oracle 11g on Oracle Enterprise Linux, 64bit version.
    Do I need to set kernel parameters in this operating system, since it is not standart Linux editions.
    or
    Can I have a step by step documentation for installing oracle 11g on this operating system?

    Hello,
    Yes you do need to set kernal parameters in order to meet pre-requisites, otherwise your installation will fail and oracle might not work or unstable.
    Here is the best place to find out stepwise installation instruction and kernel parameter configuration
    Quick Installation Guide*
    http://download.oracle.com/docs/cd/B28359_01/install.111/b32285/toc.htm
    Kernel parameter configuration*
    http://download.oracle.com/docs/cd/B28359_01/install.111/b32285/toc.htm#CEGFBCFD
    You can use this tutorial to install oracle 11g*
    http://www.oracle.com/technology/obe/11gr1_db/install/dbinst/dbinst.htm#o
    Regards

  • Anyone inserted data directly from Oracle 11g to MySQL?

    Hi There,
    We work mainly on Oracle 11g. However, there is a requirement to now connect to an external MySQL database from our company's Oracle Database. Would be trying to do this for the first time. The process would be to download the data using PL/SQL from the ORacle 11g DB and then insert the data into the MySQL DB table. Had a few questions,
    1. Are there any known issues with connections between ORacle as source and MySQL as target. Anything that needs to be kept in mind?
    2. How do we send the data to MySQL, I mean in PL/SQL we can have the procedure create the insert statements. But can we directly fire the insert on MySQL ? If yes, any suggestions on what the commands would be?
    3.Any way to figure out if the insert was successful?
    4. We might also have to do other operations like update/delete etc.
    5. Any possible reference or sample code on this would also help.
    Thanks

    Well, the simplest and most direct approach would be to create a java function in the database to perform the operation and call it from pl/sql. I've done it before and there are examples out there and its a pretty straight-forward process.
    A quick example from [this website|http://w2.syronex.com/jmr/edu/db/oracle-and-java]
    import java.io.*;
    import java.sql.*;
    public class OraThin {
      public static void main(String[] args) {
        try {
          Connection con=null;
          Class.forName("oracle.jdbc.driver.OracleDriver");
          con=DriverManager.getConnection(
            "jdbc:oracle:thin:@machine_name:1521:database_name",
            "scott",
            "tiger");
          Statement s=con.createStatement();
          s.execute("
            INSERT INTO BOOKS VALUES
            'A Tale of Two Cities',
            'William Shakespeare',
            4567891231,
            '5-JAN-1962'
          s.close();
          con.close();
       } catch(Exception e){e.printStackTrace();}
    }Check out Oracle's Java tutorial at http://docs.oracle.com/javase/tutorial/jdbc/basics/storedprocedures.html for more in-depth information.
    If you're going to be doing this for more than a handful of tables under very controlled circumstances keeping it synchronized is going to be a mess, however.
    Edited by: Bill Haverberg on Jun 20, 2012 8:05 AM

  • Oracle 11g driver to be configured to weblogic9.2

    Hi All,
    I need oracle 11g driver to be configured to weblogic9.2...
    Surfing for this found we need to add ojdbc5_g.jar; but no luck.
    Can u advise here if u have any idea?
    Thanks in advance.

    sourav wrote:
    Hi ,
    I am using windows server 2003 and oracle 11g R1 .
    There is an old dump file taken using oracle export utility whch I need to import in oracle 10g R2 .
    Command I am using in 10g for doing this is
    imp tkcsowner/tkcsowner@wfcdbtst file=D:\Backups\Hold_Backups\wfcdbtst_export.dmp log=D:\Backups\Hold_Backups\wfcdbtst_export.log fromuser=tkcsowner touser=tkcsowner statistics=none
    But , it is throwing me the below error ..
    IMP-00010: not a valid export file, header failed verification
    IMP-00000: Import terminated unsuccessfully
    If I use the same dump file in 11g , it imports fine .
    Can , someone tell me if it is not possible to import an 11g dumpfile to 10g , if possible then please lete me know the steps . Thanksis the export taken using exp or expdp?

  • Set periodically database (oracle 11g) statistics updates in EP7.0

    Hello gurus,
    I am trying to make database statistics update periodically in SAP standalone J2EE engine, anyone plz tell me the process.
    I am using netweaver 7.0 with oracle 11g database in solaris sparc
    if there is any script for stat updates plase post that script.
    Thanks in advance

    This is certainly a major problem. The issue is rather simple, SQL Developer is only retrieving as many rows as are specified in the preferences "SQL Array Fetch Size" (under preferences, database, advanced). A simple query on a table with 10,000 rows will only give stats on at most a retrieval of 500 rows since this is the max setting for the array fetch size. I'm not buying the argument that we don't want to wait for the entire result set. I suppose if your are only interested in seeing if the query is syntactically correct then not waiting for the entire set is fine. But the whole idea of AUTO TRACE is to see the statistics of the entire run so you can know what resources were used to compete the SQL. Seeing only the resources use to get the first set of rows is very misleading. And if you change the array fetch size to be smaller, your SQL will appear to run "better" when in reality you don't know who well it's running at all.
    We need to be able to have AUTO TRACE retrieve all rows, not just the setting of array fetch size. There is currently no way to get AUTO TRACE to show the stats of a compete run.

  • How to backup flashback data archive enabled tables -oracle 11g?

    1) Whether the flashback data archive can be backed up using the following options in oracle? Any pointer from the documentation would be much appreciated.
         RMAN
         Data pump
    2) How to move the flashback data archive table from one database to another? The reason why I am asking this question is that the history data for flashback data archive table is managed by undo tablespace. In this case, if I simply export the flashback data archive enabled tables to another database, will I able to view the history information?
    Regards,
    Richard

    Hi Morgan,
    Thanks for your response. Our intention is that to configure the total recall feature in the reporting instance for historical data view. Let's say , we are mining the changed data from the OLTP instance to reporting instance via logical standby. In this case, the history data will be maintained in the reporting instance?
    Regards,
    Richard

  • Oracle 11g memory_target best practices

    Hi expert.
    I'll use memory_target in my oracle 11g enviroment. There is a best practices, or formula, for to choose my memory_target?
    There is a memory_target limit? (for example 128gb)
    Many thanks

    Thanks for the replies.
    I could like know if there are some criteria, or formula, to a correct memory_target set.
    I'm reading the file OracleOLTPonDellEqualLogicPS60x0.pdf
    >
    http://www.google.com/url?sa=t&source=web&cd=1&ved=0CBQQFjAA&url=http%3A%2F%2Fwww.delltechcenter.com%2Fpage%2FSizing%2Band%2BBest%2BPractices%2Bfor%2BOracle%2B11g%2BOLTP%2Bon%2BEqualLogic&rct=j&q=OracleOLTPonDellEqualLogicPS60x0.pdf&ei=7av3TPP_J4yb4Ab_7pnzBg&usg=AFQjCNF9PfDrIP-VkYq_v3qPx03UAdkF9Q&sig2=pAF4A7E-S_FJkQ8jxsiWmw&cad=rja
    >
    that explain the best practices for an Oracle RAC 11g on Dell Server. About the Tuning Parameter I don't undestand very well what's the criteria for to choose the MEMORY_TARGET between 32,40 or 48GB
    Maybe choose what's the correct memory value for my server? I've an machine with X gb of RAM that I can allocate for an oracle istance. There is a fisical limit MEMORY_TARGET?
    Thanks for all suggest.
    Cheers,
    Lain

Maybe you are looking for

  • ColdFusion 10/IIS 7.5 Authorized Access Issue

    I've installed ColdFusion 10 on my Windows VPS, running IIS 7.5. The VPS is managed through Plesk 11. Everything works great if I'm just trying to access an HTML file as shown here: http://broncotime.info. However, if I try to access a .cfm page, I g

  • User settings to access network when logged on as service/batch

    Hi. We have been running Oracle Remote Agent (running external jobs on other host) on some linux-distros and have now started to do it on Windows as well. But when we have setup everything properly, we get an 'Access denied' when trying to access the

  • Create a "DVDmeny" in my iPad 2.

    I want to have a "DVDmeny" in my iPad. I want to show different categories, That is why I need menus, that you can touch on the screen. I have tried with HandBrake without success. It plays but I still can´t controll the meny. Please try to help me.

  • Sbo-common_log.ldf

    running 2007 SBO The above file is now 32GB!!!!! can we take action to delete file and reset back up conditions?

  • Problem in rendering videos direct linked to speed grade.

    hi i'm revanth,i'm facing a problem that all the videos which are direct link to speed grade are not rendering in AME..