Viewing 15 posts - 4,696 through 4,710 (of 6,105 total)
The instructors I believe, but the folks on the DB side I've worked with at MS believe in DBCC CHECKDB on a regular basis (consider that it can be scheduled...
January 17, 2003 at 7:44 am
A chat session would be great. I would like that very much.
K. Brian Kelley
http://www.truthsolutions.com/
Author: Start to Finish Guide to SQL Server Performance Monitoring
http://www.netimpress.com/shop/product.asp?ProductID=NI-SQL1
January 17, 2003 at 7:42 am
They shouldn't be the same.
Each bit should be filled.
Questions 1 & 2 true, Question 3 false:
110 = 6
Questions 1 and 3 true, Question 2 false:
101 = 5
Questions 2 and...
January 17, 2003 at 7:34 am
You ran CHECKDB with the REPAIR_ALLOW_DATA_LOSS option and it didn't fix it? You have to specify this option explicitly.
K. Brian Kelley
http://www.truthsolutions.com/
Author: Start to Finish Guide to SQL Server Performance Monitoring...
January 16, 2003 at 2:37 pm
Just a clarification. You need a license per active instance. So if you are running an Active/Passive cluster, you only need one license. If you are running Active/Active, you need...
January 16, 2003 at 2:35 pm
If you are using Compaq, be aware they have sizers on their ActiveAnswers site to help you. Also, whoever your reseller is should be able to put you in touch...
January 16, 2003 at 9:16 am
Do a comparison between the inserted and the original table. Such as:
UPDATE dbo.sampleAuth
SET rsaPassword = dbo.ud_pwEncrypt(dbo.sampleAuth.rsaPassword,,NULL)
FROM Inserted I, dbo.sampleAuth sAuth
WHERE sAuth.sampleAuthID = I.sampleAuthID
K. Brian Kelley
http://www.truthsolutions.com/
Author:...
January 15, 2003 at 1:25 pm
It would be interesting to see what Michael comes back with respect to who's building the reports. That will carry a lot of weight with respect to the optimum design....
January 15, 2003 at 1:16 pm
- 12 bit columns equal 2 bytes of space. SQL Server will allocate a full byte and let you fill it up.
- 12 char(1) columns equals 12 bytes of space....
January 15, 2003 at 11:38 am
I agree with Andy on this one. But be aware of stored procedures like sp_helptext as well.
WITH ENCRYPT is a band-aid and besides, it's really annoying if you have to...
January 7, 2003 at 9:20 am
The system stored procedure, sp_who2 is undocumented, but you will find some info about it in Inside SQL Server 2000 by Kalen Delaney and also some references in the Microsoft...
January 7, 2003 at 9:13 am
For the price, it may be better to stay strictly eBook. Certainly printable for any who want it, but it also allows those who prefer electronic media to keep it...
January 6, 2003 at 8:30 am
I agree with you most of the time, Steve! Most of the time when I don't I'm wrong.
K. Brian Kelley
http://www.truthsolutions.com/
Author: Start to Finish Guide to SQL...
January 2, 2003 at 2:11 pm
There are enough free implementations of various protocols that have been deemed secure. Plus, there's always CryptoAPI. So I agree with Steve to not spend too much. You should be...
January 2, 2003 at 12:11 pm
Make sure a mail profile is set up for SQL Server Agent. Easiest way to check:
Through EM:
- Expand the Server
- Expand the Management Folder
- Right-click on SQL Server Agent and...
January 2, 2003 at 11:44 am
Viewing 15 posts - 4,696 through 4,710 (of 6,105 total)