Impact of COMAPTIBLE parameter on database

My database version is 10.2.0.4.0 and COMPATIBLE parameter value is 9.2.0.1, When run one select query its shows error
ORA-01652: unable to extend temp segment by 64 in tablespace TEMPTBS2.
But while try to run the same query on database version 10.2.0.4.0 with COMPATIBLE parameter value =10.2.0.3.0, it runs without any error.
Size of tablespace-TEMPTBS2 is same on both database.But Execution plan is differ in both database.
Is it the impact of COMAPTIBLE parameter ?
Edited by: user10540254 on Nov 5, 2008 4:38 AM

Hi,
COMPATIBLE controls the behaviour of interfaces, the available features and specific parameter settings (for instance for the optimizer).
Example 1:
Database 10.2.0.4 with COMPATIBLE=9.2.0
Database uses a 10.2.0.4 oracle kernel with all 10.2.0.4 code - but is parameterized and has just features available like in 9.2.0
Example 2:
Database 10.2.0.4 with COMPATIBLE=10.2.0.3
Database uses a 10.2.0.4 oracle kernel with all 10.2.0.4 code - but is parameterized like in 10.2.0.3 - but has all 10.2. features available.
Please see the doc in the Server Reference at otn.oracle.com for more info on COMPATIBLE.
Kind regards
Mike

