Viewing 15 posts - 7,186 through 7,200 (of 8,416 total)
That's an excellent idea Steve - would it be possible to link to his related CBO blog entires also?
http://sqlblog.com/blogs/joe_chang/archive/tags/cost+based+optimizer/default.aspx
September 6, 2009 at 4:39 pm
Grant Fritchey (8/28/2009)
September 6, 2009 at 4:37 pm
Marcin Gol [SQL Server MVP] (9/6/2009)
September 6, 2009 at 4:21 pm
Marcin Gol [SQL Server MVP] (9/6/2009)
September 6, 2009 at 4:10 pm
The following script illustrates one way to use a read-only file group.
-- Temporary database
CREATE DATABASE [6D79D4CD-D98F-4D75-B3C0-6134DF86BDC2];
GO
-- Add a file group to hold read-only tables
ALTER DATABASE [6D79D4CD-D98F-4D75-B3C0-6134DF86BDC2]
ADD...
September 6, 2009 at 4:07 pm
MalindaB (9/6/2009)
I am using sql server express, so I don't have access to sql profiler.
There are at least three things you could do:
1) Download the evaluation edition of SQL...
September 6, 2009 at 3:29 pm
If CHECKSUM page validation is enabled for the database (and always has been*), the chances of a data corruption going undetected are rather small. So long as this is...
September 6, 2009 at 5:26 am
One logical possibility is that the client or driver is converting the value to an integer type.
Try tracing the connection with SQL Profiler to see the text of the statement...
September 6, 2009 at 5:15 am
There's nothing special about a Navision database (except maybe in the 'special needs' sense) so a linked server would be by far the better option. Trying to use .NET...
September 6, 2009 at 5:09 am
I always enjoy Joe Chang's work - his blog on SQLBlog.com is a favourite of mine.
The referenced article is a typically thorough and measurement-based analysis; it's also a good summary...
September 6, 2009 at 5:01 am
I'll have a look at the results you posted, but the site formatting makes it kinda hard 🙂
It may pay to save the results to a CSV file (right-click and...
September 5, 2009 at 10:19 am
Jack Corbett (9/5/2009)
To limit contention with the operating system, I will usually set the max degree of parallelism setting to one less than...
September 5, 2009 at 10:01 am
Hi Aidan,
If you could run the following and upload the results it would help enormously.
Thanks
Paul
-- scheduler info (inc. NUMA)
select parent_node_id,
scheduler_id,...
September 5, 2009 at 9:36 am
PRINT OBJECT_DEFINITION(OBJECT_ID(N'master.dbo.sp_helptext', N'P'))
September 5, 2009 at 6:10 am
Viewing 15 posts - 7,186 through 7,200 (of 8,416 total)