Viewing 15 posts - 3,421 through 3,435 (of 19,564 total)
dwain.c (3/6/2014)
TomThomson (3/6/2014)
Koen Verbeeck (3/6/2014)
MysteryJimbo (3/6/2014)
Koen Verbeeck (3/5/2014)
Pfff, than you have never been in Belgium before 😀
If we wouldn't be having the most traffic jam congested cities in the world,...
March 7, 2014 at 6:41 am
Sean Lange (3/6/2014)
Gazareth (3/6/2014)
This whole ;WITH thing really bugs me; it's the previous statement that should be terminated with ; , not the new one started with it! 🙂
+1
To paraphrase...
March 6, 2014 at 4:54 pm
RBarryYoung (3/6/2014)
SQLRNNR (3/5/2014)
RBarryYoung (3/5/2014)
SQLRNNR (3/5/2014)
RBarryYoung (3/5/2014)
Hey folks. so what's I miss?😀
A LOT
What happened to your website?
I was trying to get a script from there a week or so ago...
March 6, 2014 at 10:31 am
dwain.c (3/5/2014)
WITH SampleData...
March 6, 2014 at 7:42 am
The Dixie Flatline (3/5/2014)
SQLRNNR (3/5/2014)
RBarryYoung (3/5/2014)
SQLRNNR (3/5/2014)
RBarryYoung (3/5/2014)
Hey folks. so what's I miss?😀
A LOT
What happened to your website?
I was trying to get a script from there a week or...
March 6, 2014 at 7:41 am
Slight fix to the code
use tempdb;
go
SELECT OrderNo
, CHARINDEX('-',OrderNo,4) AS FindDash
, CASE WHEN LEFT(OrderNo,CHARINDEX('-',OrderNo,4)) =''
THEN OrderNo
ELSE LEFT(OrderNo,CHARINDEX('-',OrderNo,4))
END AS NoSuffix
FROM (
SELECT 'SO-123456' AS OrderNo
UNION ALL
SELECT 'SO-123456-01'
UNION ALL
SELECT 'SO-123456-2'
UNION ALL
SELECT 'SO-123457'
UNION ALL
SELECT 'SO-123457-1'
UNION...
March 5, 2014 at 1:37 pm
GilaMonster (3/5/2014)
SQLRNNR (3/5/2014)
GilaMonster (3/5/2014)
SELECT *
FROM sys.dm_db_database_page_allocations(DB_ID('<Database Name>'), NULL, NULL, NULL, 'DETAILED') dpa
...
March 5, 2014 at 12:16 pm
GilaMonster (3/5/2014)
SELECT *
FROM sys.dm_db_database_page_allocations(DB_ID('<Database Name>'), NULL, NULL, NULL, 'DETAILED') dpa
WHERE...
March 5, 2014 at 11:58 am
RBarryYoung (3/5/2014)
SQLRNNR (3/5/2014)
RBarryYoung (3/5/2014)
Hey folks. so what's I miss?😀
A LOT
What happened to your website?
I was trying to get a script from there a week or so ago and it...
March 5, 2014 at 11:52 am
Is somebody performing a SAN snapshot? This will also cause the GUID entry.
March 5, 2014 at 11:43 am
RBarryYoung (3/5/2014)
SQLRNNR (3/5/2014)
RBarryYoung (3/5/2014)
Hey folks. so what's I miss?😀
A LOT
What happened to your website?
I was trying to get a script from there a week or so ago and it...
March 5, 2014 at 9:57 am
RBarryYoung (3/5/2014)
Hey folks. so what's I miss?😀
A LOT
What happened to your website?
I was trying to get a script from there a week or so ago and it was no...
March 5, 2014 at 7:59 am
Viewing 15 posts - 3,421 through 3,435 (of 19,564 total)