Viewing 15 posts - 4,606 through 4,620 (of 8,416 total)
sqlsc-1053844 (3/30/2010)
So the key position needs to match the query? Or a better question might be, do you have any links to where I can read up on this?
Sure:
March 30, 2010 at 12:24 pm
If you are looking for a powerful index reorganizing/rebuilding script, you could do much worse than look at MVP Michelle Ufford's very popular scripts:
http://sqlfool.com/category/sql-scripts/
The latest stable version is 3.0 I...
March 30, 2010 at 12:21 pm
TheSQLGuru (3/30/2010)
IIRC the two you mention as being useful and cool still carry the downside of preventing parallel query plans at a minimum.
I know why you say that, since all...
March 30, 2010 at 12:15 pm
What is max server memory set to at the moment?
Which edition of SQL Server are you running?
32 or 64 bit?
Is the server dedicated to SQL Server, or are there other...
March 30, 2010 at 12:03 pm
Ather M (3/26/2010)
Can somebody tell me what is ideal size for table.
The smallest size that meets the needs that inspired its creation.
March 30, 2010 at 11:59 am
sqlsc-1053844 (3/30/2010)
Suggestion:
[myTable] (sugKey) INCLUDE (sugInclude1, sugInclude2)
Existing:
col1 (sugInclude1)
col2
col3 (sugInclude2)
col4...
March 30, 2010 at 11:57 am
saurabh Srivastava-398090 (3/30/2010)
Thanks all for your responses. I got it resolved. It was a pretty simple thing.
It's always nice to know the problem is solved...though it would be nice if...
March 30, 2010 at 11:54 am
Yep, avoid implicit conversions like that wherever possible:
DECLARE @Example
TABLE (
field1 VARCHAR(30) NULL,
...
March 30, 2010 at 11:53 am
keepintouch2b (3/30/2010)
I notice table variables is recommended to store upto 2 to 3 Megs.Does this also apply CTE?
There's no such recommendation.
A (non-recursive) CTE is exactly equivalent to a derived table...
March 30, 2010 at 11:50 am
naresh1253 (3/30/2010)
Select * into newTable from oldTable (nolock)
If the database is currently using the FULL...
March 30, 2010 at 11:44 am
Jeff Moden (3/30/2010)
Actually... that's Lynn's article on Dynamic Tally Tables.
How odd. I distinctly remember looking for yours at the time. Not sure I have even read Lynn's.
March 30, 2010 at 11:18 am
TheSQLGuru (3/30/2010)
March 30, 2010 at 11:15 am
David Burrows (3/30/2010)
Hey Paul:ermm: Whats with the post on a very,very old thread
Or are you just trying to bolster your point count with QOD 😛
Answered the QotD, left a comment.
Anything...
March 30, 2010 at 11:08 am
Viewing 15 posts - 4,606 through 4,620 (of 8,416 total)