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
 General SQL Server Forums
 New to SQL Server Programming
 Update a remote table

Author  Topic 

skiabox
Posting Yak Master

169 Posts

Posted - 2008-11-03 : 05:35:33
I want to update the values of some fields in a remote database table.
The problem is that the connection is too slow to update the table manually so I backed up the database to make the changes locally.
How can I 'upload' these changes to the remote database table?
Thank you!

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-11-03 : 05:49:00
you need to restore the new version to overwrite the remote db.But this will cause any changes that were done subsequently to be lost
Go to Top of Page

skiabox
Posting Yak Master

169 Posts

Posted - 2008-11-03 : 06:21:59
Can I save these changes as a script and then run it at the remote database?
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-11-03 : 06:42:58
yup. just save the update script and apply it directly onto remote server.
Go to Top of Page
   

- Advertisement -