Viewing 15 posts - 2,041 through 2,055 (of 5,685 total)
WangcChiKaBastar (1/3/2012)
I dropped the trigger but when I delete a record...
January 3, 2012 at 3:23 pm
Check to see if you merely unpinned it, or overlapped it.
Is it in a grey bar on the left side of the object explorer, or in a tab at the...
January 3, 2012 at 2:19 pm
No, there isn't. SQL Server always logs. There isn't a 'nologging' option for a database either, it's just a simpler mode where it'll re-use existing log space once...
January 3, 2012 at 2:12 pm
Right idea Sean but I believe he'll need to use a derived column instead, since I'm assuming he's using SSIS. Can replace the existing but I usually prefer a...
January 3, 2012 at 1:54 pm
Brandie Tarvin (1/3/2012)
RFIDS exist today, so I'm not sure how that's jumping the shark.
"I just ate at Whattaburger!" I mean seriously, they're tossing them in food for advertising assistance...
January 3, 2012 at 1:40 pm
You're right, it doesn't, I was just trying to be thorough.
January 3, 2012 at 12:41 pm
And then there's me, who's a DB Developer and not a front-end guy, and I build the back end architecture.
Why don't I usually use constraints except in "absolute, must have"...
January 3, 2012 at 12:30 pm
Brandie Tarvin (1/2/2012)
Evil Kraig F (12/30/2011)
January 3, 2012 at 12:23 pm
My favorite RPG of all time was Shadowrun. 2nd Edition. I recently tried to GM a campaign (well, recently being a year and a half ago) in the...
December 30, 2011 at 11:24 am
I had a full head of steam going early last year in my self-training for the MCM, blogs, got a few articles up here, etc... and realized I just tried...
December 30, 2011 at 11:17 am
bwagner 90365 (12/29/2011)
December 29, 2011 at 5:19 pm
drew.allen (12/29/2011)
Evil Kraig F (12/29/2011)
I wouldn't do this with Row_Number
I would use Row_Number, because using MAX() in a subquery has the possibility of duplicate values if there are multiple records...
December 29, 2011 at 3:31 pm
crookj (12/29/2011)
Ray K (12/29/2011)
Evil Kraig F (12/29/2011)
crookj (12/29/2011)
WOTD - stodgyWaldorf (Muppets)
Statler
Flowers on the Wall
Gonzo in the Cannon.. then the wall... then the roof... then the clouds... and another wall... random...
December 29, 2011 at 1:59 pm
I wouldn't do this with Row_Number, I'd approach it this way:
SELECT
elx.*
FROM
dbo.esg_ldc_xref AS elx
JOIN
(SELECT
Account_Number,
MAX(End_Date) AS MaxEndDate
FROM
dbo.esg_ldc_xref
GROUP BY
Account_number
) AS drv
ONelx.Account_number = drv.Account_number
AND elx.end_date = drv.End_Date
WHERE
customer_tkn in ( 56134996 , 90640028, 92448615)
December 29, 2011 at 1:50 pm
Viewing 15 posts - 2,041 through 2,055 (of 5,685 total)