Viewing 15 posts - 3,001 through 3,015 (of 14,953 total)
Yep. We've had plenty of discussion on "how can you define 'Senior DBA' when you can't even define 'DBA'?"
I'm an adequate database administrator. I know not to put...
November 1, 2011 at 1:53 pm
I'd have to see the whole query to really nail this one down.
Is it in the form of?:
select CompanyName, AccountNumber, County, Territory, SalesCount
from dbo.Accounts as PT
left outer join
...
November 1, 2011 at 1:43 pm
Try this:
declare @x xml
declare @f bit
set @x = ' <Answer code="Text" data="2011-10-25" />'
set @f = @x.exist('.[(concat(string((/Answer/@data)[1]), "Z") cast as xs:date?) eq xs:date("2011-10-25Z")]');
select @f
You can also programmatically generate the date to...
November 1, 2011 at 12:19 pm
That's precisely what Delayed Validation is for.
November 1, 2011 at 9:05 am
The problem for me isn't money. It's that there's no way for me to "copy and paste into SSMS and run the query", since I don't have the tables,...
November 1, 2011 at 7:08 am
In the properties of any connection in SSIS, you can use an Expression for the Connection String, and can control the connection dynamically that way.
November 1, 2011 at 6:54 am
Ninja's_RGR'us (10/31/2011)
Steve Jones - SSC Editor (10/31/2011)
I am not putting as much effort into the discussions lately with all the travel. Not likely to change, either, so I think...
November 1, 2011 at 6:48 am
paul.jones (11/1/2011)
As for examples,...
November 1, 2011 at 6:43 am
"Select Into" will replicate the columns of the data-source into a new table. You can use dynamic SQL to build the query so that you can name the table...
November 1, 2011 at 6:39 am
djackson 22568 (10/31/2011)
GSquared (10/31/2011)
I usually go as a computer geek on Halloween.I assumed you went as Picard or Data!
Dave
Those are Star Trek characters, right? I've heard of them.
November 1, 2011 at 6:34 am
If all a company is looking for is speed-of-query, then hardware is almost certainly cheaper than a good DBA.
However, if that's all they're looking for, then they don't know what...
November 1, 2011 at 6:30 am
Ninja's_RGR'us (10/31/2011)
We all knew this was coming....
Edit : And here's the kicker... Attachment # 10111. Only 1 bit of being #1 all across the board :w00t:.
Grats Gail!
October 31, 2011 at 12:25 pm
In SQL 2008, you could probably do name-value pairs, either in XML or (probably better) a Table Value Parameter, and then join to that using some variation of Outer Join.
I'll...
October 31, 2011 at 11:31 am
In SQL Configuration Manager, what connection types have you allowed?
October 31, 2011 at 11:27 am
There's definitely demand for senior DBAs. I get several calls per month from recruiters.
October 31, 2011 at 11:26 am
Viewing 15 posts - 3,001 through 3,015 (of 14,953 total)