vote up 2 vote down star

If I have a table like:

CREATE TABLE FRED
(
recordId number(18) primary key,
firstName varchar2(50)
);

Is there an easy way to clone it's structure (not it's data) into another table of a given name. Basically I want to create table with exactly the same structure, but a different name, so that I can perform some functionality on it. I want to do this in code obviously. Java preferably, but most other languages should be similar.

flag

I'm suspicious of why you want to do this in code -- it's extremely rare for there to be a need to create a table on the fly in Oracle. Perhaps if you give more details we might suggest a way of overcoming the need to do this at all. – David Aldridge Nov 4 '08 at 4:17

2 Answers

vote up 11 vote down check

If you're looking a way to find the exact DDL to recreate the table, including the storage clause, you can use

select dbms_metadata.get_ddl('TABLE', 'TABLE_NAME', 'SCHEMA_NAME') from dual

as described here.

link|flag
Nice find. Hadn't seen that before. Any idea what grants you need to run it? – BQ Nov 4 '08 at 3:33
I don't have access to Oracle box currently, so I can't test for sure. – Salamander2007 Nov 4 '08 at 3:52
No problem. Just asking out of curiosity rather than need. – BQ Nov 4 '08 at 4:04
vote up 5 vote down

CREATE TABLE tablename AS SELECT * FROM orginaltable WHERE 1=2;

Edit: The WHERE clause prohibits any rows from qualifying.

link|flag
Won't that copy it's data as well? I just want the structure. – rustyshelf Nov 4 '08 at 2:54
No rows are copied since 1=2 is always false. You also will not get any constraints, foreign keys, indexes, etc. – WW Nov 4 '08 at 2:57
thanks for updating it, that's exactly what I wanted! – rustyshelf Nov 4 '08 at 2:59
I accidentally submitted the answer before I put the WHERE clause in there and he got his comment in in the 20 sec it took me to edit. I read the OP as just wanting the table def, not the extras you mention (but thanks for noting it for the OP). – BQ Nov 4 '08 at 3:00
@rustyshelf Glad to help! – BQ Nov 4 '08 at 3:04
show 1 more comment

Your Answer

Get an OpenID
or

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