Answer Posted / selvaraj v
In Oracle 10g :
---------------
Create New Table in another table with same data's:
---------------------------------------------------
copy from coeot1a2/coeot1a2@coeau to scott/tiger@coeau
CREATE s11 using select * from major_list;
Insert data's into another table with same data's:
---------------------------------------------------
copy from coeot1a2/coeot1a2@coeau to scott/tiger@coeau
INSERT s11 using select * from major_list;
Append data's into another table with same data's:
---------------------------------------------------
copy from coeot1a2/coeot1a2@coeau to scott/tiger@coeau
APPEND s11 using select * from major_list;
Replace data's into another table with same data's:
---------------------------------------------------
copy from coeot1a2/coeot1a2@coeau to scott/tiger@coeau
REPLACE s11 using select * from major_list;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can we create index on primary key?
how to delete an existing column in a table? : Sql dba
what is a table in a database ? : Sql dba
Why stored procedure is better than query?
What are the query optimization techniques?
How many tables can a sql database have?
What is group function in sql?
Does sql support programming?
Is sql a oracle?
Explain polymorphism in pl/sql.
Can a table have no primary key?
how to concatenate two character strings? : Sql dba
what are rollup and cube in t-sql? : Transact sql
What is the difference between local and global temporary table?
what is a foreign key ? : Sql dba