Viewing 15 posts - 391 through 405 (of 709 total)
At 25 bytes per row, and only 700 rows, this is a tiny table taking up only a few data pages.
From Books OnLine, in the ALTER INDEX topic, under the...
Eddie Wuerch
MCM: SQL
June 2, 2010 at 3:02 pm
Re: Certificate expiration dates
From BOL (CREATE CERTIFICATE):
Built-in functions for encryption and signing do not check the expiration dates of certificates. Users of these functions must decide when to check certificate...
Eddie Wuerch
MCM: SQL
April 19, 2010 at 12:36 pm
My question then is under what circumstances does the Database Master Key need to be opened?
It must always be opened. However, if that key has been encrypted by the...
Eddie Wuerch
MCM: SQL
April 14, 2010 at 2:41 pm
Two thoughts:
1. Check out the article "How to: Create Identical Symmetric Keys on Two Servers"
Here: http://msdn.microsoft.com/en-us/library/ms366281(SQL.90).aspx
2. In your sample script, you are not opening your database master key...
Eddie Wuerch
MCM: SQL
April 9, 2010 at 2:28 pm
I've picked up a lot of certs over the years, and one thing I can say with certainty: I have learned something new each time.
For nearly everyone, studying for...
Eddie Wuerch
MCM: SQL
April 6, 2010 at 2:16 pm
Like most SQL Server questions, the answer is "It depends" 🙂
To plan something like that, there are a number of questions about the config and usage I would take into...
Eddie Wuerch
MCM: SQL
March 31, 2010 at 3:49 pm
I grabbed this from an earlier post by someone else, but I've forgotten who the original poster was.
You can run the following on each instance periodically to view recent CPU...
Eddie Wuerch
MCM: SQL
March 22, 2010 at 2:33 pm
Last year, the early-bird rate effectively became your code, and you couldn't specify two codes. Thus, all the pre-con discussion about how to buy in to the party if...
Eddie Wuerch
MCM: SQL
January 13, 2010 at 1:24 pm
Normal aggregate functions (SUM(), AVG, () COUNT(), MIN(), MAX(), etc.) are available to be used as windowed functions (using OVER and PARTITION BY).
SELECT Title,Subject, Max(Price) OVER(PARTITION BY Subject) As MaxPriceBySubject
...
Eddie Wuerch
MCM: SQL
January 11, 2010 at 4:06 pm
I've used MBOPartners.com (formerly mybizoffice.com) for this very thing. You go find your own contracting opportunity, then they execute the statement of work. You enter your time on...
Eddie Wuerch
MCM: SQL
December 17, 2009 at 3:51 pm
Garadin (12/16/2009)
Eddie Wuerch
MCM: SQL
December 17, 2009 at 3:13 pm
I don't know about documentation, we simply ran our own tests on our 3PAR sans:
1. Record SAN allocation
2. Create thin-provisioned LUN, and mount it
3. Record SAN allocation
4. Format mount point
5....
Eddie Wuerch
MCM: SQL
December 1, 2009 at 12:43 pm
Mani-584606 (11/30/2009)
Here, when the entire network goes down, will the SQL Services from active node try to move to passive node? or will they stay at active node itself as...
Eddie Wuerch
MCM: SQL
December 1, 2009 at 12:31 pm
The key point with IFI is that it doesn't write those zeroes. Using the NTFS Sparse File mechanism, the file is merely marked as being the new size and...
Eddie Wuerch
MCM: SQL
December 1, 2009 at 12:00 pm
It's been a few years, but I have used this on NetApp SANs without problems.
The feature relates to what Windows/NTFS does with the modified file; the type of storage has...
Eddie Wuerch
MCM: SQL
November 30, 2009 at 4:11 pm
Viewing 15 posts - 391 through 405 (of 709 total)