Viewing 15 posts - 151 through 165 (of 245 total)
can you use a case statement to filter out the records that can't be converted to date?
something like this? I haven't checked for feburary because i'm not sure how to...
November 25, 2010 at 9:57 am
i would just add the following code into the CATCH block
SELECT ERROR_NUMBER() AS ErrorNumber,
ERROR_MESSAGE() AS ErrorMessage
I would think if you want to use the RAISERROR function you would use it...
November 4, 2010 at 5:32 am
thank you so much, Lutz.
I've used this way of bringing back information before but i think i'm constantly in the mindsite of using PIVOT so was trying to get it...
October 26, 2010 at 2:21 am
Brandie Tarvin (10/15/2010)
A job where the Dev instance was on the same server as the Production Instance. SQL Security was not their...
October 19, 2010 at 9:57 am
hi, i notice in the following link, for what i see as the same problem, they give a similar answer but wrap it with the STUFF function.
I've tested this on...
August 25, 2010 at 5:39 am
I think you must be right.
i ended up with the following:
declare @subjectline varchar(100) = 'test subject',
...
July 23, 2010 at 6:13 am
this is a thread that gave me alot of help on this subject.
http://www.sqlservercentral.com/Forums/Topic747597-392-1.aspx
July 14, 2010 at 5:46 am
great article and some great posts. I shall be keeping an eye on this article/thread!
June 29, 2010 at 7:13 am
at skcadavre, fair enough 😀
June 4, 2010 at 6:16 am
thanks for the responses.
so if i wanted to find out if 'lowell@davidandrews.com' exists on my own server how would i go about that?
lets say that the email in the database...
June 4, 2010 at 5:56 am
http://databases.aspfaq.com/general/why-do-some-sql-strings-have-an-n-prefix.html
this says that it denotes the following string is Unicode
May 19, 2010 at 7:06 am
oh wow!, thanks!
i had sort of found a way and was half way through implementing it but this way is much less code 🙂
April 22, 2010 at 4:20 am
i tend to put PRINT lines in my code to see what its returning.
March 26, 2010 at 6:14 am
would it be easier to have another table?
1st table stores the patients
2nd table stores the definitions of the drugs
3rd table stores the informatoin that links the two
-------------
Patients
-------------
ID Name
1 John Smith
2...
March 24, 2010 at 3:45 am
Viewing 15 posts - 151 through 165 (of 245 total)