Reputation: 3441
I am registered at Go Daddy and want to restore the database there from my local machine. The tool they provide me with doesn't work unless it's from them. I'm trying to restore from my local SQL server, but when I browse I can't restore the local files of the remote database.
Upvotes: 0
Views: 982
Reputation: 10115
There are basically two ways to restored the Database
using Sql Server
.
SSMS
Restore Utility.Upvotes: 0
Reputation: 5359
They're intentionally preventing users from restoring backups that are "foreign" to them in order to satisfy an obscure Microsoft security recommendation.
You will have to perform a schema comparison and a data comparison between your local machine and the empty database on the hosting to generate the scripts to re-create all of the objects and data. (Having those scripts available in a source control storage would also be helpful.)
Upvotes: 1