Viewing 15 posts - 5,101 through 5,115 (of 8,416 total)
First thing I notice is that SQL Server is suggesting you create exactly the same index I mentioned earlier:
CREATE NONCLUSTERED INDEX nc1
ON dbo.Con_RecipientToMessages (Id)
INCLUDE...
March 19, 2010 at 3:46 am
Using a recursive CTE:
DECLARE @Sample
TABLE (
code CHAR(1) NOT NULL,
value...
March 19, 2010 at 3:26 am
Another solution I have used in the past is to monitor the size of the ad-hoc plan cache using a job based on:
SELECT [MB used] = SUM(single_pages_kb + multi_pages_kb)/1024.0
FROM...
March 19, 2010 at 2:23 am
peleg k (3/19/2010)
i attached both execution plans, he first is with variables, and the second with numbers.i went over them and didnt see any diffrence?!?
Those are estimated plans.
March 19, 2010 at 2:17 am
Use a full-text index.
USE Test;
GO
CREATE TABLE dbo.Test
(
row_id INTEGER IDENTITY NOT NULL,
...
March 19, 2010 at 1:58 am
Is a trace running on the TEST server?
March 19, 2010 at 1:34 am
Roust_m (3/18/2010)
How do you show that the poor performance is related to the cache bloat?
Not easy. One way is to show that the procedure cache is using too much...
March 19, 2010 at 1:23 am
Stage-by-stage breakdown:
--
-- *** STEP 1 ***
--
-- Get all the data for a particular product from the
-- history table and the current Products record
--
-- The columns are converted to SQL_VARIANT for...
March 19, 2010 at 1:11 am
The Dixie Flatline (3/18/2010)
Speaking of time zones, it's midnight here. Goodnight, Paul
Night Bob. That puts you somewhere like Chicago...CDT. Just after 6pm Friday here.
March 18, 2010 at 11:19 pm
Jeff Moden (3/18/2010)
David Burrows (3/18/2010)
BWAAAHAAA....TWANG......
Hmmmmm... the possible makings of new T-Shirt.:-P
Should give Steve an idea for your 20,000 posts award.
March 18, 2010 at 10:58 pm
GSquared (3/18/2010)
john.arnott (3/18/2010)
Lynn Pettis (3/17/2010)
Like clustered indexes are better than nonclustered indexes?
Sometimes I think about teasing my DBA by saying stuff like "since clustered indexes are better than non-clustered, ...
March 18, 2010 at 10:57 pm
CirquedeSQLeil (3/18/2010)
I am curious why you changed your alias to include NZ.
Several reasons, mostly consistency. I am registered with that name on other forum-type sites, and it matches my...
March 18, 2010 at 10:53 pm
David Burrows (3/18/2010)
It's that recurring nightmare of Jeff creeping up on me with a Pork Chop Launcher......BWAAAHAAA....
TWANG......
Powerful mental image there...
March 18, 2010 at 10:48 pm
JC-3113 (3/18/2010)
on Paul's i get an error
XML methods require that your session has SET QUOTED IDENTIFER ON.
Many features of SQL Server 2005 require specific settings (indexed views, for example).
Output to...
March 18, 2010 at 10:45 pm
Viewing 15 posts - 5,101 through 5,115 (of 8,416 total)