Viewing 15 posts - 6,301 through 6,315 (of 10,144 total)
L' Eomot Inversé (5/31/2012)
June 1, 2012 at 5:28 am
SQL Kiwi (5/30/2012)
ChrisM@Work (5/30/2012)
May 31, 2012 at 9:43 am
jinkazama_11 (5/30/2012)
The total number of records can be more than 3, I can only use your query if there are only 2 records for one client.
I would...
May 30, 2012 at 7:11 am
jinkazama_11 (5/30/2012)
The total number of records can be more than 3, I can only use your query if there are only 2 records for one client.
I would...
May 30, 2012 at 7:07 am
If you want to make a rCTE run really quickly, then minimise the amount of "r" in it...
;WITH rCTE AS
(
SELECT [level] = 0
...
May 30, 2012 at 6:52 am
SELECT TOP 10 a.*, b.*
FROM MyTable a
LEFT JOIN MyTable b
ON b.ClientID = a.ClientID
AND b.SeqNo = 2
AND a.ClosureDate IS NOT NULL -- only join a row from b if closure...
May 30, 2012 at 6:19 am
SELECT a.SOURCE_FILE_ID, a.CYCLE_ID, a.TASK_ID, a.TASK_STATE_DESC
FROM #Sample a
LEFT JOIN #Sample b
ON b.SOURCE_FILE_ID = a.SOURCE_FILE_ID
AND b.CYCLE_ID = a.CYCLE_ID
AND b.TASK_STATE_DESC = 'Error' AND a.TASK_STATE_DESC = 'Setup Fail'
AND b.TASK_ID+1 =...
May 28, 2012 at 6:35 am
Charmer (5/17/2012)
ChrisM@Work (5/17/2012)
If not, and if the source of the insert was...
May 17, 2012 at 9:27 am
Before you ran the query, you ran "Display Estimated Execution Plan". How many rows were estimated for the insert?
If not, and if the source of the insert was a select,...
May 17, 2012 at 9:08 am
The nearest I can get to that is a coffee stain on my copy of "SQL Server Execution Plans"! Great story Tom.
Having said that, Galicia's wines were amazing when the...
May 17, 2012 at 6:42 am
okbangas (5/16/2012)
May 17, 2012 at 6:23 am
opc.three (5/17/2012)
ChrisM@Work (5/17/2012)
Interesting. Here's the section I quoted above. Note that it's specific to indexing operations.
I can see where you would go there for indexes though you swept queries into...
May 17, 2012 at 6:14 am
opc.three (5/16/2012)
ChrisM@Work (5/16/2012)
Stewart "Arturius" Campbell (5/16/2012)
ChrisM@Work (5/16/2012)
The number specified in the max degree of parallelism server configuration option.
This is overridden using the MAXDOP as part of the index creation command...
May 17, 2012 at 1:39 am
Stewart "Arturius" Campbell (5/16/2012)
ChrisM@Work (5/16/2012)
The number specified in the max degree of parallelism server configuration option.
This is overridden using the MAXDOP as part of the index creation command and should,...
May 16, 2012 at 8:06 am
okbangas (5/16/2012)
* Resource Governor is not running
* Server CPU load is less than...
May 16, 2012 at 7:46 am
Viewing 15 posts - 6,301 through 6,315 (of 10,144 total)