Viewing 15 posts - 16,771 through 16,785 (of 26,489 total)
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
Based on the data provided in your original post, what would be the expected result?
February 24, 2010 at 11:41 am
tstaker (2/24/2010)
Lynn Pettis (2/24/2010)
I have to disagree here. This is a good way to see how some thinks. Do they write a cursor or while loop to complete...
February 24, 2010 at 11:38 am
reidres (2/24/2010)
Lynn Pettis (2/24/2010)
reidres (2/23/2010)
Are my modifications fair?
My problem with comparing the two solutions above is you are actually comparing apples to oranges. Jason's routine is returning the results...
February 24, 2010 at 11:36 am
tstaker (2/24/2010)
CirquedeSQLeil (2/23/2010)
reidres (2/23/2010)
February 24, 2010 at 10:51 am
jcrawf02 (2/24/2010)
February 24, 2010 at 10:22 am
Improved the performance of my code, I moved the row_number() function into its own CTE instead of in the last CTE accomplishing CROSS JOIN's. Increased performance almost 50%.
February 24, 2010 at 9:37 am
reidres (2/23/2010)
Are my modifications fair?
My problem with comparing the two solutions above is you are actually comparing apples to oranges. Jason's routine is returning the results directly where as...
February 24, 2010 at 7:00 am
And?
February 24, 2010 at 5:26 am
Please be aware that by using the ALLOW_DATA_LOSS repair option you may have done just that, lost data. Please start a scheduled backup plan immediately so that if this...
February 24, 2010 at 4:06 am
GT-897544 (2/23/2010)
SAT_SQL (2/23/2010)
All
my DB, please provide any step by step procudure for the .
It look like this satmman(suspect)
primary database coruppeted,it is in the suspected mode want to...
February 23, 2010 at 9:50 pm
I posted my solution to the FizzBuzz challange on AskSSC. :smooooth:
February 23, 2010 at 11:03 am
Should we save the 12,000 post for Gail when she gets back from being on-site with a client?
February 23, 2010 at 9:16 am
Viewing 15 posts - 16,771 through 16,785 (of 26,489 total)