Viewing 15 posts - 496 through 510 (of 663 total)
Not the best but try :
Create Table Test(GroupId Int,TaskId Int,Created smalldatetime)
Go
Insert Test Values(1,2,'04/30/03 10:00')
Insert Test Values(1,4,'04/30/03 10:15')
Insert Test Values(2,9,'04/30/03 09:00')
Insert Test Values(2,6,'04/30/03 09:05')
Go
Select a.GroupId,
...
April 30, 2003 at 11:11 pm
Try the articles at
April 29, 2003 at 2:21 pm
An article which maybe of interest to you about "The Call-Costs Problem".
Title: Counting the Costs
URL: http://www.sqlmag.com/Articles/Index.cfm?ArticleID=27592
April 28, 2003 at 4:38 pm
Oops should have been
Select Convert(char(10),GetDate(),101)
April 28, 2003 at 3:51 pm
Select Convert(char(8),GetDate(),101)
Or then
Select Convert(char(8),HDate,101)
April 28, 2003 at 3:49 pm
Quick and dirty try scptxfr.exe of MS.
Found it under Program Files\Microsoft SQL Server\MSSQL\Upgrade, SQL 2000.
Scheduled a job from TSQL and add file to VSS one can get a bit of...
April 28, 2003 at 3:36 pm
BOL 2000: See OPENROWSET, example towards the end for Access and SQL, alternatively OPENDATASOURCE
April 27, 2003 at 3:16 pm
Try
Select f.Col1,f.Col2
From (Select r.Zipcode
...
April 26, 2003 at 4:34 pm
BOL 2000: See Shrinking the Transaction Log.
See article at http://www.databasejournal.com/scripts/article.php/1492301
Warning: DO A COMPLETE BACKUP BEFORE HAND.
April 26, 2003 at 4:26 pm
Is this update part of a 'bigger' transaction?
Maybe worth while to start at web and work through COM+, if relevant, to SQL checking where every transaction is started/committed.
What is...
April 25, 2003 at 7:33 pm
Mod your trigger and add
Exec master..xp_logevent 60000,'Trigger For Insert Table1 Starting',informational
Exec master..xp_logevent 60000,'Checking block1 etc.',informational
Exec master..xp_logevent 60000,'Trigger For Insert Table1 Return!',informational
Do an update and check the SQL Server log in...
April 25, 2003 at 6:56 pm
Agree with Andy Warren.
TSQL can be a mini program in itself, but one needs to have the complete picture before starting to code.
Too much of a speed freak to...
April 25, 2003 at 6:35 pm
Viewing 15 posts - 496 through 510 (of 663 total)