![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
SQL 2000; I have a table that has info from 2001 thru 2005, I want to create new tables and move records from the original table to the new tables, based on year. What is the best way to do this? |
#3
| |||
| |||
|
|
1. Create empty tables for 2001 to 2005 with record structures identical to the original and no indexes. 2. For each table, do something like the following: insert into SALES_2001 select * from SALES where period = 2001 3. Create indexes to the new tables. Since you are inserting into new tables, you could also temporarily set the database recovery model to "simple". If there are millions of rows, this will reduce transaction logging and speed things up. "vidro" <vidro (AT) discussions (DOT) microsoft.com> wrote in message news:1439F5CF-1C3E-4A28-BEF8-D7CA4423CBA3 (AT) microsoft (DOT) com... SQL 2000; I have a table that has info from 2001 thru 2005, I want to create new tables and move records from the original table to the new tables, based on year. What is the best way to do this? |
![]() |
| Thread Tools | |
| Display Modes | |
| |