Viewing 15 posts - 466 through 480 (of 814 total)
GilaMonster (2/11/2012)
February 14, 2012 at 7:08 am
GilaMonster (2/12/2012)
Changing passwords is easy, a sysadmin can change passwords without knowing the old values. ALTER LOGIN...The hashed passwords however cannot be recovered. The hash is a one-way hash
High quality...
February 13, 2012 at 3:04 pm
wmt (2/7/2012)
I'm trying to setup my SQL instance to encrypt connections.
My plan was to get a certificate, install it, then goto SQL Config Manager, turn on Force Encryption = Yes...
February 13, 2012 at 11:10 am
cengland0 (2/10/2012)
February 10, 2012 at 8:08 am
L' Eomot Inversé (2/9/2012)
February 9, 2012 at 12:57 pm
Steve Jones - SSC Editor (2/9/2012)
The idea here would be to use this in your table. So if I have salaries:
CREATE TABLE employees
( firstname VARCHAR(50)
, pwd VARCHAR(200)
)
GO
INSERT dbo.Employees
VALUES...
February 9, 2012 at 11:17 am
AlexSQLForums (2/9/2012)
🙁 never added salt before.
Adding a salt in and of itself is merely a device to 1) prevent the trivial identification of the same cleartext (i.e. hash A5BC is...
February 9, 2012 at 10:36 am
Eric M Russell (2/9/2012)
Nadrek (2/9/2012)
Very useful, though for anyone doing a more comprehensive security audit, I'd refer to Vyaskin's code, which I modified only slightly:
The script you posted is great...
February 9, 2012 at 9:57 am
Very useful, though for anyone doing a more comprehensive security audit, I'd also run Vyaskin's code, which I modified only slightly, and which does not list sysadmin roles, but does...
February 9, 2012 at 8:54 am
L' Eomot Inversé (2/9/2012)
...Hashbytes is a hashing function, not an encryption function...
I would say the question as intended is a useful learning tool, but it was written poorly.
HASHBYTES does...
February 9, 2012 at 8:48 am
Thank you for the articles!
Are you going to cover auditing who reads which data, as well as changes?
February 2, 2012 at 1:56 pm
If you're doing this for auditing reasons, you might also want to see what happens when you set up an account without the complexity enforced with a password that would...
February 2, 2012 at 9:00 am
We've experimented with local Enterprise SATA SSD's here, starting with TempDB (Data and Log sharing SSD RAID sets), to extremely good effect. So far, we've been using them over...
February 1, 2012 at 3:17 pm
This looks good, and makes sense as well.
For extra credit, include instructions on how to cause OS/filesystem level fragmentation as well :).
February 1, 2012 at 2:55 pm
mtillman-921105 (1/30/2012)
February 1, 2012 at 2:51 pm
Viewing 15 posts - 466 through 480 (of 814 total)