Viewing 15 posts - 2,431 through 2,445 (of 3,957 total)
Jeff Moden (11/29/2012)
peter-757102 (11/29/2012)
But one thing I noticed quickly was...
November 29, 2012 at 5:43 pm
Jeff Moden (11/29/2012)
Peter H (11/29/2012)
SELECT TOP(DATALENGTH(@List))
n = ROW_NUMBER() OVER(ORDER BY (SELECT NULL))
FROM
...
November 29, 2012 at 5:39 pm
Irozenberg 1347 (11/29/2012)
If original DB developers...
November 29, 2012 at 5:33 pm
MarbryHardin (11/29/2012)
November 29, 2012 at 5:32 pm
Mike DiRenzo (11/29/2012)
WOW. What a great read!
Thanks Mike! Glad you stopped by.
November 29, 2012 at 5:28 pm
dplaut 49149 (11/29/2012)
Is there a way to download these examples, copying text out of those scrolling boxes is a pain and carries along formatting code.
Sorry but in this article I...
November 29, 2012 at 5:28 pm
MyDoggieJessie (11/28/2012)
I was referring to sysindexes, it's eventually being replaced by sys.indexes. Or am I completely confused? :ermm:
Alas I am not the man to ask.
I failed to mention...
November 28, 2012 at 8:56 pm
Interesting...
Didn't know those tables were deprecated.
November 28, 2012 at 8:28 pm
Welcome to the world of SSC although I see you have around 40 posts, so better late than never.
Jeff Moden has a couple of good articles on setting up randomized...
November 22, 2012 at 5:08 pm
Jason-299789 (11/22/2012)
Looking...
November 22, 2012 at 4:25 am
Jason and MickyT - You may want to take a look at this article: http://www.sqlservercentral.com/articles/CROSS+APPLY+VALUES+UNPIVOT/91234/. It compares UNPIVOT vs. the CROSS APPLY VALUES approach from a performance perspective. ...
November 22, 2012 at 2:55 am
Jeff Moden (11/21/2012)
November 21, 2012 at 11:36 pm
Jeff Moden (11/21/2012)
dwain.c (11/21/2012)
Would this work?
DECLARE @DB VARCHAR(100) = 'MyDB'
SELECT *
FROM @DB.sys.check_constraints
If not, why would it work in dynamic SQL?
Obviously, you've found an approach that does work though.
I haven't fired...
November 21, 2012 at 11:24 pm
Possibly Sean may have been planning to suggest something like this:
SELECT COUNT(*)
FROM #UserMain a
INNER JOIN #Professional b ON a.UserNumber = b.UserNumber
WHERE Base_State = 'MA' AND User_status = 'C'
November 21, 2012 at 11:21 pm
pamozer (11/21/2012)
If you try to drop a stored procedure that is part of replication you get the following errorCannot drop the procedure 'ReportDataProvider_ArAgingSummary_New_V1' because it is being used for replication.
Can...
November 21, 2012 at 11:06 pm
Viewing 15 posts - 2,431 through 2,445 (of 3,957 total)