I m having a huge problem with a client.
Their infrastructure blows, and most of the development done end up with mysterious errors(which only happen in their environment).
What I m trying to do is create a separate environment (a VPS) and push the application server and the database into this new environment, so they can actually see the problem lies within their infrastructure.
I ve tried recreating the database manually, but its impossible, too much constraints, indexes etc...
How do I restore a database backup(SQL Serve 2005) into a SQL Server 2008 Express edition (my test environment)?
I used this command to generate the backup...
BACKUP DATABASE [databasename] TO
DISK = c:database_backup_20091228_1500.bak
WITH NOFORMAT, NOINIT, NAME = N Database-Full Backup ,
SKIP, NOREWIND, NOUNLOAD, STATS = 10
Which seems to be working (just ran it, server is generating the file)..
Now into my Sql Server 2008 express edition, how do I restore it?
Is it possible?
Any alternatives?
Thx!