Viewing 15 posts - 1,096 through 1,110 (of 14,953 total)
sven bouapha (8/4/2012)
August 6, 2012 at 6:45 am
Put what you wrote here, "We need a senior-level, generalist DBA that can work with three other entry- to mid-level DBAs to maintain a fairly large SQL database infrastructure and...
August 6, 2012 at 6:35 am
patrickmcginnis59 (8/3/2012)
Michael Valentine Jones (7/30/2012)
There are plenty of people that create denormalized databases and claim they did it for speed, and...
August 6, 2012 at 6:26 am
Of course, if you really want to see how complex this kind of thing can get, try to make it deal with things like "USA" (or worse, "USA's"), or names...
August 6, 2012 at 6:20 am
Abu Dina (8/3/2012)
Street names in the UK tend to end with words like Street, Avenue, Crescent etc, if I replace...
August 6, 2012 at 6:07 am
It's not a substitute for a View. Whoever wrote that doesn't understand what a CTE is.
A View is a stored Select statement. A CTE isn't stored separately, it's...
August 6, 2012 at 6:01 am
The Stuff() function can take a variable as the position.
For example:
declare @Position int = 2;
select stuff('mystring', 2, 0, '-');
August 6, 2012 at 5:55 am
There are technical means of trying to prevent access. Data encryption outside the database is probably the best for keeping a DBA away from data, but even that may...
August 3, 2012 at 1:59 pm
Might want to add that to the submission rules on the Write for Us page for QotD.
August 3, 2012 at 1:43 pm
Two possibilities. Not sure if either is applicable.
First, a RowVersion column. If the data in the source table changes, the RowVersion will be updated. They're sequential (within...
August 3, 2012 at 1:38 pm
It's one of those things that sounds trivially easy until you start trying to do it.
You could set it to remove subsets, but then you end up with Address2 =...
August 3, 2012 at 8:17 am
delete from Table1
where ColumnName in (select ColumnName from Table2 where ...)
That's usually the easiest way to do that kind of thing.
August 3, 2012 at 8:06 am
A guy I know recently had something similar in an interview. The interviewer wanted him to test if a word was a pallindrome without using a reverse function. ...
August 3, 2012 at 6:31 am
Grant Fritchey (8/2/2012)
GSquared (8/1/2012)
Not that the consultant did anything wrong, but I bet a few people took his comment as a kick to...
August 3, 2012 at 6:19 am
Do you mean the part where I said this:
It's been a while since I used Erwin, but, last time I used it, it was a serious PITA. Visio works just...
August 2, 2012 at 9:44 am
Viewing 15 posts - 1,096 through 1,110 (of 14,953 total)