Scheduled database updates

Discussion in 'Databases' started by markreyn, Jun 4, 2008.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. Hello</o:p>
    </o:p>
    I would like to update my DASP SQL 2005 database with data from the SQL server on my LAN.</o:p>
    The DASP data will be read only, i.e. no updates. I would like to update/replace the DASP data every few hours, so I need an automated process.</o:p>
    </o:p>
    I've used SQL snapshot replication on an internal SQL server in the past, but i don't think it is support by DASP.</o:p>
    </o:p>
    Not sure how to tackle this issue, any past experience, ideas or suggestions would be greatly appreciated.</o:p>
    </o:p>
    Mark
     
  2. The only way to do this from your end, that I'm aware of, is with local DTS.

    You can create each server in a local DTS package then run procedures from it on a schedule.

    Be careful however, you will need to watch for duplicate records.
    A safety net I've used for doing this with DTS is to drop some tables before a trigger or procedure is run.
    You can use a temp table to hold records, drop the receiving data table, then fill her up.
    That's not necessary, just a little trick for insurance.
    Salute,
    Mark
     
  3. Thanks Mark

    I will install and play with DTS tomorrow

    Mark
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page