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.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 creating a dump file

Author  Topic 

AskSQLTeam
Ask SQLTeam Question

0 Posts

Posted - 2006-01-20 : 08:32:54
issam writes "i need help in creating a dump file in any way in SQL that do the following:
1- create a new table that contains the same info from my production table without effecting it
2- every 1 hour any change happend in the real table should take a place in the dump table

if that contains queries, i need them too.

thank you

kaddoura"

RickD
Slow But Sure Yak Herding Master

3608 Posts

Posted - 2006-01-20 : 08:53:47
Have a look at replication, either that or just generate a script of the table and then write the delete, update and insert statements yourself and schedule it as a job to run hourly.
Go to Top of Page
   

- Advertisement -