Viewing 15 posts - 48,916 through 48,930 (of 49,566 total)
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...
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...
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...
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...
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...
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...
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...
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,...
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...
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...
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...
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...
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...
December 7, 2006 at 1:18 am
Odd. I've got a very similar setup (Itanium 2005 connecting to x86 SQL 200) with no problems.
Are you a premier customer with MS? If so, it might be worth contacting...
December 6, 2006 at 11:08 pm
Viewing 15 posts - 48,916 through 48,930 (of 49,566 total)