Viewing 15 posts - 1 through 15 (of 21 total)
ALTER PARTITION FUNCTION [pfTBLTRANS_ID]() SPLIT...January 11, 2018 at 11:57 am
Dinesh Priyankara (7/24/2003)
Ok. What I want is : create a trace using sp_trace_create with option 2. That's what I have done. But I cannot read the tracefile untill I...
March 24, 2010 at 12:38 pm
Thank you.
September 16, 2009 at 11:49 am
hi Paul,
I had a database that checkdb reported errors, I did a checktable for all the tables and few tables reported problems. See the output from each step. Interestingly, the...
September 16, 2009 at 9:02 am
Thanks...You answere my question.
November 1, 2006 at 11:39 am
Nice article...very simple and precise.
But, I did not understand the second report...what are P1, P2, P3 columns represent ?
Please let me know.
thanks,
Ranga
October 30, 2006 at 2:18 pm
Kathi,
Very good article....
I saw on the microsoft site and it says "This version(2.027) of SQLH2 supports SQL Server 2005 RTM collection "
Is there a different version of SQLH2 for SQL...
April 4, 2006 at 8:05 am
Thanks for your responses...I changed my code to defrag indexes which have more than 1000 pages.
March 30, 2006 at 11:36 am
Individual Plans for each databases will be a efficient method. Also include the database name in the maintanence Plan name for better documentation.
December 14, 2005 at 12:11 pm
why not a stored procedure with a output parameter ?
October 25, 2005 at 2:12 pm
Thanks.., here is the exact commands
EXEC MASTER.DBO.XP_REGREAD
@rootkey='HKEY_LOCAL_MACHINE'
,@key='SYSTEM\ControlSet001\Services\MSSQLSERVER'
,@ValueName = 'ObjectName'
EXEC MASTER.DBO.XP_REGREAD
@rootkey='HKEY_LOCAL_MACHINE'
,@key='SYSTEM\ControlSet001\Services\SQLSERVERAGENT'
,@ValueName = 'ObjectName'
We are auditing our servers and want to see whether all our servers are using the right domain acct...
October 7, 2005 at 8:18 am
To create a good format file, use DTS. Just drop a sql connection object and a bulk insert task and go from there. After you choose the source and destination...
October 6, 2005 at 3:42 pm
Thanks for your feedback...
The reason I wanted to drop all the nonclustered indexes is to speedup the bulk insert process..
I actually ran sp_helpindex, stored the results in a work table...
October 5, 2005 at 4:10 pm
My requirement is to:
1.Drop all the indexes from the table
2.Load New Data
3.Delete Old Data
4.Recreate the indexes...
So, I am looking for any script that would script all the existing indexes so...
October 3, 2005 at 3:27 pm
sushila, my point was that database is overloaded with stuff which could very well be done by the front end code or midlle tier!
Just beacuse you have got upto 140...
August 25, 2005 at 12:21 pm
Viewing 15 posts - 1 through 15 (of 21 total)