Similar Messages

  • Negative impact of RATE parameter in RMAN backups.. ?

    Hello all..
    Can u please tel me about the negative impact of rate parameter in RMAN backups.
    Thanks in advance,,
    Thanks & Regards
    Vinay Raj Malla

    Hi Jorgen,
    there's no rule of thumb, because every application is different, also the users behaviour...
    - every user needs an initial amount of memory while logged in (user context
    - then there comes the amount of memory while working with the application
    - then it depends if when for example a query is finished the memory gets freed up or if it will be held in memory
    - the behaviour of the user if he logs out correctly (memory is freed up) or just closes the browser (memory still in use until timeout occurs)
    So the best would be to simply monitor your system with SM04, there you can also click on GOTO -> MEMORY and you'll see the amount of memory for each user. Look what happens when a user works with the application and also what happens when a user closes the browser.
    Regards,
    Pascal
    PS: Please give points for usesful answers

  • Difference between compatible.rdbms  in asm and compatible parameter in database

    Hi Gurus,
    Here i have small doubt. What is the difference between compatible.rdbms and compatible parameter in database.
    We are having 2 node rac on solaris. When i checked at ASM instance level i found compatible.rdbms is set to 10.1.0.0.0 and compatible.asm is 11.2.0.0.0 and compatible parameter in database is set to 11.2.0.0.0.
    Please guide me will it make any difference . Or do i need to change the compatible.rdbms to higher value.
    Thanks & Regards,
    Venkata Poorna Prasad.S

    Hi,
    I think you should check this
    COMPATIBLE.RDBMS :Administering ASM Disk Groups
    COMPATIBLE Oracle :Introduction to the Upgrade Process for Oracle Database
    HTH

  • Impact of job_queue_processes parameter in oracle 10g

    We have recently migrated 9i database to 10g.During business hours we will reduce the parallel jobs running to 5 and during night hours we set to 20.
    After migration to 10g we faced major performance impact.Rest of the parameter we kept same as oracle 9i except obsolete.
    Would change of this parameter will impact this performance?
    What are other parameter we should check?
    Can anyone help me regardng the performance improvement.This causes major business impact.
    Thanks
    Raghavendra

    Hi,
    When does you database becomes perticularly slow? In the day time ot night time?
    What are the scheduled job (apart from queues) on your database? Is there any relation between the scheduled jobs running and your database slowing down?
    Is there a stats collection job? Is it taking same time as before or taking longer?
    Run this SQL,
    select s.username,b.sid, a.STATISTIC#, name, b.value
    from v$sesstat b, v$statname a, v$session s
    where a.STATISTIC# = b.STATISTIC# and ( name like '%physical%' or name like '%consist%' )
    and b.sid = s.sid and s.program not like 'oracle@%'
    order by 2,4
    Do you know about the views I have used in there? You can figure out the session with extensive read, write and select activities from here. Also, you will need to apply your logic there.
    Best luck.

  • How Insert the input parameter to database through Java Bean

    Hello To All..
    I want to store the input parameter through Standard Action <jsp:useBean>.
    jsp:useBean call a property IssueData. this property exist in
    SimpleBean which create a connection from DB and insert the data.
    At run time when I click on submit button servlet and server also show that loggging are saved in DB.
    But when I open the table in Access. Its empty.
    Ms-Access have two fields- User, Pass both are text type.
    Please review these code:
    login.html:
    <html>
    <head>
    <title>A simple JSP application</title>
    <script language=javascript>
    function f(k)
    document.forms['frm'].mykey.value=k;
    document.forms['frm'].submit();
    </script>
    <head>
    <body>
    <form method="get" action="tmp" name="frm">
    Name: <input type="text" name="User">
    Password: <input type="password" name="Pass">
    <input type=hidden name="mykey" value="">
    <input type="button" value="Submit" onclick="f('submit.jsp')">
    <input type="button" value="Issue" onclick="f('issue.jsp')">
    </form>
    </body>
    </html>LoginServlet.java:import javax.servlet.*;
    import javax.servlet.http.*;
    public class LoginServlet extends HttpServlet{
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException{
    try
    String User=request.getParameter("User");
    String Pass=request.getParameter("Pass");
    co.SimpleBean st = new co.SimpleBean();
    st.setUser(User);
    st.setPass(Pass);
    request.setAttribute("User",st);
    request.setAttribute("Pass",st);
    RequestDispatcher dispatcher1 =request.getRequestDispatcher("/"+request.getParameter("mykey"));
    dispatcher1.forward(request,response);
    catch(Exception e)
    e.printStackTrace();
    }SimpleBean.java:package co;
    import java.util.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.util.*;
    public class SimpleBean
    private String User="";
    private String Pass="";
    private String s="";
    public SimpleBean(){}
    public String getUser() {
    return User;
    public void setUser(String User) {
    this.User = User;
    public String getPass() {
    return Pass;
    public void setPass(String Pass) {
    this.Pass = Pass;
    public String getissueData() //method that create connection with database
    try
    System.out.println("Printed*************************************************************");
    getUser();
    getPass();
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    System.out.println("Loading....");
    Connection con=DriverManager.getConnection("jdbc:odbc:simple");
    System.out.println("Connected....");
    PreparedStatement st=con.prepareStatement("insert into Table1 values(?,?)");
    System.out.println("~~~~~~~~~~~~~~~~~~~~");
    String User=getUser();
    st.setString(1,User);
    String Pass=getPass();
    st.setString(2,Pass);
    int y= st.executeUpdate();
    System.out.println(y);
    System.out.println("Query Executed");
    con.commit();
    con.close();
    s=  "Your logging is saved in DB ";
    System.out.println("Your logging is saved in DB *****************");
    return this.s;
    catch(Exception e)
    e.printStackTrace();
    return "failed";
    }submit.jsp:
    This is Submit page
    <html><body>
    Hello
    Student Name: <%= ((co.SimpleBean)request.getAttribute("User")).getUser() %>
    <br>
    Password: <%= ((co.SimpleBean)request.getAttribute("Pass")).getPass() %>
    <br>
    <jsp:useBean id="st" class="co.SimpleBean" scope="request"/>
    <jsp:setProperty name="st" property="User" value="request.getParamaeter("Pass")"/>
            <jsp:setProperty name="st" property="Pass" value="request.getParamaeter("Pass")"/>
       <jsp:getProperty name="st" property="issueData"/>
    <% st.getissueData(); %>
    </body></html>web.xml:<web-app>
    <servlet>
    <servlet-name>one</servlet-name>
    <servlet-class>LoginServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>one</servlet-name>
    <url-pattern>/tmp</url-pattern>
    </servlet-mapping>
    <jsp-file>issue.jsp</jsp-file>
    <jsp-file>submit.jsp</jsp-file>
    <url-pattern>*.do</url-pattern>
    <welcome-file-list>
    <welcome-file>Login.html</welcome-file>
    </welcome-file-list>
    </web-app>Please Help me..

    Dear Sir,
    Accordingly your suggestion I check the SimpleBean class putting the constant values in this bean class.That is Sucessfully Inserted constant values in database.
    Like for example..
    myfirstjavabean.java:
    package myfirstjava;
    import java.io.*;
    import java.sql.*;
    public class myfirstjavabean
    private String firstMsg="Hello world";
    private String s="";
    public myfirstjavabean()
    public String getfirstMsg()
    return firstMsg;
    public void setfirstMsg(String firstMsg)
    this.firstMsg=firstMsg;
    public String getissueData() //method that create connection with database
    try
    System.out.println("Printed*************************************************************");
    getfirstMsg();
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    System.out.println("Loading....");
    Connection con=DriverManager.getConnection("jdbc:odbc:sampleMsg");
    System.out.println("Connected....");
    PreparedStatement st=con.prepareStatement("insert into Table1 values(?)");
    System.out.println("~~~~~~~~~~~~~~~~~~~~");
    String Msg=getfirstMsg();
    st.setString(1,Msg);
    int y= st.executeUpdate();
    System.out.println(y);
    System.out.println("Query Executed");
    con.commit();
    con.close();
    s=  "Your logging is saved in DB ";
    System.out.println("Your logging is saved in DB *****************");
    return this.s;
    catch(Exception e)
    e.printStackTrace();
    return "failed";
    }Vij.jsp:
    <html>
    <body>
    <jsp:useBean id="st" class="myfirstjava.myfirstjavabean" scope="request" />
    <jsp:getProperty name="st" property="firstMsg" />
    <jsp:getProperty name="st" property="issueData" />
    </body>
    </html>These above example sucessfully inserted the Hello World message in database.
    But which value I put user input at run time Its not inserted in database.
    Which is my previous problem that is persist.
    Please Help..

  • Dynamic Parameter Requiring Database Login

    <p><span style="font-size: 7.5pt; font-family: Verdana">Hey All, </span><span style="font-size: 7.5pt; font-family: Verdana">Thanks in advance for any assistance.</span></p><p><span style="font-size: 7.5pt; font-family: Verdana">I created a report in Crystal Reports XI R2 in which I embedded 2 command objects, both of which connect to the same DB. Command_0 performs the SQL to bring back the information which is needed in the report. Command_1 pulls back two fields from a table which are used to fill a dynamic parameter used in command_0. I saved the report to the Crystal Repository which will host the report for our end users. </span></p><p><span style="font-size: 7.5pt; font-family: Verdana">I used the BusinessObjects Enterprise Central Management Console (CMC) to set up default DB connection information for the report so that the end users do not need to have the SQL server authentication information. To make sure everything worked as it had when I was designing the report I logged on to our Crystal Server as if I were and end user and tried to access the report. The report will run exactly as expected if I leave the default information in the dynamic parameter. However when I try to change my dynamic parameter the report prompts me for the SQL server authentication information. <span> </span>It appears as if the default DB connection information I set up using the CMC does not apply to command_1. <span> </span></span> </p><p><span style="font-size: 7.5pt; font-family: Verdana">I need to find a way to get this prompt to stop, I cannot release the SQL authentication information to<span>  </span>all of our end users that would be a security nightmare.</span></p><p><span style="font-size: 7.5pt; font-family: Verdana">Again Thanks for any assistance or advice you can offer.</span></p><p><span style="font-size: 7.5pt; font-family: Verdana">Gary </span></p><span style="font-size: 7.5pt; font-family: Verdana"> </span>

    When you create a dynamic parameter, Business Objects Enterprise Creates few objects for you that essentially creates you a List Of Values (LOV) object for that parameter. LOVs can be created and configured manually from the Business View Manager. You have to specify the database login information in the Data Connection object that your LOV uses.
    Hope that helps.

  • Delete Parameter from Database profile

    Hi forums, I have a doubt. I have SAP BW 7.0 on Windows with Oracle 10.2.0.2.
    The session of GoLive recommend me the following:
    Parameter:
    shared_pool_reserved_size
    Description:
    Part of Shared Pool for large statements     
    Current Value:
    47799336     
    Recommended value:
    Delete this parameter name and value from database profile
    I delete this parameter from SPFILE, I shutdown the DB and restart ok.
    Then I see that this parameter isn't in my SPFILE, but I consult this parameter with SHOW command and it has a value.
    SQL> show parameter shared_pool_reserved_size 
    NAME                                 TYPE        VALUE 
    shared_pool_reserved_size            big integer 8178892 
    Why this parameter is active still in oracle?
    Is normal this action?
    Regards.
    CG

    Hello Gustavo,
    > Why this parameter is active still in oracle?
    > Is normal this action?
    Yes, this is completely normal, because of most / every parameter has its default value. So if you don't specify the parameter in the pfile/spfile, you have the default value which is set or calculated by oracle.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams196.htm#i1133799
    Default value      5% of the value of SHARED_POOL_SIZE
    Regards
    Stefan

  • Parameter insert database connectivity

    I'm currently having a little trouble getting this to work.  Below is a picture of my block diagram, it includes pretty much everything there is to know about my error. As you can see it says it has a syntax error. I'm fairly new to labVIEW but I do quite a bit of database programming. The insert statments looks correct. I would assume the error lies within the values passed into the parameters. I've tried it both with and without single quotes around the values. I would also like to note that the 2 int32 convertsion were thrown in after the error was already there. Was just running out of ideas to try. Incase you can't recognize the VI. We have an open database vi -> parameterized query -> 2 set parameters -> exec query-> free object-> free conn-> close conn. This is the exact same layout for the database connections as is in the database connectivity manual. I've already tested the connection to the database inserting a single value and that worked. For some reason now that I'm spliting the values coming out of the DAQ assistant and made it a parameterized query, it is no longer working. Any help would be great. Thanks.

    [As far as the special characters in the insert
    string I wouldn't believe there would be any unless they some how get
    added automatically. If they are is that a common issue? ]
    I was just making sure human error didn't creep in when the INSERT string was created. It's bit me more than once.
    Have you tried hard coding some Voltage and Current values into the Set Parameter Value VI's? You might also try setting the "auto-detect parameters" in the Create Parameterized Query VI to TRUE and disconnecting the Parameters array constant. Also, check the string "Current" in the Parameter constant array (index 1), make sure there's no space at the end of the name.
    “A child of five could understand this. Send someone to fetch a child of five.”
    ― Groucho Marx

  • Q: Impact of use_current_session parameter of dbms_scheduler.run_job

    On the 11g db that I have access to, I'm seeing different systimestamp value while running plsql block using
    dbms_scheduler.run_job with use_current_session = true and false.
    My job looks like following.
    dbms_scheduler.create_job(
    job_name => 'tk2timestamp_test',
    job_type => 'PLSQL_BLOCK',
    job_action => 'begin insert into tktest values (systimestamp, to_char(sysdate, ''DD-MON-YYYY HH24:MI:SS''), current_timestamp, localtimestamp, dbtimezone, sessiontimezone); end;',
    enabled => true,
    auto_drop => false);
    I see that UTC time was returned as systimestamp if it is called with true and PST if it is called with false.
    In the same session, I get following result with select statement.
    select systimestamp, current_timestamp, localtimestamp, dbtimezone, sessiontimezone from dual;
    SYSTIMESTAMP CURRENT_TIMESTAMP LOCALTIMESTAMP DBTIMEZONE SESSIONTIM
    27-MAR-13 04.05.59.914647 PM +00:00 27-MAR-13 09.05.59.914650 AM -07:00 27-MAR-13 09.05.59.914650 AM +00:00 -07:00
    Can any one let me know why this is happening? Why systimestamp value is not PST if use_current_session = true?

    Thank you again for your response.
    I've got following result.
    SQL> SELECT SYSTIMESTAMP FROM dual;
    SYSTIMESTAMP
    28-MAR-13 07.13.08.556079 PM +00:00
    SQL> SELECT SYSTIMESTAMP AT TIME ZONE 'PDB' FROM dual;
    SELECT SYSTIMESTAMP AT TIME ZONE 'PDB' FROM dual
    ERROR at line 1:
    ORA-01882: timezone region not found
    SQL> SELECT SESSIONTIMEZONE,CURRENT_TIMESTAMP, LOCALTIMESTAMP FROM dual;
    SESSIONTIM CURRENT_TIMESTAMP LOCALTIMESTAMP
    -07:00 28-MAR-13 12.13.41.196653 PM -07:00 28-MAR-13 12.13.41.196653 PM
    BTW, I have two instances returns the result like this if this information helps.
    I've created following table in order to help proving something is changing whether I pass true or false to use_current_session parameter when calling dbms_scheduler.run_job.
    create table tktest (tksystimestamp timestamp(6), tktocharsysdate varchar2(100), tkcurrent_timestamp timestamp(6), tklocaltimestamp timestamp(6), tldbtimezone varchar2(100), tksessiontimezone varchar2(100));
    Then I created job as following. This job inserts systimestamp,sysdate,current_timestamp,localtimestamp,dbtimezone, and sessiontimezone to above table.
    begin
    dbms_scheduler.create_job(
    job_name => 'tk2timestamp_test',
    job_type => 'PLSQL_BLOCK',
    job_action => 'begin insert into tktest values (systimestamp, to_char(sysdate, ''DD-MON-YYYY HH24:MI:SS''), current_timestamp, localtimestamp, dbtimezone, sessiontimezone); end;',
    enabled => true,
    auto_drop => false);
    exception
    when others then
    null;
    end;
    Run the job using run_job procedure.
    exec dbms_scheduler.run_job(job_name => 'tk2timestamp_test',use_current_session => true);
    Above inserts following record in tktest.
    SYSTIMESTAMP SYSDATE CURRENT_TIMESTAMP LOCALTIMESTAMP DBTZ SESSIONTZ
    28-MAR-13 07.04.58.227616 PM 28-MAR-2013 19:04:58 28-MAR-13 07.04.58.227617 PM 28-MAR-13 07.04.58.227617 PM +00:00 +00:00
    Run the job using run_job procedure again but use 'use_current_session => false' this time.
    Above inserts following record in tktest.
    SYSTIMESTAMP SYSDATE CURRENT_TIMESTAMP LOCALTIMESTAMP DBTZ SESSIONTZ
    28-MAR-13 12.05.24.150817 PM 28-MAR-2013 12:05:24 28-MAR-13 12.05.24.150819 PM 28-MAR-13 12.05.24.150819 PM +00:00 -07:00
    I also run following from the same session.
    SQL> select systimestamp, current_timestamp, localtimestamp, dbtimezone, sessiontimezone from dual;
    SYSTIMESTAMP CURRENT_TIMESTAMP LOCALTIMESTAMP DBTZ SESSIONTZ
    28-MAR-13 07.05.40.640499 PM +00:00 28-MAR-13 12.05.40.640503 PM -07:00 28-MAR-13 12.05.40.640503 PM +00:00 -07:00
    So why executing dbms_scheduler.run_job with 'use_current_session => false' causes SEESSIONTIMEZONE to be PST8PDT?
    I have an another instance pointing all the time based on UTC and my question is why only above instance is showing result like above and what causes it.
    thx.

  • Impact of force_logging on standby database in 10g?

    Hi there,
    We have a 10.2.0.5 database from which we want to setup a standby database...
    We took a hot backup of the primary and send it to the standby server but at that time we realized that force logging is not enabled at the Primary before we took the hot backup!
    Can you please suggest what are our options at this stage without losing any data and without a need to redo the hot backup again since it is a huge database?
    - If we turn the force_logging on now(on Primary) and then set up the standby using the backup taken prior to force_logging ON - would it cause any issues?
    Any help would be greatly appreciated.
    Thanks.

    No it won't because the hot backup is a copy period. So do it ASAP and the Archive will handle the rest.
    So your hot backup is the Standby copy ( exact copy ). Just make sure forced logging is on and the archive with keep the data in sync.
    If you delay then you are up the creek without a paddle as NOLOGGING actions are bound to occur and then the Standby data will not match the Primary.
    If you have doubts your best option is to roll the standby forward using RMAN Incremental Backups :
    http://www.oracle-ckpt.com/?s=incremental&op.x=31&op.y=11
    Best Regards
    mseberg

  • Impact of server load on database

    Hi,
    We have a database 10.2.0.1 on linux 4. Load average ( top command) is normally 8 on the server. From last two days it is fluctuating from 12 to max 28. No recent changes have been made on daabase or application or on server itself. I have awr reports every hour. I compared the sqls execution plans and could not find any difference. Overall database is busy in last two days which was exepected. In past even if we have more transactions, load on server is always less than 12. Another thing I notice in AWR reports comparison (May 20 and May 23 ) is for three sql statements elapsed time changes from 0.15 to 0.25 or gets per execution is very less as compare to execution on May 20.
    I need some help in investigation. Also IO on server is much higher from last two days.
    Thanks.

    RPG wrote:
    Hi,
    We have a database 10.2.0.1 on linux 4. Load average ( top command) is normally 8 on the server. From last two days it is fluctuating from 12 to max 28. No recent changes have been made on daabase or application or on server itself. I have awr reports every hour. I compared the sqls execution plans and could not find any difference. Overall database is busy in last two days which was exepected. In past even if we have more transactions, load on server is always less than 12. Another thing I notice in AWR reports comparison (May 20 and May 23 ) is for three sql statements elapsed time changes from 0.15 to 0.25 or gets per execution is very less as compare to execution on May 20.
    I need some help in investigation. Also IO on server is much higher from last two days.
    Thanks.how many cores/CPUs does this system have?
    post FORMATTED results from doing same as below; which will take 60 seconds to complete
    vmstat 6 10
    [oracle@localhost ~]$ vmstat 6 10
    procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu------
    r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
    0  0  97204 133580  57884 386108    0    1     5    28   39   70  1  2 97  0  0
    0  0  97204 133316  57904 386116    0    0     3    23 1056 1177  0  1 98  0  0
    0  0  97204 133332  57912 386116    0    0     0     8  997 1096  1  2 98  0  0
    0  0  97204 129612  57928 386112    0    0     1    71 1003 1086  2  3 95  0  0
    2  0  97204 128992  57936 386120    0    0     0    25 1004 1029  1  1 98  0  0
    0  0  97204 128992  57952 386120    0    0     0    15 1001 1017  1  1 99  0  0
    0  0  97204 128992  57960 386120    0    0     0    13 1001 1043  1  1 99  0  0
    0  0  97204 128984  57976 386120    0    0     0    17 1000 1046  1  2 98  0  0
    0  0  97204 133192  57984 386120    0    0     0    19 1078 1109  1  4 95  0  0
    0  0  97204 133200  58000 386120    0    0     0    48 1002  999  2  3 96  0  0
    [oracle@localhost ~]$

  • Oracle Database "Compatible" Parameter - Understanding

    Heloo,
    Please reply on my below points related to "Compatible" parameter:
    1.If we are running 10.2.0.4 on a site and the initialization parameter setting is 10.2.0.3.0 then what BAD impacts it can give on Database. Its our online banking LIVE environment.
    2.Can we go back to 10.2.0.3.0 from 10.2.0.4.0?

    Hi;
    1.If we are running 10.2.0.4 on a site and the initialization parameter setting is 10.2.0.3.0 then what BAD impacts it can give on Database. Its our online banking LIVE environment.You are working on same level 10g, if you move your database to 9i to 10g or 10g to 11g than i belive you can look your question answer. But for your issue i belive its not neccessary
    2.Can we go back to 10.2.0.3.0 from 10.2.0.4.0?Yes you can. Please see:
    Downgrade from 10.2.0.4 to 10.2.0.3
    Downgrade from 10.2.0.4 to 10.2.0.3
    Regard
    Helios

  • How to change COMPATIBLE parameter while creating the database using DBCA

    I have installed 10.2.01.0 on centos 4.7
    Now i want to create database with COMAPTIBLE parameter 9.2.0.1
    I m trying to create database through DBCA, changed the initialization parameter COMAPTIBLE to 9.2.0.1.
    But gives me error
    ORA-19583: conversation termintated to error
    ORA-19870: error reading backup peice /opt/oracle/assistants/dbca/templates/Seed_Database.dfb
    ORA-00600: internal error code,arguments: [krbrckhr_compressed],[opt/oracle/assistants/dbca/templates/Seed_Database.dfb],[29],[30],[11420],[],[],[]
    ORA-06512: at "SYS.X$DBMS_BACKUP_RESTORE", line 5149
    ORA-06512: at line 16
    if i dont change the value of COMPATIBLE parameter then its running perfactly...
    But i have to set compatible parameter as 9.2.0.1....
    Can anybody tell me how to create database using 10g R2- 10.2.0.1.0 with compatible parameter 9.2.0.1

    Thank you for your response.
    I have tried that opting.
    After creating the database with COMAPTIBLE parameter 10.2.0.1.0 changed that parameter in init.ora file to 9.2.0 and start the database.
    But at that time getting
    ORA-00201: contorl file version 10.2.01.0 incompatible with ORACLE version 9.2.0.0
    ORA-00202: control file '/opt/oracle/oradata/ORCL/control01.ctl'

  • Request parameter are not stored in database through Java Bean

    Hi,
    I want to store the request parameter in database through Java Bean.Allthough program are properly run but value are not store in DB.
    Here My code:
    Login.html:<html>
    <head>
    <title>A simple JSP application</title>
    <head>
    <body>
    <form method="get" action="submit.jsp" >
    Name: <input type="text" name="User">
    Password: <input type="password" name="Pass">
    <input type="Submit" value="Submit">
    </form>
    </body>
    </html>SimpleBean.java:
    package co;
    import java.util.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.util.*;
    public class SimpleBean implements java.io.Serializable{
    private String User="";
    private String Pass="";
    public SimpleBean(){}
    public String getUser() {
    return User;
    public void setUser(String User) {
    this.User = User;
    public String getPass() {
    return Pass;
    public void setPass(String Pass) {
    this.Pass = Pass;
    public void show()
         try
    System.out.println("Printed*************************************************************");
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    System.out.println("Loading....");
    Connection con=DriverManager.getConnection("jdbc:odbc:Ex11dump");
    System.out.println("Connected....");
    PreparedStatement st=con.prepareStatement("insert into Table1 values(?,?)");
    System.out.println("~~~~~~~~~~~~~~~~~~~~");
    String User=getUser();
    st.setString(1,User);
    String Pass=getPass();
    st.setString(2,Pass);
    int y= st.executeUpdate();
    System.out.println(y);
    System.out.println("Query Executed");
    con.commit();
    con.close();
    System.out.println("Your logging is saved in DB *****************");
    catch(Exception e)
    e.printStackTrace();
    }submit.jsp:
    <jsp:useBean id="obj" class="co.SimpleBean"/>
    <jsp:setProperty name="obj" property="*" />
    <jsp:getProperty name="obj" property="User" /> <br>
    <jsp:getProperty name="obj" property="Pass" /> <br>
    <% obj.show();%>
    <%
    out.println("Ur data is saved in DB");
    %>Please Help me.
    Thanks.

    The issue is in the naming of your fields.
    Change User -> user and Pass->pass
    Name: <input type="text" name="user">
    Password: <input type="password" name="pass">

  • UNICODE conversion of Siebel Database- Impact on interface

    Hi All,
    This is regarding the impacts on Interfaces after Siebel database UNICODE conversion.
    We are planning to do a UNICODE conversion of the Siebel database.In the current landscape we have Siebel interacting with multiple application which are non UNICODE.
    Majority of the interfaces(outbound/inbound) are batch interfaces which either use file or PL/SQL + EIM for the data transfer.
    We have the following queries about the impact on the Interfaces post conversion
    1) the Interfaces which are outbound from siebel to non -unicode database what will be impact on these interface.
    2) For the above mentioned interfaces do we need to do some conversion of data before it gets loaded to non unicode database.
    3) for the inbound interfaces will the siebel unicode data base will allow the data which is flowing from non unicode database.
    Could you please guide me with your experiences which will help us in planning this conversion.
    Do let us know if there must to consider points for Siebel database unicode conversions
    Thanks,
    Ashutosh

    Ashutosh,
    Did you already start on the Unicode conversion?
    We contacted Oracle, but so far they only said we need to go through a workshop where we can estimate the impact on the interfaces.
    Since we need to do a cost/benefit analyses before we decide to do this, it's hard to do so when you don't know the impact on the interfaces.
    In our case we use EIM, Web Services, MSMQ (XML) and flat files.
    Anyone with experience with a conversion to Unicode and impact on interfaces?
    Ji Yong

Maybe you are looking for

  • Error 7 occurred at Invoke Node in AB_EXE.lvclass

    I get the "Error 7 occurred at Invoke Node in AB_EXE.lvclass" error when trying to build an executable in Labview 8.5.1.  I can run the application without any errors but when I try to build the executable, I get the error.  I have tried a mass compi

  • Is it possible that the thief already reset my iPhone that's why the device can't be found in find my iPhone?

    While I'm monitoring my iphone, I left it for a while. When I reload the page, "No Devices" is already written. I'm not really sure if it has been reset by the thief or i accidentally deleted it without knowing.

  • Field OBJNRZ in Tables FMIFIIT and FMIOI

    Hi all, I need fill the field OBJNRZ in tables Tables FMIFIIT and FMIOI but I dont know if the User exit EXIT_SAPLFMRI_001 and EXIT_SAPLFMRI_001 need abap code for to be filled (OBJNRZ) or only is needed activate this user exit. Regards, Alberto

  • PanelBox light header icon problem

    I use icons in my panelBox component. Icons are used in panelBox header as well. The problem is that it doesn't show. Can this be a problem with icon size? or smth? please help..

  • Self defined type how to create value attribute

    Hello! How can I create a new context "value attribute" if its type is doesn't exist in the drop down list where you can choose either a primitive data types or a java Type. It is an self defined class. It's name is  "Notebook". I want to bind all th