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 |
suarezst1984
Starting Member
16 Posts |
Posted - 2008-11-26 : 18:22:02
|
I have an sql machine that is working fine. I have a way to backup the database to a hard drive right now but unfortunately this backup is just for the database and misses somethings like stored procedures. I basically want to create a duplicate of my whole sql machine so I can set up another one. I was wondering if any of you would know any software or any way that this could be accomplished. |
|
SwePeso
Patron Saint of Lost Yaks
30421 Posts |
Posted - 2008-11-26 : 18:26:24
|
Detach the database, copy the mdf and ldf files to new location and attach.Or backup with sql backup and restore? E 12°55'05.63"N 56°04'39.26" |
 |
|
sodeep
Master Smack Fu Yak Hacker
7174 Posts |
Posted - 2008-11-26 : 19:44:20
|
quote: Originally posted by suarezst1984 I have an sql machine that is working fine. I have a way to backup the database to a hard drive right now but unfortunately this backup is just for the database and misses somethings like stored procedures. I basically want to create a duplicate of my whole sql machine so I can set up another one. I was wondering if any of you would know any software or any way that this could be accomplished.
Backup covers everything done at that time. |
 |
|
|
|
|