Viewing 15 posts - 16,756 through 16,770 (of 26,484 total)
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
ekant_alone (2/24/2010)
i am little curiouscan't we use 'year' function in where clause?
You could do this:
mike 84768 (2/24/2010)
WHERE...
February 24, 2010 at 12:16 pm
Actually using it to parse HTML, iirc. I didn't write the code, I shared my knowledge of the Tally table with a co-worker who implemented it.
February 24, 2010 at 12:02 pm
Here is some test code:
create table #TestTable (
DataValue varchar(24)
);
insert into #TestTable
select '399.' union all
select '400.' union all
select '400.367.' union all
select '400.35.369.' union all
select '37.367.369.3' union all
select...
February 24, 2010 at 11:59 am
Viewing 15 posts - 16,756 through 16,770 (of 26,484 total)