Viewing 15 posts - 45,361 through 45,375 (of 49,571 total)
Sandy (7/30/2008)
Please Check this:
Those aren't official Microsoft Standards, they're blog posts by two MVPs.
July 30, 2008 at 9:29 am
Have you tried downloading RC0? It's the latest publicly available pre-release version. AFAIK, the CTPs have hardcoded expiry dates in them. It makes sense as they are just for testing.
July 30, 2008 at 9:02 am
To be a bit more specific, when I'm considering indexes, what I will do is create the index that I think may be useful (perhaps one on a foreign key),...
July 30, 2008 at 8:54 am
Sandy (7/30/2008)
Gail,If you will become the DB designer then which model do you prefer??
I mean to say...a Covering Index on the table OR a Index on Foreign Key column??
Depends. Maybe...
July 30, 2008 at 8:45 am
Then that should have only affected your local machine, not the server.
July 30, 2008 at 7:42 am
Mayank Khatri (7/30/2008)
By Acessing you mean r they just Selecting(DDL Statements) or modifying it too(DML statements)?
Selects are also classified DML statements. DDL are data definition statements, things like create table,...
July 30, 2008 at 7:35 am
The first step to solving deadlocks is finding the cause. Two ways to do that, you can set up a trace and monitor the deadlock graph events, second you can...
July 30, 2008 at 7:30 am
SQL defers to the OS for knowing date, time and timezone. You can't set it within SQL Server.
July 30, 2008 at 7:11 am
Why do you think it's related to the buffer pool?
You increase the buffer pool by increasing the amount of memory allocated to SQL server. The amount of memory specified by...
July 30, 2008 at 7:04 am
Shrinking databases is not recommended at all, not just shrinking of TempDB. Why are you shrinking your databases every day? If you're not rebuilding all indexes after the shrink you...
July 30, 2008 at 6:59 am
Has anyone dropped or changed an index?
Are any of the indexes fragmented?
Are the statistics up to date?
What does the execution plan of that query show?
July 30, 2008 at 6:44 am
A clustered index scan is a table scan. It's a full and complete read of all of the data pages in the table. You see the operation as a table...
July 30, 2008 at 6:40 am
Preferably an index seek. An index scan isn't that much better than a table scan.
Most of the time I prefer a nonclustered index, but there may be some cases where...
July 30, 2008 at 6:27 am
Dependencies are entered when dependant items are creates. So if you create a stored proc that uses a particular table, when you create the proc, the relevant entries are added...
July 30, 2008 at 1:36 am
You don't need any proof of experience to write or to get the cert.
How are you studying for the exam if you don't have all the relevant experience?
July 30, 2008 at 1:33 am
Viewing 15 posts - 45,361 through 45,375 (of 49,571 total)