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
what is bcp? When is it used?
When a dml statement is executed, in which cursor attributes, the outcome of the statement is saved?
What is a primary key? Explain
What is the advantage of nosql?
Explain what is an index?
Is oracle and sql same?
how do you know the version of your mysql server? : Sql dba
State some properties of relational databases?
What is rownum in sql?
What is Histogram?
Why do we use procedures in pl sql?
explain the options of myisamchk to improve the performance of a table. : Sql dba
Can we create table in function?
how can we encrypt and decrypt a data present in a mysql table using mysql? : Sql dba
How to use distinct and count in sql query? Explain