Viewing 15 posts - 16,756 through 16,770 (of 26,489 total)
Change your code. I ran the following (UTC difference is -7 where I am), no problems:
declare @cnt int
declare @utc int
select @cnt = 1
while @cnt <...
March 1, 2010 at 11:08 am
Curious, why aren't you using DATEDIFF?
select getdate(), getutcdate(), datediff(hh, getutcdate(), getdate());
March 1, 2010 at 10:55 am
I won't be hanging around The Thread during the day Saturday and Sunday. From the looks of it, I may be freezing up and down the pitch those days...
February 25, 2010 at 3:20 pm
Does the following ode help you out?
declare @IntDate bigint,
@CharDate varchar(32);
set @IntDate = 20100224184500;
set @CharDate = CAST(@IntDate as varchar(32));
select @IntDate, @CharDate, cast(stuff(stuff(stuff(@CharDate,13,0,':'),11,0,':'),9,0,' ')...
February 25, 2010 at 12:16 pm
BaldingLoopMan (2/24/2010)
February 24, 2010 at 3:36 pm
halifaxdal (2/24/2010)
February 24, 2010 at 3:34 pm
Tom.Thomson (2/24/2010)
reidres (2/24/2010)
Well we are looking for apples, not oranges.
I'm slightly concerned about the apples and oranges issue: is what you are measuring just generating a cte with the...
February 24, 2010 at 3:00 pm
BaldingLoopMan (2/24/2010)
gsquared:
One of the most fundamental rights any human being has (or has been denied) is the right to choose with whom to associate. If Lynn, or anyone else, chooses...
February 24, 2010 at 2:15 pm
Tom.Thomson (2/24/2010)
reidres (2/24/2010)
Well we are looking for apples, not oranges.
I'm slightly concerned about the apples and oranges issue: is what you are measuring just generating a cte with the...
February 24, 2010 at 1:49 pm
Ditto, glad you were able to resolve your problem. Also glad that you provided feedback on your problem, as this could help others with a similar problem.
February 24, 2010 at 1:40 pm
Not sure, but looks like it might be a missing or corrupt xprepl.dll file.
February 24, 2010 at 12:51 pm
If you do post a dmp file, zip it and attach it to a post.
February 24, 2010 at 12:48 pm
To do a side by side install, SQL Server 2008 will most like need to be a named instance if SQL Server 2000 is installed as the default instance.
February 24, 2010 at 12:33 pm
reidres (2/24/2010)
The N being written to the table allows you to retreive the data in the proper order by including the necessary ORDER BY clause on the query. With out...
February 24, 2010 at 12:22 pm
Viewing 15 posts - 16,756 through 16,770 (of 26,489 total)