Viewing 15 posts - 6,421 through 6,435 (of 8,416 total)
It seems there is a trace flag for everything :w00t:
While looking into that I also found this (2008 only I'm afraid):
Tracking checkpoints using Extended Events
Paul
January 9, 2010 at 8:10 pm
No worries.
January 9, 2010 at 7:51 pm
See http://technet.microsoft.com/en-us/library/cc917684.aspx
That's quite a long (and interesting document) but you just want the section entitled 'Nonyielding Examples Reported to Microsoft'. Just loading the dump and looking at the call...
January 9, 2010 at 8:41 am
Jeff Moden (12/5/2009)
I split them to octets (using PARSENAME) stored as TINYINT and, like someone suggested, use a calculated column to reassemble them just to make life a little easier.
This...
January 9, 2010 at 8:34 am
1. Using a (persisted) computed column would be my preference also. If the date portion is placed first in the compound field, you could arrange the partition function...
January 9, 2010 at 8:25 am
COldCoffee (1/7/2010)
What I am probabaly thinking of doing is to Lock the whole DB before the start of Process 1 and releasing the lock after it completes.
Yes - this would...
January 9, 2010 at 8:11 am
Sometimes a cursor is the best solution. Not usually the fastest - but then that's not always the primary consideration.
Aside from Profiler, there is a dynamic management view that...
January 9, 2010 at 6:49 am
rafa.aborges (1/8/2010)
January 9, 2010 at 6:43 am
...unless this is Enterprise Edition, with the lock pages in memory privilege granted, 8GB or more of RAM, and trace flag 834 enabled...in which case the entire buffer pool is...
January 9, 2010 at 6:32 am
The only other place that the last checkpoint is recorded is in the database boot page. Although you can get to that using DBCC DBINFO, it's not easy to...
January 9, 2010 at 6:15 am
Usually with this type of query the problem is that the optimizer underestimates the cost of the full-text query. My money is on the plan changing from being driven...
January 9, 2010 at 5:21 am
If I understand the original English description of the requirement correctly, this appears correct:
DECLARE @data TABLE
(
ACHAR(2) NOT NULL,
BINT NOT NULL,
CINT NOT NULL,
VCHAR(2) NOT NULL
);
INSERT@data
VALUES('a1', 0, 11, 'v1'),
('a1', 1, 12, 'v2'),
('a1',-1,...
January 9, 2010 at 5:03 am
Hey Mitch,
Here's some code to demonstrate one approach to the problem.
DECLARE @data TABLE
(
primary_key INTEGER NOT NULL PRIMARY KEY,
account_type NVARCHAR(30) NOT NULL,
full_name NVARCHAR(125) NOT NULL,
manager_name NVARCHAR(125) NOT NULL
);
INSERT@data (primary_key, account_type, full_name,...
January 9, 2010 at 4:39 am
drew.403 (1/8/2010)
January 9, 2010 at 1:29 am
Viewing 15 posts - 6,421 through 6,435 (of 8,416 total)