Viewing 15 posts - 166 through 180 (of 663 total)
You do have a covering index for all the tables, 1 to 4, for the column tid
How many records, in each table, 1 to 4
September 9, 2003 at 10:13 pm
http://www.x-sql.com/
How many virtual drinks per comment!
September 9, 2003 at 9:16 pm
See BOL 2000: Using Startup Options
/Ttrace# Indicates that an instance of SQL Server should be started with a specified trace flag (trace#) in effect. Trace flags...
September 9, 2003 at 8:58 pm
With the mother of all SELECTs and maybe a few CASE statements.
Need more info.
September 9, 2003 at 3:40 pm
Can use DMO to generate the script
Some interesting info in the Information Schema Views
Select * from INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE
Where TABLE_NAME='MyTable' And
CONSTRAINT_NAME=
(Select CONSTRAINT_NAME From INFORMATION_SCHEMA.TABLE_CONSTRAINTS
Where...
September 8, 2003 at 6:53 pm
See article at http://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtechnol/sql/reskit/sql2000/part3/c1161.asp
September 8, 2003 at 2:54 pm
What if you script the job, deleted it and recreate it with the script. Should refresh all possible references
September 8, 2003 at 4:11 am
Have a look at BOL 2000: Resetting the Suspect Status
September 7, 2003 at 11:31 pm
Q: MSDB Database won't restore.
A: Make sure the SQLSERVERAGENT service is not started.
Problems may arise trying to restore the msdb database if the SQLSERVERAGENT service is started. The MSDB database...
September 7, 2003 at 11:27 pm
Does the app keep a connection open all the time or connect / disconnect.
Can count the number of connection to a specific database for a specific hostname with a sp.
September 7, 2003 at 9:35 pm
Have a look at auto update statistics, auto create statistics SQL Server Books Online.
September 7, 2003 at 9:20 pm
Article by Brian Morgan, SQL Server Magazine of Aug 2003
quote:
Why Do Similar Queries Have Different Execution Plans?
September 7, 2003 at 7:50 pm
quote]If the compatibility level is 80 or higher, SQL Server allows the update of text, ntext, or image columns through the INSTEAD OF trigger on tables or views.[/quote]
September 7, 2003 at 7:28 pm
Viewing 15 posts - 166 through 180 (of 663 total)