vote up 6 vote down star

I know the statement:

create table xyz_new as select * from xyz;

Which copies the structure and the data, but what if I just want the structure?

flag

3 Answers

vote up 13 vote down check

Just use a where clause that won't select any rows:

create table xyz_new as select * from xyz where 1=0;

link|flag
simple, and did the trick - thank you :o) – Andrew Oct 24 '08 at 14:58
This is a great, clean answer. Just want to remind that this will not include any constraints.. the new table won't even have a primary key. – JosephStyons Oct 24 '08 at 15:02
this will not replicate sequences or triggers either. – mugafuga Oct 24 '08 at 17:29
nor will the new table have any indexes - don't get caught out trying to do a big query on the new table :-) – hamishmcn Nov 1 '08 at 18:09
vote up 4 vote down

Using sql developer select the table and click on the DDL tab

You can use that code to create a new table with no data when you run it in a sql worksheet

sqldeveloper is a free to use app from oracle.

If the table has sequences or triggers the ddl will sometimes generate those for you too. You just have to be careful what order you make them in and know when to turn the triggers on or off.

link|flag
vote up 1 vote down

I used the method that you accepted a lot, but as someone pointed out it doesn't duplicate constraints (except for NOT NULL, I think).

A more advanced method if you want to duplicate the full structure is:

SET LONG 5000
SELECT dbms_metadata.get_ddl( 'TABLE', 'MY_TABLE_NAME' ) FROM DUAL;

This will give you the full create statement text which you can modify as you wish for creating the new table. You would have to change the names of the table and all constraints of course.

(You could also do this in older versions using EXP/IMP, but it's much easier now.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.