Viewing 11 posts - 31 through 41 (of 41 total)
Fortunately, this is a non-issue. I have never had any sort of desire to engage in social networking, and quite honestly I shudder at the thought of it.
March 30, 2009 at 6:41 am
In my iopinion, pruning can be very advantageous when it comes to bringing new technical resources into your database.
Clutter = Distraction
February 27, 2009 at 5:35 am
Thanks Jeff,
I already have the link bookmarked for future reference. I look forward to having a bit more time to fully read through and possibly implement the techniques.
Regards,
Ryan Gillings
October 14, 2008 at 5:24 am
Jeff,
Thank you for posting your solution...I believe I will be able to gain much benefit from your posted running total logic.
October 14, 2008 at 4:46 am
I have received major performance/response time gains by replacing a cursor with a while loop in a similar fashion to what I posted.
Additionally, by using a variable table, there is...
October 13, 2008 at 8:05 am
I wouldn't feel right if I didn't offer a non-cursor alternative.
Below should work fine for your scenario, but you may need to tweak your ProductId datatype in the @temp table...
October 13, 2008 at 5:16 am
I would not completely rule out that it could be that your database(s) have outgrown your server hardware. SQL can be a bit of a memory hog if you...
August 29, 2008 at 5:03 am
Alternately, you can also use the DATEPART function instead of DATEDIFF:
DECLARE @Date DATETIME
SET @Date = GETDATE()
SELECT DATEADD(MONTH,1,DATEADD(DAY, (-1 * DATEPART(DAY,@Date)) + 1, @Date))
August 14, 2008 at 5:12 am
This may be posted already, but...
DECLARE @Date DATETIME
SET @Date = GETDATE()
SELECT CONVERT(VARCHAR,DATEPART(YEAR,@Date)) + CONVERT(VARCHAR,DATEPART(WEEK,@Date))
August 12, 2008 at 6:03 am
"IT guy" seems to be a general term used by someone who doesn't really understand technology. I would compare it to a "Brain Surgeon" being called a "doctor", or...
June 26, 2008 at 5:07 am
Viewing 11 posts - 31 through 41 (of 41 total)