Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by aviret

  1. aviret

    ERROR!!! while installing Oracle9iAS

    You will get this identifier with your contract with Oracle. I get the following extract from Metalink which resolves the problem: ----------------snip-snip------------------ 3. The /etc/hosts second entry should contain the fully qualified host name. Edit /etc/host to ensure it is in the...
  2. aviret

    ERROR!!! while installing Oracle9iAS

    I also get the same message, you better have to open a TAR on Metalink. Greetings, Alain V.
  3. aviret

    ERROR!!! while installing Oracle9iAS

    Hello, When do you get this message ? Do you have an extract of the installation log ? Regards, Alain
  4. aviret

    Password for sql plus on oracle 9i

    Hello, start sqlplus with the command: $ sqlplus /nolog And then you may use: SQL> connect system/manager as sysdba SQL> connect sys/change_on_install as sysdba or with the dba group (under Unix): SQL> connect / as sysdba Greetings, Alain V.
  5. aviret

    Oracle Trace

    Yes, you can do it for one session like this: dbms_system.set_sql_trace_in_session(SID,SerialNb,true); where you may find SID and SerialNB in v$session: SELECT SID, SERIAL# SerialNb FROM v$session; And you also can do it for all sessions like this (under SYS): alter system set events '10046...
  6. aviret

    Converting VB6 code to VBScript: any idea (using IMSTscNonScriptable)

    The following code works within VB6. How could I declare (or cast) an object like "NonScriptable" in VBScript ? Private Sub btnSejour_Click() Dim NonScriptable As IMsTscNonScriptable Set NonScriptable = MsTscAx1.Object MsTscAx1.Server = "myserver&quot...
  7. aviret

    How do i open a file with it's associated application using JAVA ?

    Hello,<br> <br> You may do that with the help of the class java.lang.Runtime<br> and it's method exec(String command). Your string may contain for instance &quot;C:\appl\winword.exe c:\myDoc.doc&quot;.<br> <br> Hope this helps, greetings,<br> Alain V.<br>

Part and Inventory Search

Back
Top