Viewing 15 posts - 211 through 225 (of 814 total)
I've never tried password expiration within SQL (we use AD accounts when we need to expire passwords), but technet has http://technet.microsoft.com/en-us/library/ms161959.aspx
"Password expiration policies are used to manage the lifespan of...
November 1, 2013 at 11:47 am
You mentioned a Compellent, which I presume to be a Compellent SAN. If you really want to dig into this, you'll need to work with the SAN team to...
November 1, 2013 at 11:24 am
Be aware that SQL Server has no mechanism that I'm aware of that can guarantee that existing passwords actually comply with the password policy.
Any password may be entered when the...
November 1, 2013 at 11:16 am
Have a table that isn't compressed, put in a CHAR(20), insert a bunch of rows of 'aaaaaaaaaaaaaaaaaaaa'. Checkpoint the write.
Open up a file (.mdf or backup file) in a...
October 31, 2013 at 12:22 pm
My apologies for the necromancy on a 2012 thread, but in looking for exactly this, I found both this thread and code to do so that belongs here.
Credit to Ryan...
October 30, 2013 at 10:27 am
I know this is an old thread, but please note that Celko and Improved Celko are the only ones (of the non-CLR ones in the test harness, as written) that...
October 25, 2013 at 12:34 pm
Gail and Jeff hit the nail on the head in the first two replies.
With the benefit of all the posts ahead of mine, I suspect your actual question is closer...
October 11, 2013 at 3:49 pm
If they're really doing that many copy only (presumably Full) backups, then why not switch everything to Full or Bulk-logged recovery model and tell them you can always use PITR...
October 11, 2013 at 12:08 pm
Thank you for bringing this up - MSA's look to be very interesting once servers and the domain are at 2008R2 functional level or higher, and at least somewhat interesting...
October 11, 2013 at 11:54 am
Separately, you need to use different passwords on each instance so that you're not worried about changing them. Work hard up front so that you're willing and ready to...
September 12, 2013 at 12:02 pm
L' Eomot Inversé (9/12/2013)
...
Do remember that draconian rules requiring excessively frequent password changes are always part...
September 12, 2013 at 11:56 am
David.Poole (9/12/2013)
Don't put Soundex inside the difference function as Soundex comparison is implicit in the function.
select Difference(Soundex('Brighton'),Soundex('Bob')) -- Returns 4
select Difference('Brighton','Bob') --Returns 1
My mistake! Editing post.
September 12, 2013 at 10:22 am
Grant Fritchey (9/11/2013)
Disable the 'sa' login completely and rely on AD logins to manage all the servers.
I agree in theory, but in a disaster recovery scenario, is it then possible...
September 12, 2013 at 10:10 am
Ask, and be very specific, what your SAN admin means by "disk".
Remember, you have, in some ordering (ask your SAN admin)
Physical spindles/SSD's
RAID groups
LUNs
MetaLUNs (sets of LUNs in a RAID)
For SQL...
September 12, 2013 at 9:53 am
A few years ago, I worked extensively with Double Metaphone code in straight SQL - it provided very good results for U.S. names and addresses http://www.sqlservercentral.com/scripts/Miscellaneous/30219/%5B/url%5D.
SOUNDEX, however, I rate as...
September 12, 2013 at 9:33 am
Viewing 15 posts - 211 through 225 (of 814 total)