Viewing 4 posts - 16 through 19 (of 19 total)
declare @nvsDateTime NVARCHAR(20)
set @nvsDateTime = '1330'
select REVERSE(SUBSTRING(REVERSE(@nvsDateTime),0,3) + ':' + SUBSTRING(REVERSE(@nvsDateTime),3,LEN(REVERSE(@nvsDateTime))))
try this.....
December 3, 2008 at 3:07 am
Exactly what you want?
Are you getting error after implementing cascade option or wanting to use this cascade option?
December 3, 2008 at 2:48 am
Thanks gail.
Where can i get the detail of this(no point should be missed)?
And one more doubt.
How these things are communicated to memory?
October 16, 2008 at 2:24 am
If you are using sql server 2005, then use VARCHAR(MAX) datatype instead of text datatype.
if you are using sql server 2000, then you have to first split the string to...
September 1, 2008 at 4:34 am
Viewing 4 posts - 16 through 19 (of 19 total)