Viewing 8 posts - 1 through 8 (of 8 total)
I have restored the backups on a different server and it worked great !
I have lots of free space on the disk.
March 20, 2006 at 8:51 am
Here is similar discussion
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=181098
February 23, 2006 at 8:00 am
I use this:
select b.server , a.name, b.step_name,b.sql_message_id, b.sql_severity
from msdb.dbo.sysjobs a, msdb.dbo.sysjobhistory b
where a.job_id = b.job_id
and (b.run_date = convert(int,convert(varchar,getdate(),112)) or
b.run_date + 1 = convert(int,convert(varchar,getdate(),112)))
and b.run_status in (0,3)
February 9, 2006 at 7:38 am
Take a look at this
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnadvnet/html/vbnet09102002.asp
January 10, 2006 at 7:55 am
Stored procedues should be left on the development box.
All I am moving is the tables and data.
November 7, 2005 at 7:13 am
I am moving about 16G data on a 1G network. I am trying to copy the tables and data.
November 2, 2005 at 8:53 am
Viewing 8 posts - 1 through 8 (of 8 total)