Viewing 15 posts - 841 through 855 (of 6,105 total)
Jeff Moden (11/15/2008)
K. Brian Kelley (11/15/2008)
I wrapped both in a while loop retesting the same password.
Heh... you used procedureal code to drive a set based solution. :hehe: Ok... I...
November 15, 2008 at 5:35 pm
Jeff Moden (11/15/2008)
November 15, 2008 at 12:47 pm
Jeff Moden (11/15/2008)
K. Brian Kelley (11/14/2008)
November 15, 2008 at 12:44 pm
Jeff Moden (11/14/2008)
November 14, 2008 at 8:04 pm
Jeff Moden (11/14/2008)
Tell you what... let's do a "real" test....
November 14, 2008 at 7:43 pm
Let's look at this more closely. Good point, I didn't catch it was only showing the first iteration of both loops. Let's look at the cost per "row" for the...
November 14, 2008 at 3:43 pm
On a related note, here is the procedural based code:
DECLARE @Password varchar(20)
DECLARE @i tinyint
DECLARE...
November 14, 2008 at 11:59 am
But see, you put row in quotes meaning you are shoehorning in the definition! Aha! We could say CBAC although that doesn't flow as well (for either character by agonizing...
November 14, 2008 at 11:28 am
If you mean who is a member of the sysadmin fixed server role,
EXEC sp_helpsrvrolemember 'sysadmin';
GO
With respect to finding databases owned by SA:
SELECT name
FROM sys.databases
WHERE owner_sid = SUSER_SID('sa')
November 14, 2008 at 8:00 am
I would disagree that this is RBAR. RBAR implies you're doing a set-based type of operation. Checking a password for complexity, at the end of the day (since you still...
November 14, 2008 at 7:49 am
You can do a loop where you cycle through the password that has been entered one character at a time using SUBSTRING. Then you can use a set of nested...
November 13, 2008 at 6:32 pm
skjoldtc (11/13/2008)
My point is that people get irritated when I don't reply fast enough. I would rahter not have the hassle to begin with.
Well, their expectations are unrealistic and I...
November 13, 2008 at 3:16 pm
John Erdovegi (11/13/2008)
You could create a similar system to be use internally for your business, and on secure-websites, then you have more control and security. It can be run...
November 13, 2008 at 3:14 pm
dphillips (11/13/2008)
Wouldn't allow, or currently doesn't offer? Sounds like a matter of preference and ease of offering, not a matter of ability.
Wouldn't allow. For instance, an internal system would...
November 13, 2008 at 2:23 pm
John Erdovegi (11/13/2008)
November 13, 2008 at 1:11 pm
Viewing 15 posts - 841 through 855 (of 6,105 total)