Ask Experts Questions for FREE Help !
Ask

Search:

Type: Posts; User: ordba

Search: Search took 0.03 seconds.

  1. Answers
    2
    Views
    4,502

    If you are on the same server you can just set...

    If you are on the same server you can just set SID and then connect using SQL*Plus.

    Host string for what ?
  2. Answers
    5
    Views
    9,585

    What tool are you using ? SQL*Plus or something...

    What tool are you using ? SQL*Plus or something else ?
  3. Answers
    3
    Views
    1,087

    If you want to just read about tablespace, you...

    If you want to just read about tablespace, you can start here...

    Tablespaces, Datafiles, and Control Files
  4. Question: What is Oracle?

    by ordba
    Answers
    7
    Views
    1,231

    Another good place to start is Oracle Concepts ...

    Another good place to start is Oracle Concepts

    Contents
  5. Answers
    3
    Views
    1,087

    A good place to start : Concepts Contents...

    A good place to start : Concepts

    Contents
  6. Question: What is Oracle?

    by ordba
    Answers
    7
    Views
    1,231

    You can start with Oracle Databases here... ...

    You can start with Oracle Databases here...

    Database 11g | Oracle Database 11g | Oracle
  7. Question: TNS error

    by ordba
    Answers
    3
    Views
    1,248

    Is the database on same server ? If yes, set...

    Is the database on same server ? If yes, set ORACLE_SID and try to connect again. If not, check TNSNames.

    How are you trying to connect ?
  8. Answers
    1
    Views
    3,290

    Try and use subselect... Select emp_name from...

    Try and use subselect...

    Select emp_name from
    (select emp_name,dept_no,max(salary) from emp group by emp_name,dept_no);
  9. Question: Tns adaptor error

    by ordba
    Answers
    1
    Views
    989

    Where is the database ?

    Where is the database ?
  10. Answers
    3
    Views
    5,773

    Run this before you execute Statement from...

    Run this before you execute Statement from SQL*Plus

    Select owner,table_name from all_tables where table_name like 'TRG_FARINVC%' ;

    Show user

    Are you connecting as same user from TOAD and...
  11. Answers
    3
    Views
    5,773

    SQL> create table testing_tbl1 as select * from...

    SQL> create table testing_tbl1 as select * from testing_tbl;

    Table created.

    SQL> select table_name from user_tables where table_name like 'TESTING%';

    TABLE_NAME...
Results 1 to 11 of 13