Viewing 15 posts - 45,436 through 45,450 (of 59,095 total)
GSquared (1/29/2009)
;with Numbers (Number) as
(select row_number() over (order by object_id)
from sys.all_objects)
select dateadd(month, number, @StartDate)
from Numbers
where number...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2009 at 3:11 pm
GSquared (1/29/2009)
I like triggers. They make firearms much more user friendly than keyboards and mice would. 🙂
Heh... firearms... the original point and click device 😛
But incompetent devs as a...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2009 at 2:40 pm
Funny thing... you don't look a million members old. 😛 Congratulations Steve, SSC, and RedGate!
--Jeff Moden
Change is inevitable... Change for the better is not.
January 28, 2009 at 9:53 pm
Absolutely my pleasure, Trigger. Heh... thinking out side the box... a phrase I coined goes as follows...
[font="Arial Black"]Before you can think outside the box, you must first realize... you're...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 28, 2009 at 9:46 pm
Sorry... didn't say it quite the right way... I meant that the real problem code they were trying to fix at my old company didn't budge... aggregate views of aggregate...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 28, 2009 at 7:14 pm
Funny how people keep trying to optimize hardware... the code is the great divide... I've seen servers with all those wonder changes to the hardware occur... and the code didn't...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 28, 2009 at 6:30 pm
Thank you, Sir. Glad to see you got the test data generator working, as well. I appreciate the performance report on that, as well.
--Jeff Moden
Change is inevitable... Change for the better is not.
January 28, 2009 at 6:14 pm
No problem... especially since the write-up in BOL leaves a lot for the reader to discover.
PARSENAME was designed to parse the 1 to 4 part object names (usually tables or...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 28, 2009 at 5:55 pm
bruce.cassidy (1/28/2009)
[font="Courier New"]
CREATE [OR REPLACE] TRIGGER
{BEFORE|AFTER} {INSERT|DELETE|UPDATE} ON
[REFERENCING [NEW AS ...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 28, 2009 at 5:35 pm
I don't believe there's an easy way to do that, all though I could certainly be wrong. The fly in the ointment is what happens if a sproc returns...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 28, 2009 at 5:24 pm
ian McCann (1/28/2009)
I don't think I explained my needs very well.
My problem is not in fixing this ( I am actually looking forward to working with a tally table...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 28, 2009 at 3:09 pm
Christopher,
Andrew is correct... take a look at the link in my signature below to help us help you. Thanks.
--Jeff Moden
Change is inevitable... Change for the better is not.
January 28, 2009 at 3:02 pm
timscronin (1/28/2009)
If you were going to convert a guid to a varchar would the conversion not be a varchar(36)?
Probably not... since all GUID's are 36 characters, why not save the...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 28, 2009 at 2:58 pm
There's only one thing that ultimately affects fragmentation... that's growth of files. Whether you set it manually or automatically, it's file growth. The best thing to do is...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 28, 2009 at 2:47 pm
aali_online (1/28/2009)
Fragmentation will depend on the speed of the disk subsystem
How do you figure that the speed of the disk has anything at all to do with disk fragmentation?
--Jeff Moden
Change is inevitable... Change for the better is not.
January 28, 2009 at 2:43 pm
Viewing 15 posts - 45,436 through 45,450 (of 59,095 total)