Viewing 15 posts - 20,956 through 20,970 (of 22,184 total)
You'll need to set a flag on the table itself, marking the records that no one else can access and include that check in your queries.
Otherwise, you have maintain...
February 29, 2008 at 7:01 am
Cool. Sounds like you're in the right track.
February 29, 2008 at 6:35 am
Sorry, I was spending more time thinking about the logic than the syntax. You can cut my pay for this job. 😉
How about something like this (this assumes one row...
February 29, 2008 at 6:34 am
I think you're on the right track. How about something like (data types would probably need to be adjusted & this is psuedo-code)...
DECLARE @ComparePwd nvarchar(10), @CompareEmail nvarchar(100)
SELECT @ComparePwd = u.Pwd
,u.*
FROM...
February 28, 2008 at 1:10 pm
If it's that big & complex, script or proc probably won't make a difference in performance terms. The procedure is likely to be easier to maintain since you can set...
February 28, 2008 at 11:24 am
I agree with Matt. Stay away from simply trying to mask real data. If you need to get the precise types of data distribution that real data gives you, then...
February 28, 2008 at 10:58 am
ritesh (2/28/2008)
February 28, 2008 at 10:55 am
It really depends on the SQL statement in question. To a large degree, depending on what the SQL is doing, there is no substantive difference between a script and a...
February 28, 2008 at 10:52 am
Oh yeah, we'll ask about deadlocks too. Isolation levels would be a grossly inadequate answer, just so you know.
The thing is, we seldmon hire for entry level dba positions. Much...
February 28, 2008 at 8:51 am
I'm mainly interested in hearing how they're going to troubleshoot stuff. I want to hear what they're going to do, how, when... I've had interviewees that insist the only way...
February 28, 2008 at 8:20 am
Yeah, we had a guy who said he was a 10 on internals. We asked him how an index was stored... "In the database."
Ta-Da!
Thanks for playing. Our parting contestants will...
February 28, 2008 at 8:06 am
Mark Markov (2/28/2008)
He said: If you need to do a lot of SELECT, would you use a...
February 28, 2008 at 7:48 am
What ahutchens says and check the configuration manager.
February 28, 2008 at 7:34 am
Yeah, but did you log in from a different machine to the server? The reason is, you need to confirm that it's allowing external connections.
ODBC works fine with instance names....
February 28, 2008 at 7:13 am
leea (2/28/2008)
February 28, 2008 at 6:51 am
Viewing 15 posts - 20,956 through 20,970 (of 22,184 total)