Viewing 15 posts - 1,741 through 1,755 (of 2,007 total)
Kingston Dhasian (10/6/2010)
SELECT CONVERT(varchar(12), WDate, 103) + ' ' + CONVERT(varchar(28), WDate, 8)...
October 6, 2010 at 5:45 am
I'm sure there must be a better way to do this, but try this: -
SELECT CONVERT(VARCHAR, wdate, 103) + ' ' + Ltrim(
...
October 6, 2010 at 5:27 am
atang.mogwera (10/6/2010)
Convert(ServiceDate,SmallDateTime)
Wrong way around.
CONVERT(SmallDateTime,'2010-01-01')
October 6, 2010 at 5:08 am
That sucks. . . I really enjoy these comics! What can we do to stop them being finished?
September 16, 2010 at 8:36 am
SELECT crn, admission, admdate, admtime, disdate, admsource, admtype
FROM mfCarlRepos.dbo.admissions as table_name1
WHERE admdate BETWEEN '2010-04-01'...
September 15, 2010 at 4:42 am
Resolved.
Unsure why this worked, but here was the solution -
The data-flow was multi-cast between 5 different tasks. All except the second one were green. Turns out the error was in...
September 14, 2010 at 9:36 am
Added an error destination file.
Below are a few of the codes that successfully were input into the DB: -
PA24Z
MC03Z
FZ07B
NZ05A
WA22X
DZ21H
FZ03A
FZ03A
Now here are a few that failed and were instead redirected :...
September 14, 2010 at 8:44 am
Alvin Ramard (9/9/2010)
3 of us posted an answer, but I think I'm the only one with the right format. (120 vs 102)
True. I didn't really look at the format required,...
September 9, 2010 at 9:53 am
Assuming @logicaldate is datetime, it should be
SELECT CONVERT(NVARCHAR(255), @logicaldate, 102)
Lol, think I was a little slow :hehe:
September 9, 2010 at 9:47 am
Lowell (9/9/2010)
Jeff Moden (9/8/2010)
Will this do?SELECT UPPER(CONVERT(VARCHAR(30),@ReturnValue,2))
[/code]
I know there is usually a reason behind everything in your posts , Jeff...I love reading your posts specifically because I learn something (and...
September 9, 2010 at 4:09 am
In the last six months my title has changed from "Applications Development Consultant" to "Software Developer" - yet my actual job hasn't changed at all. Can't say I really care...
September 1, 2010 at 8:54 am
Brandie Tarvin (8/31/2010)
August 31, 2010 at 8:35 am
suraj.app (8/31/2010)
In a transaction there are 3 update statements. The 2nd update statement invokes a trigger which in turn updates a audit table.
The 3rd update fails which rolls back...
August 31, 2010 at 8:22 am
Viewing 15 posts - 1,741 through 1,755 (of 2,007 total)