Viewing 15 posts - 6,421 through 6,435 (of 7,484 total)
One approach is to populate an auxiliary table using an "after insert" trigger, and then have a job that processes the auxiliary table (and depopulates it) at whatever frequency is...
December 12, 2010 at 7:28 pm
Good question. Not sure how I managed to get it wrong, because it's prety straightforward.
December 12, 2010 at 7:22 pm
GilaMonster (12/12/2010)
I wonder, if I change my avatar to a photo, will I stop having people call me Mr or Sir?
I guess it depends what it's a photo of. ...
December 12, 2010 at 7:19 pm
Hugo Kornelis (12/10/2010)
December 12, 2010 at 10:15 am
Steve Jones - SSC Editor (12/11/2010)
Tom.Thomson (12/11/2010)
Celko's been at it again, and Gus's response http://www.sqlservercentral.com/Forums/FindPost1032150.aspx is unfair to monkeys.Excellent response from Lowell and Gus.
Tom, new avatar?
Yes, it changes now an...
December 12, 2010 at 6:15 am
ahmed7.bi (12/12/2010)
if the above case is right then how many columns can we include in a clustered index.???
You can have up to 16 key columns in a clustered index, but...
December 12, 2010 at 5:45 am
Celko's been at it again, and Gus's response http://www.sqlservercentral.com/Forums/FindPost1032150.aspx is unfair to monkeys.
December 11, 2010 at 3:28 pm
Dimitrije Mišic (12/9/2010)
I've run into the problem with date field it is contingent on a...
December 9, 2010 at 6:43 am
Something like this should work provided you are using SQL 2005 or later.
;WITH RelevantData as (
SELECT D.LogTime, D.PID, D.Value, P.AggregationType
FROM tblData D...
December 9, 2010 at 6:38 am
Pedrsonally I hate triggers, and avoid them where possible. For audit it is not possible, triggers are essential - how can I have reliable audit data using some method...
December 9, 2010 at 5:56 am
Chris Morris-439714 (12/8/2010)
Tom, you look 134 in your picture.
Drat. I shall change to an older picture. 134 is a silly age to look.
December 9, 2010 at 5:17 am
Geoff, this comment should have come first, but I decided to read through all existing comments first and could resist responding to a couple of them. So please accept...
December 8, 2010 at 6:43 pm
Brandie Tarvin (12/2/2010)
Craig Farrell (12/2/2010)
How often do you re-write old code, except for a few specific core procs on any system?
Often enough that I save all my procs so I...
December 8, 2010 at 6:33 pm
steven.malone (12/7/2010)
It shows how America-centric SQL programmers are.1d4 means One Pound, Four Pence in England.
I've spent most of my life in Britain and have never seen d used like that;...
December 8, 2010 at 10:29 am
Viewing 15 posts - 6,421 through 6,435 (of 7,484 total)