Viewing 15 posts - 48,901 through 48,915 (of 49,552 total)
Company I work for doesn't provide laptops. We all work on desktop machines.
I bought my own laptop, and while I do sometimes do work on it, it is my machine...
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
December 19, 2006 at 1:32 am
Sorry, for some reason I read that as Will Not.
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
December 18, 2006 at 10:17 pm
I thought of that, and it's certainly an option. I'm hoping for a quicker way.
With login failures and backup logs and the like, my error logs often reach a couple...
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
December 18, 2006 at 7:16 am
The too many rows would be the big one. I can't offhand think of another reason.
Say the NC is on MyDate and returns 100 rows. That means over 100 random...
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
December 18, 2006 at 6:44 am
Count(*) returns the number of rows
Count(<column>
returns the number of non-null values in that column.
In your case,
select count(age) from dependent where age is...
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
December 15, 2006 at 1:29 am
Sorry, I don't fully understand your schema, or how stuff relates to each other.
If you invoice someone for 1000, what gets added to what table?
If the customer then pays...
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
December 15, 2006 at 1:01 am
The data corruption forum is probably a better place for this than the forum on administration of notification services. That said....
DBCC returns a statement at the bottom stating the minimum...
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
December 15, 2006 at 12:45 am
According to books Online (2005)
The Scan:Started event class occurs when a table or index scan is started.
The Scan:Stopped event class occurs when a table or index scan stops.
I've used them...
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
December 14, 2006 at 4:29 am
Logical fragemntation of 50% is bad, but it's not too bad, especially if it's a GUID cluster. I've had one up at 99.98%. The extent fragentation is worse. I do't...
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
December 13, 2006 at 11:12 pm
December is financial year end for us, so no leave and on call for period 14 dec - 8 Jan for the DBA tem. Pity cause it's wonderful weather here.
Still,...
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
December 13, 2006 at 3:42 am
No need to move the pk, just get the clustered index onto another column. By preference (mine), static, ever increasing, narrow (esp if you have lots of NC indexes), unique.
You...
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
December 11, 2006 at 10:59 pm
One other thing, that I forgot earlier.
If you shrink a data file, SQL puts pages anywhere that there's space. A database shrink can completely undo a reindex.
Your order should be...
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
December 11, 2006 at 6:05 am
I can answer a couple of those:
I have read best-practice for when not to use GUID such as for a PK. Does having GUID PK create wacky indexing due to...
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
December 11, 2006 at 1:35 am
With that number of rows that you want to delete and the few that you need to keep, I'd suggest that you copy the rows you do want to keep...
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
December 7, 2006 at 1:32 am
The exam skill set is listed on the following page.
http://www.microsoft.com/learning/exams/70-431.asp
Before you ask for, or use brain dumps, etc, you should be aware that these are illegal.
Anyone who gives you...
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
December 7, 2006 at 1:18 am
Viewing 15 posts - 48,901 through 48,915 (of 49,552 total)