Viewing 15 posts - 61 through 75 (of 321 total)
Not had a chance to go through it properly but at first skim read that looks like a massively comprehensive article!
Thanks! :w00t:
March 7, 2011 at 1:02 am
Rahul The Dba (2/9/2011)
February 10, 2011 at 2:52 am
Looks like I'm another one who's never used the STR() function and having read the article I think I'll keep it that way.
At least I have a good reason now...
December 15, 2010 at 4:19 am
fszendzielarz (11/10/2010)
Doesn't it seem ridiculous that functionality that is already implemented is disabled for those who cannot pay for it? The irony is that...
November 10, 2010 at 7:51 am
fszendzielarz (11/10/2010)
Why not just partition the table? You get parallelism too.
Partitioned Tables are Enterprise Edition only
So the answet to why not is 10's of thousands of dollars!
November 10, 2010 at 3:01 am
Martyn Hughes (10/19/2010)
October 19, 2010 at 4:38 am
Stefan_G (8/25/2010)
160 is a non-breaking space.You very often get such characters if you copy and paste text from the web.
I had copied other queries in the same query window from...
August 26, 2010 at 3:52 am
Easy thing to check in these instances is the network.
Open the windows command prompt and make sure you can ping the database server.
August 25, 2010 at 5:58 am
Thanks for that...
I found this:
select 'weird', ascii(' ')
union all
select 'space',ascii(' ')
returned:
weird160
space 32
So it was a stray ascii 160 character which had somehow...
August 25, 2010 at 5:29 am
can't you ignore the second bracket in your search?
alternatively search for
exec('
and
exec(@[a-Z]
August 3, 2010 at 9:32 am
Thanks, I hadn't but I have now... lots of green ticks and no incompatibility warnings
August 3, 2010 at 4:17 am
I think what you're looking for is:
select 'SE_Country' as col1, count(*) from .....
union all
select 'FE_Country' as col1, count(*) from ....
union all
August 3, 2010 at 3:46 am
There is logic behind not using the date as the key to the date dimension... it stops developers from falling into the easy trap of using the key as the...
July 15, 2010 at 2:56 pm
steve_kirchner (7/14/2010)
I don't follow your Subject Title "How to Improve Performance by 3 Orders of Magnitude without Indexes".An "Indexed View" by definition utilizes an "Index".
It was actually done in Oracle...
July 14, 2010 at 12:47 pm
majorbloodnock (7/14/2010)
but how can we say it was wrong when it worked?
Just because something works doesn't mean its the right to go about it.
A query which takes 3 hours in...
July 14, 2010 at 11:50 am
Viewing 15 posts - 61 through 75 (of 321 total)