Viewing 15 posts - 1 through 15 (of 117 total)
Hi, from what you posted I believe that you might have some kind of corruption in your db. I would run DBCC CHECKDB against your db as soon as possible. Meanwhile see...
August 28, 2006 at 3:45 am
you can use this simple query
use
msdb
select name,
size*8/1024.0 as
August 16, 2006 at 4:09 am
According to my knowledge if the same partition and directory path exists on the standby server, this is done automatically (i use custom log-shipping under Std edition). See this article...
June 2, 2006 at 2:30 am
Could you collect these two counters for sqlserv process: Private Bytes and Working Set? Since from what you posted I believe that the memory allocated to sql server might be...
May 23, 2006 at 7:44 am
You can set up a profiler trace, under Database, there are Data File Autogrow and Log File Autogrow events.
Hope this helps.
March 24, 2006 at 1:56 am
Some time ago there was a discussion on this site about effects of clustered index rebuild on non-clustered indexes. If I remember correctly, the bottom line was that if the...
March 13, 2006 at 4:08 am
See sp_helpdevice entry in BOL for explanation. When I need info on backup devices I query directly sysdevices system table for records with status 16. It's not recommended but works...
March 9, 2006 at 8:58 am
check these articles:
http://support.microsoft.com/kb/902388/
http://support.microsoft.com/kb/301292
hope this helps
March 2, 2006 at 12:50 am
EMPTYFILE clause can be used only to migrate data within the same filegroup. So you will have to transfer all data stored in your DATA filegroup to PRIMARY filegroup first....
February 21, 2006 at 1:47 am
Your problem might lie in huge backup history tables in msdb (backupfile, backupset etc.). Check the sizes and search this site for sp_delete_backuphistory. There are several discussions on this including...
January 10, 2006 at 9:03 am
If you use SQL2000, the recovery model is full and there were no log backups between mon full backup and the point of failure, you might see this article:
http://support.microsoft.com/default.aspx?scid=kb;en-us;253817
these steps should help...
December 6, 2005 at 6:23 am
Hi I played a little and this could be of some help to you:
select collationproperty ('Compatibility_52_409_30003','CodePage') 'CodePage'
select collationproperty ('Compatibility_52_409_30003','LCID') 'LCID'
select collationproperty ('Compatibility_52_409_30003','ComparisonStyle') 'ComparisonStyle'
by using collationproperty function I was able to...
November 18, 2005 at 3:02 am
For the original problem see this thread
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=116255
Unfortunately this deals with user databases.
I don't know any specific ramifications, but I'm sure this is not something I wanted to have...
November 16, 2005 at 9:39 am
I would recommend to you reading the following article. Possible causes of your problems could be Lost Write and Stale Read conditions. This article explains how to detect them (usage of sqliostress utility, trace...
November 12, 2005 at 7:59 am
You can try this:
declare @reg_srv varchar(256),
@reg_agent varchar(256)
if serverproperty('instancename') is null
begin --default instance
set @reg_srv='SYSTEM\CurrentControlSet\SERVICES\MSSQLSERVER'
set @reg_agent='SYSTEM\CurrentControlSet\SERVICES\SQLSERVERAGENT'
end
else
begin --named instance
set @reg_srv='SYSTEM\CurrentControlSet\SERVICES\MSSQL$'+cast (serverproperty('instancename') as sysname)
...
November 9, 2005 at 3:14 am
Viewing 15 posts - 1 through 15 (of 117 total)