ISQL help

how can I search a table name in iSQL plus. I have a column name and want to know from which table it is. What wil b the Query

look at the user_tab_columns and all_tab_columns data dictionary views

Similar Messages

  • Help using isql*plus

    at the university we use isql*plus in the web browser, i installed oracle 10g and i have no idea how to use it :s
    how can i access iSQL*plus using my web browser??
    please, help!!

    how can i access iSQL*plus using my web browser??1. start iSql*plus on the server : (as oracle user)$ isqlplusctl start2. on your browser :http://<machine name or IP address>:<port>/isqlplusPort is normally 5560, but you can check out portlist.ini in $ORACLE_HOME/install.

  • ISQL * Plus..Need help

    Hello,
    I am very new to Oracle 9i. I have completed the installation and I am trying to access the ISQL*Plus interface but cannot locate it(don't know how). Can someone help and give me the steps?
    Thanks for your assistance.

    Open up a web browser, and enter the URL to start iSQL*Plus in the form:
    http://[machine_name][:port]/isqlplus
    So, if your machine is called "mymachine" and the Oracle HTTP Server is installed on port 80, use:
    http://mymachine:80/isqlplus
    Alison

  • (Help)Can't open  iSQL*Plus in the server?

    I want to run iSQL*Plus in the localhost.And my oracle DB server is in UNIX.
    So URL:
    http://192.168.151.100:1521/isqlplus/
    But I don't open it!
    So How to get it.
    Thanks in advance!
    Message was edited by:
    Hansen

    Have a look at the contents of portlist.ini which should be located in your {Oracle Home}/install folder.
    This lists the ports that have been set up for listening on for each part of Oracle.

  • Isql*plus help

    Hi everybody,
    i m new user for oracle 10g. i download 10g(Oracle Database 10g Express Edition (Universal) ) from oracle site. i try to run isqlplus but i can't do it. please help me, another thing if we save script file that save in .sql extention by default, can i change this by default extention from my own one.

    First i thanks to u for helping me.
    Actually when i install oracle on my system only one place it prompt for system and sys default password. There is not any other option come to me. just accept,next - next and after that installation has been completed. I have not get address detail as you describe. i have got link in "all program" which having options-1.Get Help, 2 Backup Database, 3.Get Started, 4.Go to Database Home Page, 5 Restore Database, 6.Run SQL Command Line, 7.Start Database, 8.Stop Database.
    Through 4th option oracle run wizard like structure, and through 6th option it run on Command prompt like view.on both i run queries but i didn't get isqlplus on explorer window.
    Please also help me how i use RMAN. I didn't found it on my system.
    Thanks with regards.

  • Help to start iSQL*PLUS and OEM services

    Here is what I did in trying upgrade 10.1 to 10.2 on Windows:
    1. use Oracle Universal Installer installed 10.2 in a separated ORACLE_HOME;
    2. run pre-upgrade assistant (utlu102i.sql)
    3. run Net Configuration Assistant to congired listner
    4. run DBUA ( however message shows that database already upgraded)
    At this point, new instance is up. new listner is working, but iSQL*PLUS and oem services didn't even be recognized by OS.
    From Universal Installer, I saw iSQL*PLUS and OEM were installed. What I am missing here in order to start services of iSQL*PLUS and OEM?

    Well, the instance is running properly. sqlplus also works fine. Because there is no new OEM service available if you look at Services list, how it could be meaningful to connect to OEM through a browser? As fact, browser can not connect to OEM.
    Do I need to reinstall 10.2?

  • Isql*plus is taking too much time to stop

    Hi,
    today encountered one problem...isql*plus is taking hours to stop the process...
    iSQL*Plus 10.2.0.3.0
    Copyright (c) 2003, 2006, Oracle. All Rights Reserved.
    Stopping iSQL*Plus ...
    when i issue the isqlplusctl start....it shows that, process is already running...
    how to encounter this problem..i have gone through the all metalink document regarding this..not helpful...
    I am not able to ge the home page of isqlplus
    http:<hostname.domainname:5560/isqlplus
    how to resolve in this case..I wanted to restart the isqlplus process...but it is taking hours wile doing that job

    - To stop iSQL*Plus, enter the command:
    $ORACLE_HOME/bin/isqlplusctl stop
    - To verify whether iSQL*Plus process is running, use the following command:
    $ ps -eaf |grep java
    If you have any running processes, use kill command to terminate those processes.
    - To start iSQL*Plus, enter the command:
    $ORACLE_HOME/bin/isqlplusctl start
    It is worth to review Note: 300547.1 - Troubleshooting Guide for iSQL*Plus issues
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=300547.1

  • Problems with report using isql*plus

    Hi there,
    As the title of this topic illustrates, i'm having trouble dumping relevant data from columns of different tables. Using isql*plus, I have three tables appropriatly related. A 'course' table, 'student' and 'next_of_kin' tables. I have many students enrolled on various courses but only a hanfull of courses offer the module option 'Database Systems'. I have no 'module' table but i know the three course names which provide the module option. I intend on producing a report hich lists all students enrolled on the courses which provid the module option 'Database Systems'. I have attempted the report but i keep getting a 'cartesian product' displaying all next_of_kin names instead of the appropriate. Also i am struggling to come up with the right WHERE statement to depict only the three courses which provide the module option 'Database Systems' as defined by 'courseNo' in both 'course' and 'student' tables.
    Here is the most recent attempt:
    --set echo off*
    --set pagesize 24*
    --set feedback off*
    --set linesize 78*
    col A format 99999999 heading 'Student No'
    col B format A15 heading 'Student Name'
    col C format A15 heading 'Course Name'
    col D format 99999999 'Course No'
    col E format A10 heading 'Next-of-Kin'
    break on A skip 1 on B
    TTitle 'Business Studies 1 Option BT300'
    BTitle 'Prepared By : Richard Stroud / 20527796'
    Select student.StudentNo "Student No",
    student.fName || ' ' || student.lName "Student Name",
    course.title "Course Name",
    course.courseNo "Course No",
    next_of_kin.fName || ' ' || next_of_kin.lName "Next-of-Kin"
    From student, course, next_of_kin
    where course.courseNo = '12885545'
    order by studentNo
    --clear columns*
    --TTitle off*
    --BTitle off*
    --set feedback on*
    --set pagesize 24*
    --clear breaks*
    Any help towards this toipic will be GREATLY appreciated

    According to my little knowledge - i don't think Oracle is an AIDB. It is only RDBMS or rather you can call it Advanced RDBMS.
    Now, you are thinking that since you have provided the relavant table here - so Oracle should automatically pic the single records. Since you have define every logic including the concept of primary key, foreign key in your table.
    But, question is - did you apply the relationship in your join between the tables.
    What does a primary key, foreign key do inside a table? Is it automatically select the unique rows from the join tables - when you didn't mention the join criterion.
    If you think that - then you are wrong. My advice is - kindly go through the JOIN Concept.
    Then start your coding. This is very dangerous way to start. Learn the basics at least.
    So, what Senti suggested has a very much valid point.
    Regards.
    Satyaki De.

  • SQL Report help needed

    Hi All,
    I am creating a report which is having 2 sql queries ,1 for the main columns that i need to show and 2 from total sum and count.
    Report is something as given below
    SET TAB OFF;
    set linesize 1500;
    set pagesize 50;
    SET FEEDBACK OFF;
    SET WRAP OFF
    COLUMN today NEW_VALUE VAR1 NOPRINT;
    TTITLE LEFT 'ABC Inc.' SKIP 1 -
    LEFT 'Daily Report' SKIP 1 -
    LEFT 'As Of ' VAR1 SKIP 2
    BTITLE LEFT SKIP 'Page No : ' FORMAT 9999999999 SQL.PNO SKIP 3;
    COL SR_NO HEADING 'Seq'               FORMAT 999999;
    COL REFNO HEADING 'Ref No'                FORMAT A20;
    COL ORIG_NAME HEADING ' Branch Name'      
         FORMAT A50;
    SELECT      ROWNUM                SR_NO,
         REF_NO                REFNO,
         ORIGIN_NAME               BRNAME
    FROM BANK
    WHERE PASS_CD=101
    SELECT      ' Failure Count : '|| NVL(COUNT(DECODE(CODE,1,CODE,NULL)),0) ||
         ' Failure Total Amt : '|| NVL(SUM(DECODE(CODE,799,AMT,NULL)),0)
         || CHR(10) ||     
         ' Successful Count : '|| NVL(COUNT(DECODE(CODE,000,CODE,NULL)),0) ||
    ' Successful Total Amt: '|| NVL(SUM(DECODE(CODE,000,AMT,NULL)),0)
    FROM BANK;
    CLEAR BREAKS;
    CLEAR COLUMN;
    TTITLE OFF;
    When i am running this second query output is going to secong page and title is repeated again and same as 1rst page is showing page no-1
    Kindly help me,i want the output on the same page at bottom.
    Thanks

    i think its only work in ISQL* PLUS enivironment iam
    not sure.It does work in SQL*Plus
    is that i can use in the package??http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14357/ch12048.htm

  • Please help me for peculiar error in Dbms_sql.

    Hi im using form 6i
    Send query and display output that is my work
    sqltext = 'Select a.vendcode,vendname,ap_documentno,ap_documentdate,b.grinno,sum(nvl(landed_cost,0))+sum(nvl(net_rate,0))+sum(nvl(c.cessamount,0))+sum(nvl(vatamount,0)) apGrinval
    from billmain a,Billitem b,grinitem c,vendmast d
    where a.unitid = :Unit_id
    and ap_documentdate between :From_dt and :To_dt
    and a.unitid = b.unitid
    and a.documentno = b.documentno
    and substr(ap_documentno,1,1) <> substr(b.grinno,1,1)
    and b.unitid = c.unitid
    and b.grinno = c.grinno
    and a.vendcode = d.vendcode
    and b.partnumber = c.partnumber
    group by a.vendcode,ap_documentno,ap_documentdate,b.grinno,vendname';
    and i have procedure
    PROCEDURE Display_Records(BlockName Varchar2,Sqltext Varchar2) IS
    c integer := dbms_sql.open_cursor;
    cnt integer;
    desctab dbms_sql.desc_tab;
    colval varchar(4000);
    stat integer;
    pitem varchar2(100);
    BEGIN
    dbms_sql.parse(c,sqltext,1);
    Go_Block('Param');
    next_item;
    Loop
    Exit When Upper(Get_item_property(:System.Current_Item,Prompt_Text)) like 'PARAMETER%';      
    If Substr(:System.Current_value,-5,1) in ('/','.','-') Then
         dbms_sql.bind_variable(c,RTrim(Get_item_property(:System.Current_Item,Prompt_Text)),To_date(:System.Current_Value,'dd/mm/yyyy'));      
    Else
         dbms_sql.bind_variable(c,RTrim(Get_item_property(:System.Current_Item,Prompt_Text)),Rtrim(:System.Current_Value));
         End If;
         next_item;
    End Loop;
    dbms_sql.describe_columns(c,cnt,desctab);
    Go_Block('Data');
    First_Record;
    For i in 1..cnt Loop
         dbms_sql.define_column(c,i,colval,4000);
    End Loop;
    stat:=dbms_sql.execute(c);
    While (dbms_sql.Fetch_rows(c)>0) Loop
         pitem := Get_block_property(:System.Current_block,First_item);
    For i in 1..cnt Loop
         dbms_sql.column_value(c,i,colval);
         If colval = '0' Then
              colval := null;
         End If;
         copy(colval,pitem);
         Next_Item;
         Pitem := :System.Current_Item;
    End Loop;
    Next_Record;
    pause;
    End Loop;
    Delete_Record;
    END;
    all th queries r working perfectly but the above query. why i dont know, even the same query without the bold area
    its working but result working so I want to include bold creteria.
    Nothing error displayed, it is hanging on the area while (dbms_sql.Fetch_rows(c)>0)
    but with the same query when i tried in isql*plus it display 70 rows, but here it is hanging.
    Please help me what is the error.
    kanish

    Who told dbms_sql only for database. I had send lot of queries using this coding that is working perfectly except which i post.
    Yes, I solved it myself just i changed
    rtrim(b.partnumber) = rtrim(c.partnumber)
    Thank to all
    kanish
    Edited by: Kanish on May 1, 2009 11:03 PM

  • Help me to fix the error while running DBMaintain Against the Database Schema in ASE.

    Hi All,
    I am trying to install sybase mobiliser platform 5.1 SP 03.I am  referring the following guide
    http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc01871.0513/pdf/Mobiliser_Platform_Installation_Guide_5.1…
    Now I have configured the ASE database server with default settings and now it is running fine.
    Now my concerns are as follows:
    1) I have executed the database schema (mobr5): 001_MONEY_drop_and_create_user.DDL with the help of linux command
    isql -Usa -SASE1 -Phello@123 -i/opt/sybase/db/sql/001_MONEY_drop_and_create_user.DDL -o/opt/sybase/ASE-15_0/install/ASE1.log
    How do I check the created database schema and user with default name 'mobr5'?
    2) While running DBMaintain Against the Database Schema, I have followed the steps mentioned in the guide and made the following changes in the file dbmaintain.properties.ase
    database.driverClassName=com.sybase.jdbc4.jdbc.SybDriver
    database.url=jdbc:sybase:Tds:ASE1:5000/mobr5
    database.userName=mobr5
    database.schemaNames=mobr5
    database.password=paybox
    #Must be set if the driver is not packaged inside the scriptarchive or is present on the classpath
    #e.g. /path/to/driver.jar
    #database.driverLocation=/path/to/jconnect.jar
    database.driverLocation=/opt/sybase/db/sql/com.sybase365.mobiliser.vanilla.standalone-5.1.3.RELEASE-scriptarchive-ase.jar
    database.driverLocation=/opt/sybase/db/sql/com.sybase365.mobiliser.vanilla.standalone-5.1.3.RELEASE-scriptarchive-ase-vanilla.jar
    When I execute the script archives ,
    java –jar /opt/sybase/db/sql/com.sybase365.mobiliser.vanilla.standalone-5.1.3.RELEASE-scriptarchive-ase-driverless.jar -c /opt/sybase/db/sql/dbmaintain.properties.ase
    java –jar com.sybase365.mobiliser.vanilla.standalone-5.1.3.RELEASE-scriptarchive-ase-vanilla-driverless.jar -c dbmaintain.properties.ase
    I get the following error:
    So please help me to resolve the issues.

    Hi All,
    Issue is resolved and database has been updated successfully..
    Error was in database .url field of dbmaintain.properties.ase file.
    I have changed the database.url field  from database.url=jdbc:sybase:Tds:ASE1:5000/mobr5
    to  database.url=jdbc:sybase:Tds:<Private IP of Linux instance>:5000/mobr5
    Note:- I am installing mobiliser platform on AWS cloud.So I have made use of Private IP address of AWS Linux instance.

  • 'error in invoking target 'client_sharedlib' of makefile'   for help

    I am installing oracle 10g(10202_database_soxl86)on solaris 10 (sol-10-u10-ga2-x86-dvd.iso) throgh VMware workstation 7.1.4
    I fellowing the steps below:
    1、 # pkgadd -R /cdrom/Solaris_10/Product SUNWarc SUNWbtool SUNWhea SUNWlibm SUNWlibms SUNWsprot SUNWtoo SUNWi1of SUNWi1cs SUNWi15cs SUNWxwfnt SUNWgcc
    2、 # mkdir -p /export/home/app/oracle
    # chown -R oracle:oinstall /export/home/app/oracle
    3、 # groupadd oinstall
    # groupadd dba
    # useradd -g oinstall -G dba -s /usr/bin/bash -d /export/home/app/oracle oracle
    # passwd oracle
    4、$vi .profile
    export ORACLE_BASE=/export/home/app
    export ORACLE_HOME=$ORACLE_BASE/oracle
    export ORACLE_SID=sun
    export PATH=$ORACLE_HOME/bin:$PATH
    export DISPLAY=192.168.0.1:0.0
    stty erase ^h
    $ env | grep ORA
    results: ORACLE_BASE=/export/home/app
    ORACLE_HOME=/export/home/app/oracle
    ORACLE_SID=sun
    $ env | grep DIS
    results:DISPLAY=192.168.0.1:0.0
    5、# uname -a
    result:SunOS solaris10 5.10 Generic_147441-01 i86pc i386 i86pc
    # isainfo -v
    result:32-bit i386 applications
    pclmulqdq aes sse4.2 sse4.1 ssse3 popcnt tscp sse3 sse2 sse fxsr mmx
    cmov sep cx8 tsc fpu
    6、# df -k
    Filesystem kbytes used avail capacity Mounted on
    swap 2437932 112 2437820 1% /tmp
    7 、# cd /tmp
    # unzip / 10202_database_soxl86.zip
    # chown -R oracle:oinstall database/
    8、 # su - oracle
    $ cd /tmp/database
    $ ./runInstaller
    Error information:
    1、error in invoking target 'client_sharedlib' of makefile
    2、Error in invoking target 'relink' of makefile
    3、Error in invoking target 'ioracle' of makefile '/export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk'.
    4、Error in invoking target 'nnfgt.o mkldflags client_sharedlib' of makefile '/export/home/oracle/product/10.2.2/network/lib/ins_net_client.mk'
    5、Error in invoking target 'install' of makefile '/export/home/oracle/product/10.2.2/sqlplus/lib/ins_sqlplus.mk'.
    6、Error in invoking target 'irman' of makefile '/export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk'.
    7、Error in invoking target 'install' of makefile '/export/home/oracle/product/10.2.2/network/lib/ins_net_client.mk'.
    Error in invoking target 'install' of makefile '/export/home/oracle/product/10.2.2/plsql/lib/ins_plsql.mk'.
    8、Error in invoking target 'ioklist iokinit iokdstry' of makefile '/export/home/oracle/product/10.2.2/network/lib/ins_nau.mk'.
    9、Error in invoking target 'utilities ctx_on' of makefile '/export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk'.
    10、Error in invoking target 'agent nmo nmb' of makefile '/export/home/oracle/product/10.2.2/sysman/lib/ins_sysman.mk'.
    11、Error in invoking target 'clientonlyinstall' of makefile '/export/home/oracle/product/10.2.2/ldap/lib/ins_ldap.mk'.
    12、Error in invoking target 'install' of makefile '/export/home/oracle/product/10.2.2/srvm/lib/ins_srvm.mk'.
    13、Error in invoking target 'racg_install' of makefile '/export/home/oracle/product/10.2.2/racg/lib/ins_has.mk'.
    14、Error in invoking target 'install' of makefile '/export/home/oracle/product/10.2.2/network/lib/ins_net_server.mk'.
    15、Error in invoking target 'all_no_orcl ipc_g' of makefile '/export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk'.
    16、Error in invoking target 'collector' of makefile '/export/home/oracle/product/10.2.2/sysman/lib/ins_emdb.mk'.
    details:
    Checking installer requirements...
    INFO:
    INFO: Checking operating
    system version: must be 5.10. Actual 5.10
    INFO:
    Passed
    INFO:
    INFO: Checking Temp space: must be
    greater than 250 MB. Actual 2403 MB Passed
    INFO: Checking swap
    space: must be greater than 500 MB. Actual 2805 MB Passed
    INFO:
    Checking monitor: must be configured to display at least 256 colors.
    Actual 16777216 Passed
    INFO:
    INFO: All installer requirements
    met.
    Exception String: Error
    in invoking target 'client_sharedlib' of makefile
    '/export/home/oracle/product/10.2.2/network/lib/ins_net_client.mk'.
    See '/export/home/oracle/oraInventory/logs/installActions2011-11-
    04_08-21-57PM.log' for details.
    Exception Severity: 1
    INFO: Exception
    handling set to prompt user with options to Retry Ignore
    User
    Choice: Ignore
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link
    Phase of component Enterprise Manager Agent DB
    INFO: 11/4/11 8:37:54
    PM CST: Starting install Link Phase of component Enterprise Manager
    Common Files
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link
    Phase of component Oracle Display Fonts
    INFO: 11/4/11 8:37:54 PM CST:
    Starting install Link Phase of component Oracle Extended Windowing
    Toolkit
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link Phase of
    component Oracle UIX
    INFO: 11/4/11 8:37:54 PM CST: Starting install
    Link Phase of component SQL*Plus Required Support Files
    INFO: 11/4/11
    8:37:54 PM CST: Starting install Link Phase of component DBJAVA
    Required Support Files
    INFO: 11/4/11 8:37:54 PM CST: Starting install
    Link Phase of component Oracle OLAP RDBMS Files
    INFO: Calling Action
    unixActions10.2.0.1.0 registerForMake
         installMakePath =
    /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = ioracle
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = ioracle
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Unlinking oracle
    INFO: Calling Action unixActions10.2.0.1.0 make
    installMakePath = /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = olap_on
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = olap_off
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    null
    INFO: The output of this make operation is also available at:
    '/export/home/oracle/product/10.2.2/install/make.log'
    INFO:
    INFO:
    Start output from spawned process:
    INFO:
    INFO:
    INFO: /usr/ccs/bin/ar d
    /export/home/oracle/product/10.2.2/rdbms/lib/libknlopt.a xsnoolap.o
    INFO: /usr/ccs/bin/ar cr
    /export/home/oracle/product/10.2.2/rdbms/lib/libknlopt.a
    /export/home/oracle/product/10.2.2/rdbms/lib/xsyeolap.o
    INFO: End
    output from spawned process.
    INFO:
    INFO: Calling Action
    unixActions10.2.0.1.0 registerForMake
         installMakePath =
    /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = ioracle
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = ioracle
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking Oracle
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link
    Phase of component Oracle OLAP API
    INFO: 11/4/11 8:37:54 PM CST:
    Starting install Link Phase of component XDK Required Support Files
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link Phase of
    component RDBMS Required Support Files for Instant Client
    INFO:
    11/4/11 8:37:54 PM CST: Starting install Link Phase of component
    RDBMS Required Support Files
    INFO: 11/4/11 8:37:54 PM CST: Starting
    install Link Phase of component Oracle JFC Extended Windowing
    Toolkit
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link Phase of
    component Agent Required Support Files
    INFO: 11/4/11 8:37:54 PM CST:
    Starting install Link Phase of component Parser Generator Required
    Support Files
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link
    Phase of component Sample Schema Data
    INFO: 11/4/11 8:37:54 PM CST:
    Starting install Link Phase of component Oracle Starter Database
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link Phase of
    component Oracle Message Gateway Common Files
    INFO: 11/4/11 8:37:54
    PM CST: Starting install Link Phase of component XML Parser for
    Oracle JVM
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link Phase
    of component Precompiler Required Support Files
    INFO: 11/4/11 8:37:54
    PM CST: Starting install Link Phase of component XML Parser for
    Java
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link Phase of
    component Oracle Help for the Web
    INFO: 11/4/11 8:37:54 PM CST:
    Starting install Link Phase of component Oracle Ice Browser
    INFO:
    11/4/11 8:37:54 PM CST: Starting install Link Phase of component
    Enterprise Manager Baseline
    INFO: 11/4/11 8:37:54 PM CST: Starting
    install Link Phase of component Oracle Data Mining RDBMS Files
    INFO:
    Calling Action unixActions10.2.0.1.0 registerForMake
    installMakePath = /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = ioracle
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = ioracle
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Unlinking oracle
    INFO: Calling Action unixActions10.2.0.1.0 make
    installMakePath = /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = dm_on
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = dm_off
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking Label Security Option
    INFO: The output of this make operation
    is also available at:
    '/export/home/oracle/product/10.2.2/install/make.log'
    INFO:
    INFO:
    Start output from spawned process:
    INFO:
    INFO:
    INFO: /usr/ccs/bin/ar cr
    /export/home/oracle/product/10.2.2/rdbms/lib/libknlopt.a
    /export/home/oracle/product/10.2.2/rdbms/lib/dmndmse.o      
    INFO:
    /usr/ccs/bin/ar cr
    /export/home/oracle/product/10.2.2/rdbms/lib/libknlopt.a
    /export/home/oracle/product/10.2.2/rdbms/lib/dmwdm.o
    INFO: End
    output from spawned process.
    INFO:
    INFO: Calling Action
    unixActions10.2.0.1.0 registerForMake
         installMakePath =
    /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = ioracle
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = ioracle
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Unlinking oracle
    INFO: 11/4/11 8:37:55 PM CST: Starting install Link
    Phase of component Oracle Database 10g interMedia Files
    INFO: 11/4/11
    8:37:55 PM CST: Starting install Link Phase of component Oracle
    interMedia Java Advanced Imaging
    INFO: 11/4/11 8:37:55 PM CST:
    Starting install Link Phase of component SQLJ Runtime
    INFO: 11/4/11
    8:37:55 PM CST: Starting install Link Phase of component Oracle
    interMedia Annotator
    INFO: 11/4/11 8:37:55 PM CST: Starting install
    Link Phase of component Oracle JDBC/OCI Instant Client
    INFO: 11/4/11
    8:37:55 PM CST: Starting install Link Phase of component Oracle
    interMedia Locator RDBMS Files
    INFO: Calling Action
    unixActions10.2.0.1.0 registerForMake
         installMakePath =
    /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = ioracle
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = ioracle
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking oracle
    INFO: Calling Action unixActions10.2.0.1.0 make
    installMakePath = /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = sdo_on
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = sdo_off
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking sdo options
    INFO: The output of this make operation is also
    available at: '/export/home/oracle/product/10.2.2/install/make.log'
    INFO:
    INFO: Start output from spawned process:
    INFO:
    INFO:
    INFO: /usr/ccs/bin/ar cr
    /export/home/oracle/product/10.2.2/rdbms/lib/libknlopt.a
    /export/home/oracle/product/10.2.2/rdbms/lib/kxmwsd.o
    INFO: End
    output from spawned process.
    INFO:
    INFO: Calling Action
    unixActions10.2.0.1.0 registerForMake
         installMakePath =
    /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = ioracle
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = ioracle
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking Oracle
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link
    Phase of component Platform Required Support Files
    INFO: 11/4/11
    8:37:56 PM CST: Starting install Link Phase of component Oracle Core
    Required Support Files
    INFO: 11/4/11 8:37:56 PM CST: Starting install
    Link Phase of component Database Workspace Manager
    INFO: 11/4/11
    8:37:56 PM CST: Starting install Link Phase of component Oracle
    Containers for Java
    INFO: 11/4/11 8:37:56 PM CST: Starting install
    Link Phase of component Oracle Help For Java
    INFO: 11/4/11 8:37:56 PM
    CST: Starting install Link Phase of component JDBC Common Files
    INFO:
    11/4/11 8:37:56 PM CST: Starting install Link Phase of component
    Perl Interpreter
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link
    Phase of component Oracle Code Editor
    INFO: 11/4/11 8:37:56 PM CST:
    Starting install Link Phase of component Oracle Notification
    Service
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link Phase of
    component Oracle interMedia Client Option
    INFO: 11/4/11 8:37:56 PM
    CST: Starting install Link Phase of component Oracle JDBC Thin
    Driver for JDK 1.2
    INFO: 11/4/11 8:37:56 PM CST: Starting install
    Link Phase of component Oracle JDBC Thin Driver for JDK 1.4
    INFO:
    11/4/11 8:37:56 PM CST: Starting install Link Phase of component
    Enterprise Manager plugin Common Files
    INFO: 11/4/11 8:37:56 PM CST:
    Starting install Link Phase of component LDAP Required Support
    Files
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link Phase of
    component Character Set Migration Utility
    INFO: 11/4/11 8:37:56 PM
    CST: Starting install Link Phase of component Oracle Locale Builder
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link Phase of
    component PL/SQL Embedded Gateway
    INFO: 11/4/11 8:37:56 PM CST:
    Starting install Link Phase of component OLAP SQL Scripts
    INFO:
    11/4/11 8:37:56 PM CST: Starting install Link Phase of component
    Database SQL Scripts
    INFO: 11/4/11 8:37:56 PM CST: Starting install
    Link Phase of component Oracle Globalization Support
    INFO: 11/4/11
    8:37:56 PM CST: Starting install Link Phase of component Required
    Support Files
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link
    Phase of component Secure Socket Layer
    INFO: Calling Action
    unixActions10.2.0.1.0 registerForMake
         installMakePath =
    /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/network/lib/ins_net_client.mk
    installTarget = nnfgt.o
         installArguments = ORACLE_HOME
    =/export/home/oracle/product/10.2.2
         undoMakeFileName = null
    undoTarget = null
         undoArguments = null
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking nnfgt
    INFO: Calling Action unixActions10.2.0.1.0
    registerForMake
         installMakePath = /usr/ccs/bin/make
    installMakeFileName =
    /export/home/oracle/product/10.2.2/network/lib/ins_net_client.mk
    installTarget = mkldflags
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    null
         undoTarget = null
         undoArguments = null
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking ldflags
    INFO: Calling Action unixActions10.2.0.1.0
    registerForMake
         installMakePath = /usr/ccs/bin/make
    installMakeFileName =
    /export/home/oracle/product/10.2.2/network/lib/ins_net_client.mk
    installTarget = client_sharedlib
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    null
         undoTarget = null
         undoArguments = null
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Building client shared library
    INFO: 11/4/11 8:37:56 PM CST: Starting
    install Link Phase of component Oracle Database User Interface
    INFO:
    11/4/11 8:37:56 PM CST: Starting install Link Phase of component
    Enterprise Manager Minimal Integration
    INFO: 11/4/11 8:37:56 PM CST:
    Starting install Link Phase of component Oracle Wallet Manager
    INFO:
    11/4/11 8:37:56 PM CST: Starting install Link Phase of component
    Oracle Clusterware RDBMS Files
    INFO: 11/4/11 8:37:56 PM CST: Starting
    install Link Phase of component Oracle RAC Required Support Files-
    HAS
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link Phase of
    component SQL*Plus
    INFO: Calling Action unixActions10.2.0.1.0
    registerForMake
         installMakePath = /usr/ccs/bin/make
    installMakeFileName =
    /export/home/oracle/product/10.2.2/sqlplus/lib/ins_sqlplus.mk
    installTarget = install
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    null
         undoTarget = null
         undoArguments = null
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking SQLPLUS executables
    INFO: 11/4/11 8:37:56 PM CST: Starting
    install Link Phase of component Enterprise Manager plugin Common
    Files
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link Phase of
    component iSQL*Plus
    INFO: 11/4/11 8:37:56 PM CST: Starting install
    Link Phase of component Oracle Recovery Manager
    INFO: Calling Action
    unixActions10.2.0.1.0 registerForMake
         installMakePath =
    /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = irman
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    null
         undoTarget = null
         undoArguments = null
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking RMAN utility
    INFO: 11/4/11 8:37:56 PM CST: Starting install
    Link Phase of component HAS Common Files
    INFO: 11/4/11 8:37:56 PM
    CST: Starting install Link Phase of component Precompiler Common
    Files
    INFO: Calling Action unixActions10.2.0.1.0 make
    installMakePath = /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/precomp/lib/ins_precomp.mk
    installTarget = links
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/precomp/lib/ins_precomp.mk
    undoTarget = rmlinks
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking links
    INFO: The output of this make operation is also
    available at: '/export/home/oracle/product/10.2.2/install/make.log'
    INFO:
    INFO: Start output from spawned process:
    INFO:
    INFO:
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; rm -f SQLCA.H)
    INFO: (cd /export/home/oracle/product/10.2.2/precomp/public ; rm -f
    ORACA.H)
    INFO: (cd /export/home/oracle/product/10.2.2/precomp/public
    ; rm -f SQLDA.H)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; rm -f SQLCA.COB)
    INFO: (cd /export/home/oracle/product/10.2.2/precomp/public ; rm -f
    ORACA.COB)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; rm -f SQLCA.FOR)
    INFO: (cd /export/home/oracle/product/10.2.2/precomp/public ; rm -f
    ORACA.FOR)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; rm -f
    BNDDSC.FOR)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; rm -f
    SELDSC.FOR)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; ln -s sqlca.h
    SQLCA.H)
    INFO: (cd /export/home/oracle/product/10.2.2/precomp/public
    ; ln -s oraca.h ORACA.H)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; ln -s sqlda.h
    SQLDA.H)
    INFO: (cd /export/home/oracle/product/10.2.2/precomp/public
    ; ln -s sqlca.cob SQLCA.COB)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; ln -s oraca.cob
    ORACA.COB)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; ln -s sqlca.for
    SQLCA.FOR)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; ln -s oraca.for
    ORACA.FOR)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; ln -s bnddsc.for
    BNDDSC.FOR)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; ln -s seldsc.for
    SELDSC.FOR)
    INFO: End output from spawned process.
    INFO:
    INFO: Calling Action
    unixActions10.2.0.1.0 make
         installMakePath = /usr/ccs/bin/make
    installMakeFileName =
    /export/home/oracle/product/10.2.2/precomp/lib/ins_precomp.mk
    installTarget = relink
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2,EXENAME=proc
    undoMakeFileName = null
         undoTarget = null
         undoArguments = null
    logFile = /export/home/oracle/product/10.2.2/install/make.log
    progMsg = Linking proc
    INFO: The output of this make operation is
    also available at:
    '/export/home/oracle/product/10.2.2/install/make.log'
    INFO:
    INFO:
    Start output from spawned process:
    INFO:
    INFO:
    INFO: Linking
    /export/home/oracle/product/10.2.2/precomp/lib/proc
    INFO: ld:
    INFO:
    fatal:
    INFO: library -l
    INFO: clntsh
    INFO: : not found
    INFO:
    INFO: ld:
    INFO: fatal:
    INFO: file processing errors. No output written to
    INFO: /export/home/oracle/product/10.2.2/precomp/lib/proc
    INFO:
    INFO:
    *** Error code 1
    The following command caused the error:
    echo "Linking
    /export/home/oracle/product/10.2.2/precomp/lib/proc"; \
    rm -f
    /export/home/oracle/product/10.2.2/precomp/lib/proc; \
    /usr/ccs/bin/ld -o
    /export/home/oracle/product/10.2.2/precomp/lib/proc -
    L/export/home/oracle/product/10.2.2/precomp/lib/ -
    L/export/home/oracle/product/10.2.2/lib/ -dy
    /export/home/oracle/product/10.2.2/lib/prod/lib/crti.o
    /export/home/oracle/product/10.2.2/lib/prod/lib/crt1.o
    /export/home/oracle/product/10.2.2/lib/s0m
    INFO: ain.o
    /export/home/oracle/product/10.2.2/precomp/lib/pdc.o
    /export/home/oracle/product/10.2.2/precomp/lib/pds.o
    /export/home/oracle/product/10.2.2/precomp/lib/libproc2.a
    /export/home/oracle/product/10.2.2/lib/libslax10.a
    /export/home/oracle/product/10.2.2/precomp/lib/libpgp.a -lpls10 -
    lplp10 /export/home/oracle/product/10.2.2/lib/libplc10.a -lsnls10 -
    lunls10 -lnls10
    /export/home/oracle/product/10.2.2/rdbms/lib/kpudfo.o -lclntsh `cat
    /export/home/oracle/product/10.2.2/lib/ldflags` -lnsslb10 -
    lncrypt10
    INFO: -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat
    /export/home/oracle/product/10.2.2/lib/ldflags` -lnsslb10 -
    lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -
    lnnetd10 -lvsn10 -lcommon10 -lgeneric10 -lmm -lsnls10 -lnls10 -
    lcore10 -lsnls10 -lnls10 -lcore10 -lsnls10 -lnls10 -lxml10 -
    lcore10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 `cat
    /export/home/oracle/product/10.2.2/lib/ldflags` -lnsslb10 -
    lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat
    /export/home/oracle/product/1
    INFO: 0.2.2/lib/ldflags` -lnsslb10
    -lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -
    lnnetd10 -lvsn10 -lcommon10 -lgeneric10 -lpls10 -lsnls10 -lnls10
    -lcore10 -lsnls10 -lnls10 -lcore10 -lsnls10 -lnls10 -lxml10 -
    lcore10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 -lclient10 -
    lnnetd10 -lvsn10 -lcommon10 -lgeneric10 -lsnls10 -lnls10 -lcore10
    -lsnls10 -lnls10 -lcore10 -lsnls10 -lnls10 -lxml10 -lcore10 -
    lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 `cat
    /export/home/oracle/product/10.2.2/lib/sy
    INFO: sliblist` -R
    /opt/SUNWcluster/lib:/export/home/oracle/product/10.2.2/lib:/opt/ORC
    Lcluster/lib/ -Y
    P,:/opt/SUNWcluster/lib:/opt/ORCLcluster/lib/:/usr/ccs/lib:/usr/lib
    -Qy -lc -lrt -laio -lposix4 -lm
    /export/home/oracle/product/10.2.2/lib/prod/lib/crtn.o; \
    /bin/chmod
    755 /export/home/oracle/product/10.2.2/precomp/lib/proc
    INFO: make:
    Fatal error: Command failed for target
    `/export/home/oracle/product/10.2.2/precomp/lib/proc'
    INFO: End
    output from spawned process.
    INFO:
    INFO: Exception thrown from
    action: make
    Exception Name: MakefileException

    895824 wrote:
    I am installing oracle 10g(10202_database_soxl86)on solaris 10 (sol-10-u10-ga2-x86-dvd.iso) throgh VMware workstation 7.1.4
    I fellowing the steps below:
    1、 # pkgadd -R /cdrom/Solaris_10/Product SUNWarc SUNWbtool SUNWhea SUNWlibm SUNWlibms SUNWsprot SUNWtoo SUNWi1of SUNWi1cs SUNWi15cs SUNWxwfnt SUNWgcc
    2、 # mkdir -p /export/home/app/oracle
    # chown -R oracle:oinstall /export/home/app/oracle
    3、 # groupadd oinstall
    # groupadd dba
    # useradd -g oinstall -G dba -s /usr/bin/bash -d /export/home/app/oracle oracle
    # passwd oracle
    4、$vi .profile
    export ORACLE_BASE=/export/home/app
    export ORACLE_HOME=$ORACLE_BASE/oracle
    export ORACLE_SID=sun
    export PATH=$ORACLE_HOME/bin:$PATH
    export DISPLAY=192.168.0.1:0.0
    stty erase ^h
    $ env | grep ORA
    results: ORACLE_BASE=/export/home/app
    ORACLE_HOME=/export/home/app/oracle
    ORACLE_SID=sun
    $ env | grep DIS
    results:DISPLAY=192.168.0.1:0.0
    5、# uname -a
    result:SunOS solaris10 5.10 Generic_147441-01 i86pc i386 i86pc
    # isainfo -v
    result:32-bit i386 applications
    pclmulqdq aes sse4.2 sse4.1 ssse3 popcnt tscp sse3 sse2 sse fxsr mmx
    cmov sep cx8 tsc fpu
    6、# df -k
    Filesystem kbytes used avail capacity Mounted on
    swap 2437932 112 2437820 1% /tmp
    7 、# cd /tmp
    # unzip / 10202_database_soxl86.zip
    # chown -R oracle:oinstall database/
    8、 # su - oracleLook no further. You modified your .profile to set the environment, but you did that as root, then did an su to oracle. That oracle session never saw the environment changes (ORACLE_HOME, etc) you did to your (root) profile. All Oracle specific tasks should be done logged on as the oracle software owner - oracle. Once root made the necessary prereqs at the OS level (pkgadd, groupadd, useradd) you should have logged off as root and logged on as oracle, THEN proceeded to fix your .profile, etc., and run the installer. NEVER act as a dba while logged on as root. NEVER log on as root to do ANYTHING that does not REQUIRE root access.
    $ cd /tmp/database
    $ ./runInstaller
    <snip>

  • Where is iSQL*Plus distribution zip file for Oracle 8i (8.1.7)?

    I am running Oracle 8i (8.1.7) under Windows 2000. The iSQL*Plus Installation and Users Guide Release 8.1.7 Beta for Windows says the iSQL*Plus distribution zip file can be downloaded from the Oracle TechNet site (http://otn.oracle.com). I went there but could only fine iSQL*Plus for Oracle 9i. I even clicked on a link for the 8.1.7 version but ended up on a page with the 9i version. Can the 8.1.7 version still be downloaded? If so, what http address will get me to it?
    I want to run iSQL*Plus on my PC to see if I can access my oracle database from an iMAC (apple computer).
    Thanks in advance for your help!

    John,
    iSQL*Plus 8.1.7 beta was available only for a short time. That version was in beta testing and not intended for long term use. iSQL*Plus 9.0.1 (with Oracle9i release 9.0.1 for Windows) is more stable, and has more features. iSQL*Plus 9.2.0.1 (just released with Oracle9i release 9.2.0.1 on most platforms!) is even better. You might want to install a version of Oracle9i and use the new, production releases of iSQL*Plus.
    Alison
    iSQL*Plus Team

  • Problems starting iSQL PLUS service on Windows XP

    Dear Forum,
    I installed oracle 10g for the first time on Win XP. The Installtion-Process was fine. Now I'm not able to iSQL Plus, beacause the iSQL service in the administration area does not start properly. The status always says that it is starting unfortunately with no success.
    Need help!
    Thanks in advance
    sportmeier

    hi
    i was wondering if and how you solved this error
    i have the same problem now
    thanks

  • Need Help Connect to MySQL using dg4odbc

    I am looking for some help getting a dblink working from my Oracle 11.1.0.6 Dtabase to a MySQL 5.0.77 Database (Holds Bugzilla).
    This is the error I get when I try select * from "bugs"@bugz;
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [MySQL][ODBC 5.1 Driver][mysqld-5.0.77]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '"bug_id" FROM "bugs" A1' at line 1
    ORA-02063: preceding 2 lines from BUGZ
    On Server hosting Oracle DB:
    lsb_release -id
    Distributor ID: RedHatEnterpriseServer
    Description: Red Hat Enterprise Linux Server release 5.7 (Tikanga)
    rpm -qa|grep mysql
    mysql-connector-odbc-5.1.8-1.rhel5
    mysql-5.0.77-4.el5_6.6
    tnsping BUGZ
    TNS Ping Utility for Linux: Version 11.1.0.6.0 - Production on 08-DEC-2011 07:53:52
    Copyright (c) 1997, 2007, Oracle. All rights reserved.
    Used parameter files:
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))) (CONNECT_DATA = (SID = BUGZ)) (HS = OK))
    OK (0 msec)
    tnsnames.ora
    BUGZ =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SID = BUGZ)
        (HS = OK)
      )listener.ora
    SID_LIST_LISTENER =
      (SID_LIST =
         (SID_DESC =
            (ORACLE_HOME = /u00/app/oracle/product/11.1.0/db_1)
            (SID_NAME = BUGZ)
            (PROGRAM = dg4odbc)
            (ENVS ="LD_LIBRARY_PATH=/u00/app/oracle/product/11.1.0/db_1/lib:/usr/lib64:/usr/lib")
    .../u00/app/oracle/product/11.1.0/db_1/hs/admin/initbugz.ora
    # This is a sample agent init file that contains the HS parameters that are
    # needed for the Database Gateway for ODBC
    # HS init parameters
    HS_FDS_CONNECT_INFO=bugz
    HS_FDS_TRACE_LEVEL=off
    HS_FDS_SHAREABLE_NAME=/usr/lib64/libmyodbc5.so
    HS_LANGUAGE=AMERICAN_AMERICA.WE8ISO8859P15
    # ODBC specific environment variables
    set ODBCINI=/u00/home/oracle/.odbc.ini
    # Environment variables required for the non-Oracle system
    set HOME=/u00/home/oracle
    ~/u00/home/oracle/.odbc.ini
    [ODBC Data Sources]
    [bugz]
    Driver      = /usr/lib64/libmyodbc5.so
    DATABASE    = bugzilla
    DESCRIPTION = MySQL ODBC 5.x Connector
    PORT        = 3306
    SERVER      = bugzilla
    UID         = bugquery
    PWD         = password
    CHARSET     = latin1
    TRACEFILE   = /tmp/myodbc-bugzdsn.trc
    TRACE       = OFFODBC Test
    isql -v bugz
    +---------------------------------------+
    | Connected!                            |
    |                                       |
    | sql-statement                         |
    | help [tablename]                      |
    | quit                                  |
    |                                       |
    +---------------------------------------+
    SQL> help bugs
    [Bunch of stuff omitted]
    SQLRowCount returns 31
    31 rows fetched
    SQL>

    I did the delete and reconnected and the rows where created again.
    I am testing with two SQL statements right now from TOAD and from SQLPlus.
    A. select bugs."bug_id" as Ticket, bugs."short_desc", bugs."bug_status" AS Status, bugs."assigned_to", dump(bugs."short_desc") from "bugs"@BUGZ bugs where "bug_id" = 2;
    B. select bugs."bug_id" as Ticket, bugs."short_desc", bugs."bug_status" AS Status, bugs."assigned_to" from "bugs"@BUGZ bugs
    When I issue "A" I get good looking results. When I issue "B" I get an error.
    SQL> select bugs."bug_id" as Ticket, bugs."short_desc", bugs."bug_status" AS Status, bugs."assigned_to", dump(bugs."short_desc") from "bugs"@BUGZ bugs where "bug_id" = 2;
        TICKET
    short_desc
    STATUS                                                           assigned_to
    DUMP(BUGS."SHORT_DESC")
             2
    COMA computer has updates set to auto install  please disable and allow me to ch
    oose
    CLOSED                                                                     8
    Typ=1 Len=168: 0,67,0,79,0,77,0,65,0,32,0,99,0,111,0,109,0,112,0,117,0,116,0,101
        TICKET
    short_desc
    STATUS                                                           assigned_to
    DUMP(BUGS."SHORT_DESC")
    ,0,114,0,32,0,104,0,97,0,115,0,32,0,117,0,112,0,100,0,97,0,116,0,101,0,115,0,32,
    0,115,0,101,0,116,0,32,0,116,0,111,0,32,0,97,0,117,0,116,0,111,0,32,0,105,0,110,
    0,115,0,116,0,97,0,108,0,108,0,32,0,32,0,112,0,108,0,101,0,97,0,115,0,101,0,32,0
    ,100,0,105,0,115,0,97,0,98,0,108,0,101,0,32,0,97,0,110,0,100,0,32,0,97,0,108,0,1
    08,0,111,0,119,0,32,0,109,0,101,0,32,0,116,0,111,0,32,0,99,0,104,0,111,0,111,0,1
        TICKET
    short_desc
    STATUS                                                           assigned_to
    DUMP(BUGS."SHORT_DESC")
    15,0,101
    SQL> select bugs."bug_id" as Ticket, bugs."short_desc", bugs."bug_status" AS Status, bugs."assigned_to" from "bugs"@BUGZ bugs;
    ERROR:
    ORA-28528: Heterogeneous Services datatype conversion error
    ORA-02063: preceding line from BUGZ
    no rows selectedThe bugs table looks like this:
    CREATE TABLE `bugs` (
      `bug_id` mediumint(9) NOT NULL auto_increment,
      `assigned_to` mediumint(9) NOT NULL,
      `bug_file_loc` mediumtext,
      `bug_severity` varchar(64) NOT NULL,
      `bug_status` varchar(64) NOT NULL,
      `creation_ts` datetime default NULL,
      `delta_ts` datetime NOT NULL,
      `short_desc` varchar(255) NOT NULL,
      `op_sys` varchar(64) NOT NULL,
      `priority` varchar(64) NOT NULL,
      `product_id` smallint(6) NOT NULL,
      `rep_platform` varchar(64) NOT NULL,
      `reporter` mediumint(9) NOT NULL,
      `version` varchar(64) NOT NULL,
      `component_id` smallint(6) NOT NULL,
      `resolution` varchar(64) NOT NULL default '',
      `target_milestone` varchar(20) NOT NULL default '---',
      `qa_contact` mediumint(9) default NULL,
      `status_whiteboard` mediumtext NOT NULL,
      `votes` mediumint(9) NOT NULL default '0',
      `lastdiffed` datetime default NULL,
      `everconfirmed` tinyint(4) NOT NULL,
      `reporter_accessible` tinyint(4) NOT NULL default '1',
      `cclist_accessible` tinyint(4) NOT NULL default '1',
      `estimated_time` decimal(7,2) NOT NULL default '0.00',
      `remaining_time` decimal(7,2) NOT NULL default '0.00',
      `deadline` datetime default NULL,
      `alias` varchar(20) default NULL,
      `cf_type` varchar(64) NOT NULL default '---',
      `cf_notes` mediumtext,
      `keywords` mediumtext NOT NULL,
      PRIMARY KEY  (`bug_id`),
      UNIQUE KEY `bugs_alias_idx` (`alias`),
      KEY `bugs_assigned_to_idx` (`assigned_to`),
      KEY `bugs_creation_ts_idx` (`creation_ts`),
      KEY `bugs_delta_ts_idx` (`delta_ts`),
      KEY `bugs_bug_severity_idx` (`bug_severity`),
      KEY `bugs_bug_status_idx` (`bug_status`),
      KEY `bugs_op_sys_idx` (`op_sys`),
      KEY `bugs_priority_idx` (`priority`),
      KEY `bugs_product_id_idx` (`product_id`),
      KEY `bugs_reporter_idx` (`reporter`),
      KEY `bugs_version_idx` (`version`),
      KEY `bugs_component_id_idx` (`component_id`),
      KEY `bugs_resolution_idx` (`resolution`),
      KEY `bugs_target_milestone_idx` (`target_milestone`),
      KEY `bugs_qa_contact_idx` (`qa_contact`),
      KEY `bugs_votes_idx` (`votes`),
      CONSTRAINT `fk_bugs_assigned_to_profiles_userid` FOREIGN KEY (`assigned_to`) REFERENCES `profiles` (`userid`) ON UPDATE CASCADE,
      CONSTRAINT `fk_bugs_component_id_components_id` FOREIGN KEY (`component_id`) REFERENCES `components` (`id`) ON UPDATE CASCADE,
      CONSTRAINT `fk_bugs_product_id_products_id` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON UPDATE CASCADE,
      CONSTRAINT `fk_bugs_qa_contact_profiles_userid` FOREIGN KEY (`qa_contact`) REFERENCES `profiles` (`userid`) ON UPDATE CASCADE,
      CONSTRAINT `fk_bugs_reporter_profiles_userid` FOREIGN KEY (`reporter`) REFERENCES `profiles` (`userid`) ON UPDATE CASCADE
    ) ENGINE=InnoDB AUTO_INCREMENT=4570 DEFAULT CHARSET=utf8;Edited by: Sky13 on Dec 22, 2011 1:36 PM

Maybe you are looking for

  • Crystal Report with text(csv) data file, can we set it as input parameter?

    Hi, I am a new user of Crystal Reports 2008. I have created a report with charts in it. The input data comes from a csv text file. Can I set the name of this text file as an input parameter? as I need to generate 44 similar reports with different tex

  • How do I find the serial number for my VirusBarrier Plus software downloaded from App Store

    I have dowloaded VirusBarrier  Plus software from the apps store and need a serial number to register. How do I find the serial number. Peter

  • Error in User Mapping

    Hi All, I have created a system from Application integrator PAR file and has added on extrafield to the system as I have three fields to be mapped with the target application. On doing so when I try to preview the iView using this system for connecti

  • Reg. METHOD redefnition

    Hi, I tried to inherit a subclass from super class. In se38, i created supercalss and subclasses as local classes. Here in subclass, the system was expecting the keyword REDEFINITION while resuing the same method in the subclass. But when i do the sa

  • What is the name of my Report Server Name

    How do i know the name of my Report Server. or How to create a new one. I am using Application Server 10g.