-1

I want create same table in other schema, for which i want get create table script of existing in oracle 10g using Query

Please tell me how to get it..

2

1 Answer 1

0

If you really want a SQL statement, you can use the dbms_metadata package

select dbms_metadata.get_ddl( 'TABLE', 'EMP', 'SCOTT' )
from dual;
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.