Viewing 15 posts - 481 through 495 (of 1,365 total)
If SORT_IN_TEMPDB is set to ON, there must be sufficient free space in tempdb to store the collection of sort runs for the largest index, typically the clustered index, and...
April 20, 2009 at 6:21 pm
Please run sp_spaceused @updateusage 'true' on both the databases and compar the size thereafter.
MJ
April 20, 2009 at 6:20 pm
Are your database stored procedures/adhoc-queries making too much use of "with recompile" clause in them?
MJ
April 20, 2009 at 4:59 pm
Did you performed the below mentioned step:
Allow system table updates by using the system stored procedure sp_configure and RECONFIGURE with override, and then update the [database_name].dbo.sysfulltextcatalogs path column to the...
April 20, 2009 at 12:30 pm
Create an Excel file named testing having the headers same as that of table columns and use these queries
1 Export data to existing EXCEL file from SQL Server table
insert into...
April 17, 2009 at 7:48 pm
Do you have client tools on both the machines? May be this(http://blogs.msdn.com/sqlserverfaq/archive/2009/04/09/sql-server-2005-sp2-installation-got-hung-on-a-2-node-cluster-with-this-message-awaiting-first-complete-passive-cluster-node.aspx) can help.
MJ
April 16, 2009 at 6:01 pm
It would be gud if you include the steps which are inter-dependent in one job step.
MJ
April 16, 2009 at 3:51 pm
Why don't you try fetching that info using the standard reports if your instance version is SP2 or later.
MJ
April 15, 2009 at 4:21 pm
If possible, try dropping the link server and create it again. This might allow the process to terminate faster.
MJ
April 15, 2009 at 4:16 pm
Let's wait for an expert comment on this. I believe sp_reset_connection works on connection basis only.
MJ
April 15, 2009 at 3:09 pm
Would advice you to send output of the checks to a file and mail that file to yourself using dbmail.
MJ
April 13, 2009 at 12:27 pm
Yes.
To reduce the max server memory you may need to restart SQL Server to release the memory(http://msdn.microsoft.com/en-us/library/ms178067.aspx).
MJ
April 9, 2009 at 6:09 pm
I think yes.
It will clear any work or temporary tables that are created by the connection.
From
http://stackoverflow.com/questions/596365/what-does-spresetconnection-do
MJ
April 9, 2009 at 5:12 pm
Remove -m -c -T3608 from startup parmeters. Also, is there any other enterprise manager or query analyzer window already open?
MJ
April 8, 2009 at 6:19 pm
SET NOCOUNT ON
DECLARE @crdate DATETIME, @hr VARCHAR(50), @min-2 VARCHAR(5)
SELECT @crdate=crdate FROM master.dbo.sysdatabases WHERE NAME='tempdb'
SELECT @hr=(DATEDIFF ( mi, @crdate,GETDATE()))/60
IF ((DATEDIFF ( mi, @crdate,GETDATE()))/60)=0
SELECT @min-2=(DATEDIFF ( mi, @crdate,GETDATE()))
ELSE
SELECT @min-2=(DATEDIFF ( mi, @crdate,GETDATE()))-((DATEDIFF(...
April 8, 2009 at 5:44 pm
Viewing 15 posts - 481 through 495 (of 1,365 total)