Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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)

Answers were Sorted based on User's Feedback



I have 2 Databases. How can create a table in particular database? How can i know the list of table..

Answer / 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

I have 2 Databases. How can create a table in particular database? How can i know the list of table..

Answer / amit

Suppose your 2 databases are name as PROD1 and PROD2
1) How can create a table in particular database?
=> First you have to connect to the database where you want
to create table with given login and password.
and then if you have create permission than you can use
following sql
CREATE TABLE "table_name"
("column 1" "data_type_for_column_1",
"column 2" "data_type_for_column_2",
... )

2) select * from tab; will show you how many tables,view or
synonyms are there in your schema.

Is This Answer Correct ?    6 Yes 0 No

I have 2 Databases. How can create a table in particular database? How can i know the list of table..

Answer / meher

If you want to list the tables presented in each database
use the below query:

SELECT * FROM DBA_TABLES; or SELECT * FROM USER_TABLES; -->
this will display all the tables of particulara db.

If you use SELECT * FROM TAB; --> this will display all the
tables,views or synonyms of particulara db.

Is This Answer Correct ?    3 Yes 0 No

I have 2 Databases. How can create a table in particular database? How can i know the list of table..

Answer / vishnu

you can also use the database links to get the data from
other database tables. syntax is table_name@db_link.

Is This Answer Correct ?    3 Yes 2 No

I have 2 Databases. How can create a table in particular database? How can i know the list of table..

Answer / priya

login to one database like
sqlplus username@databasename/password

After enter into sql
create table databasename.tablename
and to call select * from databasename.tablename

then to connect to other user

connect dbuser/pwd (not sure of this statement .. It should
be something like this please google it otherwise)

and to list the tables particular to database:
select * from tab; fetch the result from that particular
database which is connected

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

What is trigger point?

0 Answers  


Is coalesce faster than isnull?

0 Answers  


Can a select statement fire a trigger?

0 Answers  


can we create index on index?

7 Answers   iFlex, Symphony,


How can I see all tables in sql?

0 Answers  


Does access use sql?

0 Answers  


Can we call dml statement in function?

0 Answers  


four procedures is are there should i write their in a package

2 Answers  


How to avoid using cursors? What to use instead of cursor and in what cases to do so?

0 Answers  


what are the system privileges that are required by a schema owner (user) to create a trigger on a table?

0 Answers  


How do you select unique values in sql?

0 Answers  


what is sql profiler? : Sql dba

0 Answers  


Categories