Viewing 15 posts - 91 through 105 (of 147 total)
Thanks Paul, very illuminating.
That will really help when we're looking at reasons to upgrade to SQL2k8 instead of SQL2k5. I hadn't thought of testing on an empty table: I'd...
April 19, 2009 at 7:13 pm
The relationship between partitioning and performance depends very much on the queries being executed (as per everything else to do with SQL Server, and all other DBMSs: I wish I...
April 19, 2009 at 6:24 pm
We get all our servers supplied with mirrored local system drives, so we always use your option 1 below.
Our reason for doing it this way is that if the system...
April 19, 2009 at 6:07 pm
This is a classic "It Depends" question. The usage of the databases is going to vary, in particular the rate of data growth and data changes and whether that...
April 15, 2009 at 6:08 pm
The statistics are really important for the query optimiser. The rebuild index job will update them for your indices but the non-indexed fields can be important too. We've...
April 15, 2009 at 4:37 pm
Are there any other applications than SQL Server running on the server (eg. IIS, Reporting Services, Analysis Services, etc.)? SQL Server itself is fine but from the page faults...
April 15, 2009 at 4:22 pm
What you're seeing is exactly what I would expect to see.
At a simplified level, when the SQL Server service starts it will ask Windows to allocate whatever the minimum memory...
April 13, 2009 at 7:02 pm
I always look at the date/time of the files at the OS level. These are updated to the last time the SQL Server service was started, but after that...
April 6, 2009 at 8:04 pm
When a restore starts the appropriate flag is set in sys.databases (or sysdatabses on SQL2k). This shows in MS/EM as (Restoring) after the database name.
If necessary, it then resizes...
April 2, 2009 at 4:31 pm
I've always found it easier to understand/read to use the FLOOR and CEILING functions when specific rules are required when shortening numbers with specific rules. If necessary add a...
April 2, 2009 at 3:46 pm
Litespeed definitely does support splitting a backup over multiple files: we use it that way for several of our large production databases. Just specify multiple ",@file = '...'" clauses...
April 1, 2009 at 9:14 pm
I don't have any categoric proof that it does or doesn't, but it's what I would expect for a non-indexed field that can only have two values (plus null of...
March 31, 2009 at 7:18 pm
You're right Mark; what you're describing is going to perform sub-optimally because it's going to behave like a fragmented disk. If you've got the space/budget you would get the...
March 29, 2009 at 4:26 pm
The only time we've used a second log file is due to temporary space issues immediately prior to a large transaction. We removed it as soon as practical afterwards,...
March 26, 2009 at 5:24 pm
If your SAN is properly configured it will mask a lot of the issues of having the data and logs co-located.
However, the way the two types of files are accessed...
March 22, 2009 at 5:10 pm
Viewing 15 posts - 91 through 105 (of 147 total)