Asp and oracle 9i database

I'm trying to access an Oracle 9i database table and am having a difficult time finding how resolve the error. My error is as follows:
Microsoft VBScript runtime error '800a01ad'
ActiveX component can't create object: 'OracleInProcServer.XOraSession'
/access_retrieve_data.asp, line 14
My code is:
<%@ Language=VBScript %>
<% option explicit %>
<%
Dim OraSession, OraDatabase, OraDynaset
Set OraSession = CreateObject("OracleInProcServer.XOraSession")
Set OraDatabase = OraSession.OpenDatabase("", "username/password", Cint(0))
'execute SQL
Set OraDynaset = OraDatabase.DbCreateDynaset( "Select * from Admin", cint(0))
Do While (OraDynaset.EOF = FALSE)
     Response.write (OraDynaset.Fields("ID"))
     Response.write (OraDynaset.Fields("FName"))
     Response.write (OraDynaset.Fields("LName"))
     Response.write (OraDynaset.Fields("Phone"))
     Response.write (OraDynaset.Fields("Email"))
     OraDynaset.MoveNext
Loop
'remove OraSession
Set OraSession = Nothing
%>
Any ideas?
Thanks,
Wills

Please post this question in the database forum: General Database Discussions
Regards,
OTN

Similar Messages

  • How to make connection between ASP and Oracle 8i

    Dear Helper,
    I have a problem about how to make the connection between ASP and
    Oracle 8i. If you have this idea, please help me to solve this
    problem. Thank You!!!
    null

    You must install Oracle Objects for OLE.
    After this in asp-script you may use following instructions
    1)initialization
    <%
    Set Session("OraSession") =server.CreateObject
    ("OracleInProcServer.XOraSession")
    set Session("OraData") = Session("OraSession").OpenDatabase
    ("service", "scott/tiger",0)
    %>
    2)open Dynaset
    <%
    Set EmpDynaset = Session("OraData").CreateDynaset("select 1 as
    f1, 2 as f2 from dual", 0)
    %>
    3)navigation
    <%EmpDynaset.MoveFirst%>
    <%EmpDynaset.MoveNext%>
    <%EmpDynaset.EOF%>
    4) Field access
    <%=EmpDynaset.Fields(1).value%>
    5) Sql execute
    Session("OraData").ExecuteSQL("delete xxx")
    Best regards.
    null

  • Oracle 10g developer suite and oracle 11g database.

    Hi all,
    I have installed oracle 11g database and oracle developer suite 10g on Vista . I want to connect 11g database using oracle forms builder data block wizard to create forms. I'm new to oracle forms . I was just following some tutorial instructions and try to achieve it, but unable to connect 11g database. Can anyone help me out.
    I dont even know whether this is the right area to post this query as i cant find any developer tool installation guide questions.
    Thanks,
    Kalyan
    Edited by: user10676396 on May 6, 2009 7:37 PM
    Edited by: user10676396 on May 6, 2009 7:43 PM

    Hello Kalyan,
    A couple questions:
    1. Once you installed the 11G database, you did start the database services, yes?
    2. Do you have a properly configured TNSNAMES.ORA file that points to your database?
    3. You created a database that you are using and can access the database via SQLPlus?
    Don.

  • Standalone oc4j and oracle 9i database on the same windows xp machine

    I m trying to deploy my j2ee application in my local system using standalone oc4j container(Oracle Containers for J2EE 10g (10.1.3.1)).To configure OC4j,I had to mention ORACLE_HOME=d:\oc4j as a user defined env variable.after that the oc4j started running normally.then i installed oracle 9i database in the same system to use it as the database for the application.During installation it prompts that ORACLE_HOME is alredady set.However the installation completes successfully.But when i try opening sql plus,it throws and error asking to check oracle_home.Its only after changing oracle home to d:\oracle,that sql plus opened and i could log in to it.But after that oc4j would not run saying it cannot find relevant files.Is it not possible to have standalone oc4j and a database for a J2ee application on the same system.if its possible,how can we go ahead?Thanks in advance

    user549113,
    Problem with ORACLE_HOME has been discussed several times already in this forum. I suggest you search the forum archives for "ORACLE_HOME".
    Good Luck,
    Avi.

  • Case insensitive search and replace using ASP and Oracle database

    I am interested in providing a case insensitive search and replace query in a Active server page. At present data is collected from a html form which passes the text values to a ASP page. The ASP page runs a search (select query) to find if the data is already in the Oracle database, if it isn't the ASP page runs sql (INSERT) to insert the record, if not the page returns a form indicating that the record already exists. At present we can convert the case of new records using the VB UCase() function. But can't do a insensitive search with the existing records. *The Query must be able to utilize ASP variables.
    Any help would be much appreciated.
    David Cheryk
    null

    I can't check your script right now since I'm not on Mac. I recommend you to use FindChangeByList script for CS4 instead (it works with CS3): http://forums.adobe.com/servlet/JiveServlet/download/2080627-12695/FindChangeByListCS4.zip together with Martin Fisher's: http://www.kasyan.ho.com.ua/downloads/RecordFindChange_CS3_Kas.zip
    Use this script to record settings from Text and GREP tabs, then copy and paste them into FindChandgeList.txt file.
    Or, optionally you can use this script: http://www.kasyan.ho.com.ua/find_change_by_queries.html.
    Kasyan

  • Asp and Oracle Lite

    Is there a way to access an Oracle Lite DB from an ASP page. Do queries and stuff like that.
    If so can some one guive me some sample code for the DB connection.
    Thanks

    I am using 10.2.0.1.0 version and through msql i am able to access the data from oracle 10g client.
    Yes i had connected with system/userpassword and then create the desired user in the lite database. Also through command line msync working properly.
    My Problem is that when i am downloading this database on the system where oracle 9i Enterprise Edition is already installed, I am able to access my ASP.Net and system works fine.
    But when i am installing that on Fresh system where only .Net frame 1.1, Oracle 10g Mobile SDK installed. ... I am not able to access ASP.Net application. i had used LiteConnection class for connection with oracle client...
    I would like to know is there any provider or other tool i need to installed for distribute this ASP.Net application

  • ASP and SQL Server Database

    My AW7 pieces send user data to asp pages which relay the
    data on to a SQLServer 2000 database. All works well with one
    exception: when a new record is created, any spaces in the string
    containing the user's name are deleted.
    When AW7 sends the variable User_Name="John Doe" to the asp
    page, it issues an SQL ADD command. The result: the SQLServer table
    that receives the data displays the name JohnDoe. What might cause
    the space to be deleted?
    The asp page contains this code:
    <%@ Language=VBScript %>
    <%
    Option Explicit
    Response.expires = 0
    dim conn, SQL, strConn, strSite, strUserName, strUserID,
    ProcApproach, Rqmts1, Rqmts2, Rqmts3, Rqmts4, Rqmts5
    dim CorT1, CorT2, CorT3, CorT4, CorT5, Audit1, Audit2,
    Audit3, Audit4, Audit5, RoleMgrs1, RoleMgrs2, RoleMgrs3, RoleMgrs4,
    RoleMgrs5
    dim RoleMgrs6, RoleMgrs7, RoleMgrs8, ScoreTotal,
    ModComplIntro, QComplProcApproach, QComplRqmts, QComplCorT,
    QComplAudit, QComplRoleMgrs
    'Get data from AW. IIS examples recommend the HTMLEncode
    'method of the ASP Server object but the method doesn't work
    w/ AW.
    'Use Request.Form method.
    strSite=Request.Form("Site")
    strUserName=Request.Form("User_Name")
    strUserID=Request.Form("User_ID")
    ProcApproach=Request.Form("Proc_Approach")
    Rqmts1=Request.Form("Rqmts_1")
    Rqmts2=Request.Form("Rqmts_2")
    Rqmts3=Request.Form("Rqmts_3")
    Rqmts4=Request.Form("Rqmts_4")
    Rqmts5=Request.Form("Rqmts_5")
    CorT1=Request.Form("CorT_1")
    CorT2=Request.Form("CorT_2")
    CorT3=Request.Form("CorT_3")
    CorT4=Request.Form("CorT_4")
    CorT5=Request.Form("CorT_5")
    Audit1=Request.Form("Audit_1")
    Audit2=Request.Form("Audit_2")
    Audit3=Request.Form("Audit_3")
    Audit4=Request.Form("Audit_4")
    Audit5=Request.Form("Audit_5")
    RoleMgrs1=Request.Form("RoleMgrs_1")
    RoleMgrs2=Request.Form("RoleMgrs_2")
    RoleMgrs3=Request.Form("RoleMgrs_3")
    RoleMgrs4=Request.Form("RoleMgrs_4")
    RoleMgrs5=Request.Form("RoleMgrs_5")
    RoleMgrs6=Request.Form("RoleMgrs_6")
    RoleMgrs7=Request.Form("RoleMgrs_7")
    RoleMgrs8=Request.Form("RoleMgrs_8")
    ScoreTotal=Request.Form("Score_Total")
    ModComplIntro=Request.Form("Mod_Compl_Intro")
    QComplProcApproach=Request.Form("Q_Compl_ProcApproach")
    QComplRqmts=Request.Form("Q_Compl_Rqmts")
    QComplCorT=Request.Form("Q_Compl_CorT")
    QComplAudit=Request.Form("Q_Compl_Audit")
    QComplRoleMgrs=Request.Form("Q_Compl_RoleMgrs")
    'Build SQL INSERT command.
    SQL="INSERT INTO User_Data_TS VALUES ('" & strSite &
    "','" & strUserName & "','" & strUserID & "',"
    SQL=SQL & ProcApproach & "," & Rqmts1 & ","
    & Rqmts2 & "," & Rqmts3 & "," & Rqmts4 &
    "," & Rqmts5 & ","
    SQL=SQL & CorT1 & "," & CorT2 & "," &
    CorT3 & "," & CorT4 & "," & CorT5 & ","
    SQL=SQL & Audit1 & "," & Audit2 & "," &
    Audit3 & "," & Audit4 & "," & Audit5 & ","
    SQL=SQL & RoleMgrs1 & "," & RoleMgrs2 & ","
    & RoleMgrs3 & "," & RoleMgrs4 & "," & RoleMgrs5
    & "," & RoleMgrs6 & "," & RoleMgrs7 & "," &
    RoleMgrs8 & "," & ScoreTotal & ","
    SQL=SQL & "'" & ModComplIntro & "','" &
    QComplProcApproach & "','" & QComplRqmts & "','" &
    QComplCorT & "','" & QComplAudit & "','" &
    QComplRoleMgrs & "');"
    'Create a connection object which opens a connection to the
    server
    'Establish a link to the SQL Server database with strConn
    'Use the Execute method to send the SQL query to database
    'Close recordset and db connection as early as possible
    strConn="Provider=sqloledb; Data Source=BUSPC\QS; Initial
    Catalog=ISO_TS; User ID=sa; Password=xxxxx"
    set conn=Server.CreateObject("ADODB.Connection")
    conn.open strConn
    conn.Execute(SQL)
    conn.close
    set conn = nothing
    %>
    The SQLServer table uses the character data type for the
    User_Name variable.
    Thanks.
    Jim

    Seems like I have seen this before, but I can't recall what
    caused it. Try
    URL Encoding everything before you send it using the
    URLEncode() function.
    HTH;
    Amy
    "James_101" <[email protected]> wrote in
    message
    news:[email protected]...
    > My AW7 pieces send user data to asp pages which relay
    the data on to a
    > SQLServer 2000 database. All works well with one
    exception: when a new
    > record
    > is created, any spaces in the string containing the
    user's name are
    > deleted.
    >
    > When AW7 sends the variable User_Name="John Doe" to the
    asp page, it
    > issues an
    > SQL ADD command. The result: the SQLServer table that
    receives the data
    > displays the name JohnDoe. What might cause the space to
    be deleted?
    >
    > The asp page contains this code:
    >
    > <%@ Language=VBScript %>
    > <%
    > Option Explicit
    > Response.expires = 0
    >
    > dim conn, SQL, strConn, strSite, strUserName, strUserID,
    ProcApproach,
    > Rqmts1,
    > Rqmts2, Rqmts3, Rqmts4, Rqmts5
    > dim CorT1, CorT2, CorT3, CorT4, CorT5, Audit1, Audit2,
    Audit3, Audit4,
    > Audit5,
    > RoleMgrs1, RoleMgrs2, RoleMgrs3, RoleMgrs4, RoleMgrs5
    > dim RoleMgrs6, RoleMgrs7, RoleMgrs8, ScoreTotal,
    ModComplIntro,
    > QComplProcApproach, QComplRqmts, QComplCorT,
    QComplAudit, QComplRoleMgrs
    >
    > 'Get data from AW. IIS examples recommend the HTMLEncode
    > 'method of the ASP Server object but the method doesn't
    work w/ AW.
    > 'Use Request.Form method.
    >
    > strSite=Request.Form("Site")
    > strUserName=Request.Form("User_Name")
    > strUserID=Request.Form("User_ID")
    > ProcApproach=Request.Form("Proc_Approach")
    > Rqmts1=Request.Form("Rqmts_1")
    > Rqmts2=Request.Form("Rqmts_2")
    > Rqmts3=Request.Form("Rqmts_3")
    > Rqmts4=Request.Form("Rqmts_4")
    > Rqmts5=Request.Form("Rqmts_5")
    > CorT1=Request.Form("CorT_1")
    > CorT2=Request.Form("CorT_2")
    > CorT3=Request.Form("CorT_3")
    > CorT4=Request.Form("CorT_4")
    > CorT5=Request.Form("CorT_5")
    > Audit1=Request.Form("Audit_1")
    > Audit2=Request.Form("Audit_2")
    > Audit3=Request.Form("Audit_3")
    > Audit4=Request.Form("Audit_4")
    > Audit5=Request.Form("Audit_5")
    > RoleMgrs1=Request.Form("RoleMgrs_1")
    > RoleMgrs2=Request.Form("RoleMgrs_2")
    > RoleMgrs3=Request.Form("RoleMgrs_3")
    > RoleMgrs4=Request.Form("RoleMgrs_4")
    > RoleMgrs5=Request.Form("RoleMgrs_5")
    > RoleMgrs6=Request.Form("RoleMgrs_6")
    > RoleMgrs7=Request.Form("RoleMgrs_7")
    > RoleMgrs8=Request.Form("RoleMgrs_8")
    > ScoreTotal=Request.Form("Score_Total")
    > ModComplIntro=Request.Form("Mod_Compl_Intro")
    > QComplProcApproach=Request.Form("Q_Compl_ProcApproach")
    > QComplRqmts=Request.Form("Q_Compl_Rqmts")
    > QComplCorT=Request.Form("Q_Compl_CorT")
    > QComplAudit=Request.Form("Q_Compl_Audit")
    > QComplRoleMgrs=Request.Form("Q_Compl_RoleMgrs")
    >
    > 'Build SQL INSERT command.
    >
    > SQL="INSERT INTO User_Data_TS VALUES ('" & strSite
    & "','" & strUserName &
    > "','" & strUserID & "',"
    > SQL=SQL & ProcApproach & "," & Rqmts1 &
    "," & Rqmts2 & "," & Rqmts3 & ","
    > &
    > Rqmts4 & "," & Rqmts5 & ","
    > SQL=SQL & CorT1 & "," & CorT2 & ","
    & CorT3 & "," & CorT4 & "," & CorT5 &
    > ","
    > SQL=SQL & Audit1 & "," & Audit2 & ","
    & Audit3 & "," & Audit4 & "," &
    > Audit5 &
    > ","
    > SQL=SQL & RoleMgrs1 & "," & RoleMgrs2 &
    "," & RoleMgrs3 & "," & RoleMgrs4
    > &
    > "," & RoleMgrs5 & "," & RoleMgrs6 & ","
    & RoleMgrs7 & "," & RoleMgrs8 &
    > "," &
    > ScoreTotal & ","
    > SQL=SQL & "'" & ModComplIntro & "','" &
    QComplProcApproach & "','" &
    > QComplRqmts & "','" & QComplCorT & "','"
    & QComplAudit & "','" &
    > QComplRoleMgrs
    > & "');"
    >
    > 'Create a connection object which opens a connection to
    the server
    > 'Establish a link to the SQL Server database with
    strConn
    > 'Use the Execute method to send the SQL query to
    database
    > 'Close recordset and db connection as early as possible
    >
    > strConn="Provider=sqloledb; Data Source=BUSPC\QS;
    Initial Catalog=ISO_TS;
    > User
    > ID=sa; Password=xxxxx"
    > set conn=Server.CreateObject("ADODB.Connection")
    > conn.open strConn
    >
    > conn.Execute(SQL)
    >
    > conn.close
    > set conn = nothing
    >
    > %>
    >
    > The SQLServer table uses the character data type for the
    User_Name
    > variable.
    >
    > Thanks.
    >
    > Jim
    >

  • JDeveloper and Oracle XML Database Development

    Hello, folks:
    I am trying to create XML database through JDeveloper.
    Database: Oracle 10g
    IDE: JDeveloper 11.1.2.2.0
    JDBC Driver: Oracle ojdbc6.jar
    I connect successfully to the database through JDeveloper. There I see many folders listed, e.g. Tables, Views, Indexes, XML Schemas, XML DB Repository, and others. My problem is that when I try to save a large schema file (that I already validated on my local machine) that is roughly more than 300 lines, then JDeveloper is unable to save the file. It saves only very small files that are about 100 lines or less. The error message simply is: "Unable to save XML Schema blah.filename@local (Error saving XML Schema).
    I tried to do it in Oracle SQL Developer, but got the same error. Can someone please help me understand this problem and how to fix it? Do I need to specify some settings in JDeveloper or SQL Developer? Thanks a lot in advance.
    Asif

    The XML database engine used in JDev is in fact from SQL Developer. In other words the SQL Developer code base is used by JDev though typically it is an older version than the latest SQL Developer. As such best post this question to the SQL Developer forum and ensure to state which standalone SQL Developer version you're using.
    CM.

  • Oracle 9i OCCI and Oracle 8i Database

    Hi All
    I need to use OCCI on my client side. My database server runs on Oracle 8.1.6.0.0 . Is it possible to use OCCI (ie Oracle 9i) as mentioned?
    Prompt reply will be highly appreciated.
    Thank you
    Ronak Chokshi

    I have not seen 9i OCCI yet however, if Oracle's upgrades/new versions are consistent from 7.1 onwards, what you need to worry is to check only the SQL*NET setup, if you are using database server installed on different platform.(either via odbc or oracle's own ole (windows client)). If database is also on the same system, things would be very simple. SQL*NET can be tested using standard sql*plus executed from client side. In case of ODBC setup, odbc has its own test utility by which database can be queried. OTN site has detailed documentation on SQL*NET set up. Hope this helps??

  • Auditing in oracle 10g database and oracle 10g application server

    Dear friends,
    We have oracle 10g application server and oracle 10g database server in place.My criteria is to audit users connected using oracle application user credentials to the database.
    Can you please tell me how can i do it.
    Thanks & regards,

    Its the database connection you want to track. The session audit will show where it came from.
    Auditing is turned using this command:
    alter system set audit_trail = DB scope=spfile;
    Note: The use of spfile will require a DB bounce before audit starts
    To audit Sessions:
    audit create session;
    Query by Audit Type:
    SELECT A.USERNAME,
    OS_USERNAME,
    A.TIMESTAMP,
    A.RETURNCODE,
    TERMINAL,
    USERHOST
    FROM DBA_AUDIT_SESSION A
    WHERE USERHOST = <replace with iAS servername> ;
    By User
    SELECT USERNAME,OBJ_NAME,ACTION_NAME , TIMESTAMP
    FROM DBA_AUDIT_TRAIL WHERE USERNAME = 'SCOTT';
    Check for users sharing database accounts
    select count(distinct(terminal)),username
    from dba_audit_session
    having count(distinct(terminal))>1
    group by username;
    Attempts to access the database at unusual hours
    SELECT username, terminal, action_name, returncode,
    TO_CHAR (TIMESTAMP, 'DD-MON-YYYY HH24:MI:SS'),
    TO_CHAR (logoff_time, 'DD-MON-YYYY HH24:MI:SS')
    FROM dba_audit_session
    WHERE TO_DATE (TO_CHAR (TIMESTAMP, 'HH24:MI:SS'), 'HH24:MI:SS') <
    TO_DATE ('08:00:00', 'HH24:MI:SS')
    OR TO_DATE (TO_CHAR (TIMESTAMP, 'HH24:MI:SS'), 'HH24:MI:SS') >
    TO_DATE ('19:30:00', 'HH24:MI:SS');
    Attempts to access the database with non-existent users
    SELECT username, terminal, TO_CHAR (TIMESTAMP, 'DD-MON-YYYY HH24:MI:SS')
    FROM dba_audit_session
    WHERE returncode <> 0
    AND NOT EXISTS (SELECT 'x'
    FROM dba_users
    WHERE dba_users.username = dba_audit_session.username);
    Other audits you might consider:
    audit grant any object privilege;
    audit alter user;
    audit create user;
    audit drop user;
    audit drop tablespace;
    audit grant any role;
    audit grant any privilege;
    audit alter system;
    audit alter session;
    audit delete on AUD$ by access;
    audit insert on AUD$ by access;
    audit update on AUD$ by access;
    audit delete table;
    audit create tablespace;
    audit alter database;
    audit create role;
    audit create table;
    audit alter any procedure;
    audit create view;
    audit drop any procedure;
    audit drop profile;
    audit alter profile;
    audit alter any table;
    audit create public database link;
    Best Regards
    mseberg

  • Oracle 10G Database Control and Scheduling OWB Process Flow

    Does anyone know how to go about scheduling an OWB Process Flow from
    Oracle 10G Data Base Control. I knew how to do this with Oracle Enterprise Manager 9.2 but we recently upgraded to Oracle Db 10G and the interface has changed significantly.
    Now the interface seems to require a PL/SQL stored procedure to be executed.
    Is there a template procedure that is installed with 10G Data Base Control as there was for 9.2 i.e. oem_exec_template.sql?
    Thanks! Deadline approaching fast...
    Marion

    I've used the oem_exec_template.sql successfully with OWB 10.1 and Oracle 10G Database Control, with a little trial and error at first.
    I'm assuming that your job execution environment is set up correctly, ie. that you can properly execute jobs via the host agent.
    1. Log on to Database Control as SYSTEM, select Jobs from the links at the bottom of the page
    2. In the Results section, Create Job, select "SQL Script" and press Go
    3. In the General section, enter Job Name, and as SQL Script enter e.g.:
    @/u01/app/oracle/owb_oracle_home/owb/rtp/sql/oem_exec_template.sql owb_runtime WF_LOC PROCESS MY_PROCESS , ,
    4. In the Databases section, add your target database
    5. In the Credentials section, I select "Override Preferred Credentials" and use the agent account (oracle on my Linux system) and db user owb_access (OWB Runtime Access user)
    6. Review Schedule tab and submit
    Comments on step 3:
    - the oem_exec_template.sql script must be installed according to the path specified in step 3, on the database host where the OWB Runtime Repository is located
    - owb_runtime is the owner of my OWB Runtime Repository
    - WF_LOC is the name of my Workflow Location as seen in OWB Deployment Manager
    - MY_PROCESS is the name of a deployed Workflow Process
    - the commas indicate that I don't supply any system or custom parameters.
    - step 3 is actually a shell command line that is interpreted by eg. /bin/sh on Unix or cmd on Windows, and must obey proper quoting rules. On windows, I had to specify the empty commas as "\," (including dblquotes)
    Regards, Hans Henrik

  • CAN I INSTALL BOTH (ORACLE 9IAS AND ORACLE DATABASE )INTO SAME MACHINE.

    oracle 9ias and oracle 9i database in same machine Feb 25, 2003 11:22 PM
    Reply
    Dear Friends,
    I installed oracle 9ias. and then i hosted my form,report into that server . All was working properly.
    at this time my database was into another machine.
    then i installed oracle 9i database into the same machine
    (as the oracle 9ias was installed)
    at the instalation of oracle 9i database one error comes
    and shows that Agent configuration Assistant Installation
    fail.
    but After installation of database it work properly.
    there is no problem.
    but when I try to run from through web(by using oracle 9ias)
    it gives Internal error(500).
    i check and find that my appache server for 9ias is working properly and in services of windows 2000 no error comes.
    HOW CAN I INSTALL BOTH (ORACLE 9IAS AND ORACLE DATABASE )INTO SAME MACHINE.
    With regards
    Siddharth Singh
    [email protected]

    Hi James,
    Have u ever tried ORACLE 9iAS R2 on Redhat Linux ?
    If yes what is the version of RH Linux you were using ?
    Any docs for that ?
    [email protected]
    Regards
    Amudharasu

  • List user tables in oracle 9i database

    Hi,
    Im new bi to oracle database...,
    Will anyone provide me the command to list the user tables in oracle 9i database.??.
    im using linux redhat 4.0... and oracle 9i database....
    thanks,
    vasanth....

    user12864080 wrote:
    Hi,
    Im new bi to oracle database...,
    Will anyone provide me the command to list the user tables in oracle 9i database.??.
    im using linux redhat 4.0... and oracle 9i database....
    thanks,
    vasanth....
    SELECT ... FROM USER_TABLES;=================================================
    Learning how to look things up in the documentation is time well spent investing in your career. To that end, you should drop everything else you are doing and do the following:
    Go to tahiti.oracle.com.
    Drill down to your product and version.
    <b><i><u>BOOKMARK THIS LOCATION</u></i></b>
    Spend a few minutes just getting familiar with what is available here. Take special note of the "books" and "search" tabs. Under the "books" tab you will find the complete documentation library.
    Spend a few minutes just getting familiar with what <b><i><u>kind</u></i></b> of documentation is available there by simply browsing the titles under the "Books" tab.
    Open the Reference Manual and spend a few minutes looking through the table of contents to get familiar with what <b><i><u>kind</u></i></b> of information is available there.
    Do the same with the SQL Reference Manual.
    Do the same with the Utilities manual.
    You don't have to read the above in depth. They are <b><i><u>reference</b></i></u> manuals. Just get familiar with <b><i><u>what</b></i></u> is there to <b><i><u>be</b></i></u> referenced. Ninety percent of the questions asked on this forum can be answered in less than 5 minutes by simply searching one of the above manuals.
    Then set yourself a plan to dig deeper.
    - Read a chapter a day from the Concepts Manual.
    - Take a look in your alert log. One of the first things listed at startup is the initialization parms with non-default values. Read up on each one of them in the Reference Manual.
    - Take a look at your listener.ora, tnsnames.ora, and sqlnet.ora files. Go to the Network Administrators manual and read up on everything you see in those files.
    - When you have finished reading the Concepts Manual, do it again.
    Give a man a fish and he eats for a day. Teach a man to fish and he eats for a lifetime.
    =================================

  • Migration from Oracle 9i database to 10g in ECC5

    Hi Experts,
    We are planning to move our production system which is currently running ECC5 on AIX OS and Oracle 9i database to AIX OS and Oracle 10g database.
    Some doubts regarding the above procedure:
    1)Is there any possibility of SAP system migration from Oracle 9i to Oracle 10g. If yes, do we need to perform any addinitional steps for that?
    2)If the above condition is OK, then what type of system copy should we need to follow: Homogeneous or Heterogeneous? Heterogeneous system copy is ususally done incase of system copy involving different databases. Does that apply for differnt versions too like Oracle 9i and 10g?
    Any response is highly appreciated.
    Regards,
    Sanjay

    If i'm using the dbua then the above issue will be solved by dbua itself?Well, DBUA will only perform a sanity check on your current release and if it doesn't pass it will fail. In other words DBUA will not upgrade your 9i release to the proper compatible release that you have to do before upgrading to 10R2.
    Personally I never used DBUA, I always prefer manual upgrades, DBUA is good for you bcz it will not allow you to miss any step while upgrading.
    What is the size of the database which you are going to upgrade?
    Daljit Singh

  • Replication of data from LDAP to Oracle 10g Database

    Hi All,
    in our application we are using Oracle Identity manager, and Oracle 10g database.
    we are storing the user,profile and privilages in LDAP and due to some reason we have to create user table in the 10g database.
    this user table values and LDAP user table values must be same.
    here the source is LDAP and destination is Oracle.
    so is there any way we can synchoronize or replicate the data from LDAP to 10g database?
    since oracle identity manager is integrated with LDAP,
    i feeel this must be possible.
    but really dont know how?
    kindly suggest me.
    and if any examples available please let me know, i will be very greatful to you.
    Thanks in advance

    Check out thread How synchronize OID user to a table?
    The title of the thread is: How synchronize OID user to a table?

Maybe you are looking for