mcclunyboy
Registered User.
- Local time
- Yesterday, 20:54
- Joined
- Sep 8, 2009
- Messages
- 292
Hi,
Random question.
I want to take an exact copy of a table - then every now and then overwrite this copy with a more up to date copy.
Question -
Does that create a new table from scratch?
Or is it better to use to create the table and then populate it:
thoughts?
Random question.
I want to take an exact copy of a table - then every now and then overwrite this copy with a more up to date copy.
Question -
Code:
select * into [I]tablename [/I]from [I]originaltable[/I]
Or is it better to use to create the table and then populate it:
Code:
Create table [I]tablename [/I]from (select * from [I]originaltable)[/I]
thoughts?