Viewing 15 posts - 44,641 through 44,655 (of 49,552 total)
You can. Whether it will be useful or not is another matter.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 8, 2008 at 8:10 am
I'll be blunt, as usual.
Dumps are cheating. Get your hands on one of the training kits for the exam and work your way through it. People cheating their way through...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 8, 2008 at 8:05 am
Sorry, I didn't understand that. Could you please explain a bit more what you're trying to do?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 8, 2008 at 1:33 am
Could you be a little more specific on what you want please?
Next time, please post in the appropriate forum, not an article discussion forum.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 8, 2008 at 1:03 am
Turn autoshrink off!
Autoshrink doesn't just shrink the log file, it shrinks the data file as well. Shrinking data files causes index fragmentation. The next time data gets added, the data...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 8, 2008 at 12:56 am
Personally, I've always preferred using perfmon for checking SQL's memory. I just don't trust task manager.
I just tested out on my desktop (Vista 64 running SQL 64 bit) Task manager...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 7, 2008 at 3:46 am
Which is what the test with the read uncommitted shows.
If the isolation level is read committed or higher, and SQL has to scan the index it will scan in index...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 6, 2008 at 9:19 am
For proof of what read-uncommitted does to ordering...
(borrowed and slightly modified from WesleyB's old blog
CREATE TABLE tblClustered
(ID int,
MyDate smalldatetime,
TestField char(2000))
GO
CREATE CLUSTERED INDEX ixID ON tblClustered (ID, MyDate)
GO
DECLARE @i int
SET @i...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 6, 2008 at 8:59 am
However, even if the index hint is specified, there are ways to mess up the pseudo-ordering.
Parallelism (parallel scans and the subsequent repartition/merge streams return the data in no particular order)
Read...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 6, 2008 at 8:46 am
I'm going. Second summit in Seattle.
There's a very good Thai restaurant in a shopping center a couple blocks from the conference venue. I don't recall the name, it's the same...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 6, 2008 at 5:13 am
What information are you looking for?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 6, 2008 at 4:53 am
In general the defaults are pretty good and in most cases shouldn't be changed unless you have a good reason. The exception is the max memory if the server in...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 6, 2008 at 4:52 am
mj obi-wan kenobi (9/5/2008)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 6, 2008 at 4:09 am
Deepak (9/5/2008)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 6, 2008 at 4:07 am
Wow. 12 sec to compile...
If this server heavily used? Is that proc getting heavily used?
Can you run it again and trace (filtered by your machine name) the events Cache...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 6, 2008 at 4:01 am
Viewing 15 posts - 44,641 through 44,655 (of 49,552 total)