Viewing 15 posts - 691 through 705 (of 813 total)
1) Select fewer columns, and use a well tuned covering index
2) Select fewer rows, and use a well tuned (covering) index
3) Make sure that table has a clustered index, and...
August 18, 2010 at 8:11 am
Ramji29 (8/17/2010)
August 17, 2010 at 7:50 am
I try to keep T-logs going back two full database backups; just in case the most recent full backup file gets corrupted/lost/overwritten/whatever/the tape degrades/whatever.
August 16, 2010 at 12:10 pm
If you really only have 5 disks, you have only 3 major choices:
5 disk RAID5
3 disk RAID5 + 2 disk RAID1
2 disk RAID1 + 2 disk RAID1 + hot spare
And...
August 16, 2010 at 12:01 pm
In memento of the "as compact as possible", change DayID to smalldatetime and, if necessary, start at -32768 (there are exactly 65,536 days available to the SMALLDATETIME data type).
DayNum should...
August 16, 2010 at 9:07 am
There is only one good way to see if encryption is being used; and that is to see if encryption is being used! Not if it is set up,...
August 12, 2010 at 9:07 am
SQL Jobs, at least in 2000, and very likely in 2005/8, can easily fail or hang without retry or notification.
SQL Jobs are a very useful way of automating work, but...
August 11, 2010 at 11:58 am
First defense against a data breach: Don't have the data in the first place.
This would be trivial if, for the past years, companies had only kept data absolutely necessary to...
August 9, 2010 at 11:04 am
Steve Jones - Editor (8/6/2010)
SQL 2008 has good auditing capabilities, and what you need to do is write...
August 9, 2010 at 7:51 am
What's the bottleneck on your particular system? If your accounting methods leave you with a hardware budget without a software license budget, you can try throwing hardware at it.
If...
August 4, 2010 at 11:03 am
Charles Kincaid (8/3/2010)
I would have appraoched the problem with a different tool set.
SELECT...
August 3, 2010 at 5:02 pm
The only way to truly tell if you can do a point in time restore, is to actually do a point in time restore (preferably to some other server), with...
August 3, 2010 at 1:03 pm
philcart (8/3/2010)
August 3, 2010 at 7:21 am
philcart (7/30/2010)
The cost of adding and updating the indexes is actually a lot smaller than it's made out to be. Only under extreme change (meaning insert/update/delete)...
July 30, 2010 at 2:23 pm
Viewing 15 posts - 691 through 705 (of 813 total)