Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
allen_k85
Starting Member
3 Posts |
Posted - 2009-12-10 : 07:40:39
|
hey everyone, below is my query..create table newtablename as select * from oldtablenametablespace tempin which scenario, the above statement wont work in oracle..would be grateful if anyone can reply to this. Allen |
|
|
RickD
Slow But Sure Yak Herding Master
3608 Posts |
Posted - 2009-12-10 : 07:43:51
|
This is a SQL Sever forum, but anyway.. To do this in SQL Server:select * into newtablenamefrom oldtablename In Oracle, ask on an oracle forum. |
 |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2009-12-10 : 07:44:12
|
quote: Originally posted by allen_k85 hey everyone, below is my query..create table newtablename as select * from oldtablenametablespace tempin which scenario, the above statement wont work in oracle..would be grateful if anyone can reply to this. Allen
This site is for MS SQL ServerPost your question at www.orafaq.comEDIT : MadhivananFailing to plan is Planning to fail |
 |
|
|
allen_k85
Starting Member
3 Posts |
Posted - 2009-12-10 : 07:54:57
|
| thanks for the oracle link...tkAllen |
 |
|
|
|
|
|