I have 2 Databases. How can create a table in particular
database? How can i know the list of tables presented each
database?( in oracle 10g)
Answer Posted / neeraj sinha
suppose you have two databases: db1 and db2
you have to select one of them
as
sql>use db1;
then use
sql>select * from tab;
it will show you the listing required.!
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
which operator is used in query for pattern matching? : Sql dba
How will you distinguish a global variable with a local variable in pl/sql?
What are the differences between in and exists clause?
Which are the different types of indexes in sql?
what does the t-sql command ident_current does? : Transact sql
What are the types of join and explain each?
How do I run a sql query?
how to delete duplicate rows from a join tables(I have three tables on that join) how do you know which join is need to be used? The select statement I have is: SELECT gc_skill_type.skill_type, gc_area_tec.area, gc_technology.technology, gc_technology.id_technology, gc_area_tec.id_area_tec FROM gc_skill_type, gc_area_tec, gc_technology WHERE gc_area_tec.id_skill_type (+) = gc_skill_type.id_skill_type AND gc_technology.id_area_tec (+) = gc_area_tec.id_area_tec order by gc_skill_type.skill_type asc, gc_area_tec.area asc, gc_technology.technology asc
What is compilation error in pl sql?
What will you get by the cursor attribute sql%notfound?
What are the benefits of pl/sql packages?
Can you inner join the same table?
Can we use view in stored procedure?
What is cte sql?
what are the 'mysql' command line options? : Sql dba