I'm in the process of deploying a realtime data system using a SQL 2k db as the backend. ~80% of the data has a lifespan of less than 60 seconds (most closer to 15-30).
I'm working on a backup strategy for the system, but am unsure of the best approach. For the tables that store the realtime data, I only need the table structure backed up, not the data within (as it would be end of life before the backup even completed), but need full backup of the system tables (user data, session data, etc) and stored procedures.
Could anyone offer some tips on what might be the best way to accomplish this? I was considering creating a 'Backup' database, then using some manner of script to copy the table structure only from the data tables, then full copies of the system tables and procs, but I'm not exactly sure how to handle this. Unfortunately, our company lost most of its DBAs recently, and the remaning ones are more Oracle proficient, so I've had to take this task on myself.
I'm working on a backup strategy for the system, but am unsure of the best approach. For the tables that store the realtime data, I only need the table structure backed up, not the data within (as it would be end of life before the backup even completed), but need full backup of the system tables (user data, session data, etc) and stored procedures.
Could anyone offer some tips on what might be the best way to accomplish this? I was considering creating a 'Backup' database, then using some manner of script to copy the table structure only from the data tables, then full copies of the system tables and procs, but I'm not exactly sure how to handle this. Unfortunately, our company lost most of its DBAs recently, and the remaning ones are more Oracle proficient, so I've had to take this task on myself.