Viewing 15 posts - 196 through 210 (of 508 total)
Jeff Moden (5/24/2011)
sqlnaive (5/24/2011)
June 3, 2011 at 10:55 am
sqldba_icon (5/23/2011)
May 24, 2011 at 11:10 am
sqldba_icon (5/23/2011)
May 23, 2011 at 11:41 am
Jeff Moden (5/17/2011)
For more information on Cross Tabs, how they work, and why I think they're better than PIVOTs, please see the following article (which also includes some performance...
May 17, 2011 at 1:37 pm
Jeff Moden (5/15/2011)
tfifield (4/6/2011)
Something...
May 16, 2011 at 9:13 pm
Dan.Humphries (5/11/2011)
UPDATE Purchasing
SET Purchasing.IsHardware = 1
FROM...
May 16, 2011 at 12:00 pm
TheSQLGuru (5/12/2011)
tfifield (5/11/2011)
You also might want to consider how data is entered for the table. If there are VARCHAR type columns that are initially empty and then get filled...
May 12, 2011 at 10:52 am
Ninja,
You also might want to consider how data is entered for the table. If there are VARCHAR type columns that are initially empty and then get filled in later...
May 11, 2011 at 11:12 am
Craig Farrell (5/2/2011)
tfifield (5/2/2011)
Todd,This should give you what you want. It gives each order and its items for only orders that have the same items.
Todd, that can get fouled...
May 5, 2011 at 1:09 pm
PradeepVallabh (4/26/2011)
I analysed the execution plan and everything looks fine(other than some KeyLookup and RIDLookup which i can't modify much as the stored procedure is involved in update statement)
I noticed...
May 5, 2011 at 10:24 am
Todd,
This should give you what you want. It gives each order and its items for only orders that have the same items.
; WITH CTEItems AS
( SELECT oid, itemid
, COUNT(*)...
May 2, 2011 at 1:32 pm
Jeff,
Brilliant piece of work! I did something a bit similar but cheated by always appending the last delimiter to the string in the function call. I always felt...
May 2, 2011 at 11:53 am
I'm with the Corgi on this one. I've done many migrations from native Access to Access front end with SQL Server back end. I used the upsizing wizard...
April 29, 2011 at 12:29 pm
Krasavita,
You should check your database options to ensure that recursive triggers aren't enabled. When recursive triggers are enabled an update statement in the trigger on the same table will...
April 28, 2011 at 11:53 am
StripedCat (4/25/2011)
April 26, 2011 at 11:52 am
Viewing 15 posts - 196 through 210 (of 508 total)