Reputation: 3021
I need to move my SQL Server database to shared hosting. Is there a tool there that allows me to import a database backup file? I'm stuck with actually making .bak
file.
Its suggested that I use SQL Server Management Studio (SSMS), I tried downloading it from here, but failed to install.
I found I could run a query like
BACKUP DATABASE mydbname TO disk = 'd:\bak'
but can't figure out where I do this in VS 2010.
I'm stuck on this lame problem, please give me a hint.
Upvotes: -1
Views: 320
Reputation: 3021
Resolved: I found this detailed tutorial on how to install SSMS here.
Then I used following query to make backup:
BACKUP DATABASE mydbname TO disk = 'd:\bak'
Upvotes: 0
Reputation: 216313
This little utility could be your solution, it's free for any manually backups.
However, remember that a SQLServer backup could be restored only on the same or subsequent versions of SQLServer
Upvotes: 2