Hi, im looking at Moving data older than 120 days from one database Table to another database Table. I have tested using the Select * INTO table name from OriginalTable where FieldDate < dateadd(day, -120, getdate()). This inserts the data over 120 days old into the Table on the 2nd Database but keeps the data in the original table. What im looking for is a move command so it moves the data from the Original Table to the New Table, is this possible (Im trying to keep anyway from the DELETE command as ive heard stories about this affecting the stats and indexes on the other tables on the database)? I Hope someone can help me out there.
Thanks
Thanks