Viewing 14 posts - 1 through 14 (of 14 total)
Unfortunately, as much as I'd love to use TRY_CONVERT(), we are stuck in the dark ages using 2k8R2
March 17, 2015 at 4:23 am
I don't think you quite understand the issue. I'm attempting to parse a non-date into a date variable. Yes this sounds stupid, but I'm testing whether or not it can....
March 17, 2015 at 3:21 am
Hi,
Earth is closed for maintenance, please come back later. We apologise for the inconvenience.
Mice
February 20, 2014 at 4:24 am
Personally, I'd advise against sharing temp tables between nested procedures, it can lead to a world of pain.
Our approach is to have a persisted table, create your records in there...
February 17, 2014 at 9:02 am
Yeah, my bad.. Should be BETWEEN 0 AND 30
May 22, 2013 at 2:44 am
I couldn't see any difference in CPU or Query cost between my answer and Lynn's answer when doing <10 records.
It's all down to preference.
DECLARE @FictionalDate DATE = '1969-12-15'
DECLARE @bdays TABLE...
May 21, 2013 at 10:29 am
In SSIS you can use the DATEPART function. So, even though it would be a little more code that you might want, you can concatenate all the separate parts you...
May 21, 2013 at 10:13 am
Very useful tool, thank you, but I don't know why you felt the need to include a whole text document about "God" in the project files. I'm not sure what...
April 16, 2012 at 7:42 am
CONVERT(TIME,DATEADD (ms, @YOURMILLISECONDS, 0))
May 13, 2011 at 8:16 am
I've been using the send mail functionality for a while now and have found so many uses for it, it's really cool. I send out morning reports using an HTML...
May 27, 2010 at 3:23 am
I find Professional Microsoft SQL Server 2008 Administration from Wrox press very useful
Chris
February 18, 2010 at 6:44 am
You can create a role that has the permissions you want and then grant that role to the new user
e.g. create role NEW_ROLE
grant select any table to NEW_ROLE
grant xxx to...
February 18, 2010 at 6:36 am
Viewing 14 posts - 1 through 14 (of 14 total)