Viewing 10 posts - 1 through 10 (of 10 total)
Please start performance counters for a period of time. If you doubt on mirroring, can you check "log send queue" and "transaction delay" counters on perfmon.
dm_os_wait_stats is a cumulative...
October 14, 2011 at 6:36 am
To obtain information per database level, run the below query against each database to obtain the usage.
SELECT TOP 25
obj.[name],
i.[name],
i.[type_desc],
count(*)AS Buffered_Page_Count ,
count(*) * 8192 / (1024 * 1024) as Buffer_MB
...
October 14, 2011 at 5:21 am
Did you restart the system aswell?? as its a mandatory thing to get the changes take place.
October 14, 2011 at 4:49 am
Can you try enabling it and restart the sql browser service?
October 14, 2011 at 4:33 am
Can you try enabling it and restart the sql browser service??
October 14, 2011 at 4:31 am
Would you mind checking if IPv6 has been disabled?
October 14, 2011 at 4:12 am
first try to see, which database had took more memory on the sql server using the below query:
SELECT LEFT(CASE database_id
WHEN 32767 THEN 'ResourceDb'
ELSE db_name(database_id)
...
July 8, 2011 at 11:33 am
I had the same issue yesterday...restart of WMI service had fixed the problem and could complete the patch installation.
July 8, 2011 at 10:45 am
I have tried the same from development environment. It is working fine.
There is no network problem.
Before I check the option (close connection on package completion) the issue used to come...
October 12, 2006 at 10:32 am
Hi
Thanks for your reply.
The first task in DTS package is a batch file. It delete existing .txt file and then copies all *.csv files to .txt file.
The second...
October 12, 2006 at 1:16 am
Viewing 10 posts - 1 through 10 (of 10 total)