Viewing 15 posts - 1,111 through 1,125 (of 1,166 total)
What edition of sql 2005 installed?
You might have installed either workgroup or express edition. Check the following...
SQL Server 2005 Features Comparison
http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 3:13 pm
I believe it is active/active which is more than one instance.. if you have only one instance it is active/passive...
But read the thread from sql gurus...
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 2:56 pm
Connections May Be Forcibly Closed When Running on Windows Server 2003 SP1
http://download.microsoft.com/download/5/0/e/50ec0a69-d69e-4962-b2c9-80bbad125641/ReadmeSQL2005.htm
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 2:44 pm
If cleanup task won't work you can use the procedure...
declare @dt datetime
set @dt = getdate()-2
EXECUTE master.dbo.xp_delete_file 0,N'\\sql2k5\SQLBackup\,N'.bak', @dt
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 2:33 pm
Did you change the datatype in a proc or table?
It could be Data Type Precedence issue.
http://msdn2.microsoft.com/en-us/library/ms190309.aspx
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 1:59 pm
It could be blocing issue too...
Do you have any blocking information for that period...
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 1:35 pm
Means you guys are not interested for point in time recovery... then it advisable to change the recovery model to SIMPLE.
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 1:29 pm
Good to know it is working![]()
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 1:19 pm
Try also sp_spaceused procedure after DBCC UPDATEUSAGE...
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 1:13 pm
I beleiv it is sql BUG...
You can make use of the following scripts...
http://www.databasejournal.com/scripts/article.php/1450801
http://vyaskn.tripod.com/sp_show_biggest_tables.htm
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 1:12 pm
Can you please post your sql server version..Run the following and post it..
Select @@version
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 1:09 pm
1. I have seen the cases where restore verifyonly varified even when backup was not usable.
2. You ran retore verify on production using the copy on production.
3. Try the restore...
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 1:04 pm
I mean to say " I never did this" where as I typed "like" extra word which changed meaning entirely...
I never did this so I don't have any opinion on...
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 12:56 pm
Yes, as long as sql can see that server with write access..
I do this all the time...
Backup database dbname to disk = '\\servername\c$\dbname.bak' with init, stats=10
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 12:50 pm
Blocking is nothing to do with your restore db as different name pointed all reports to the new db...
You need to figure it out what blocking what? For that you...
MohammedU
Microsoft SQL Server MVP
December 4, 2006 at 12:48 pm
Viewing 15 posts - 1,111 through 1,125 (of 1,166 total)