Viewing 6 posts - 76 through 81 (of 81 total)
Thanks a lot Brad for your answer ... A french expression says: "I'll fall asleep cleverer this evening" 🙂 Thx
August 11, 2009 at 8:48 am
sorry for this maybe stupid question but what does "moving to the cloud" really mean?
Is it outsourced data storage?
Thanks for your replies
August 11, 2009 at 1:36 am
Good introduction! Looking forward to reading part 2 (+1).
And totally agree with Kev. I only want to add that nobody is asking anybody to fire their cursors if they prefer...
April 14, 2009 at 6:51 am
I was declaring a table (@fnfev), not creating a temporary table (like #fnfev).
For my needs a temporary declared table was the best in terms of performance.
September 19, 2008 at 12:48 am
Thanks Sergiy.
It was definitely a stupid AS error ... 😉
September 17, 2008 at 3:25 am
Hi,
Why don't you use the CONVERT function?
Following code should return the time in format hh:mm:ss in @time
declare @time char(10)
select @time = convert(char(10), @your_date, 8)
September 17, 2008 at 2:46 am
Viewing 6 posts - 76 through 81 (of 81 total)