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.
| Author |
Topic |
|
amirs
Constraint Violating Yak Guru
260 Posts |
Posted - 2008-05-06 : 07:23:09
|
| hihow to restore database in another machine in sql2005 |
|
|
GilaMonster
Master Smack Fu Yak Hacker
4507 Posts |
Posted - 2008-05-06 : 07:55:35
|
| Copy the backup file to the other machine then restore the backup as normal. Make sure to change the file locations if the directory structure is different.Are you getting an error or something?--Gail Shaw |
 |
|
|
amirs
Constraint Violating Yak Guru
260 Posts |
|
|
GilaMonster
Master Smack Fu Yak Hacker
4507 Posts |
Posted - 2008-05-06 : 08:44:26
|
| You're trying to restore over an existing database?On the options tab (assuming you're using management studio), check the option "Overwrite the existing database"--Gail Shaw |
 |
|
|
amirs
Constraint Violating Yak Guru
260 Posts |
Posted - 2008-05-06 : 08:59:20
|
| GilaMonstertheir is no effect of error to your changes |
 |
|
|
GilaMonster
Master Smack Fu Yak Hacker
4507 Posts |
Posted - 2008-05-06 : 09:11:50
|
| Try doing a restore using T-SQL.RESTORE DATABASE <Database name> FROM Disk='<backup file location>'WITH ... <All file move options here>See what that does.--Gail Shaw |
 |
|
|
sodeep
Master Smack Fu Yak Hacker
7174 Posts |
Posted - 2008-05-06 : 11:11:37
|
| Move the files while doing restore. |
 |
|
|
X002548
Not Just a Number
15586 Posts |
|
|
X002548
Not Just a Number
15586 Posts |
|
|
|
|
|