Viewing 15 posts - 1 through 15 (of 57 total)
LOL Gila, thank you for the good laugh but I have to agree with your assessment. This whole thing is about cost.
June 19, 2014 at 11:19 am
Another spin on it using isnull in the case:
create table #tmpTST
(
MyBit bit NULL
)
insert into #tmpTST
select 1
union all select 0
union all select NULL;
select
case isnull(MyBit,0)
when 1 then 'True'
when 0 then 'False'
end...
June 18, 2014 at 3:01 pm
I strongly feel the same. In fact, we needed another DBD in the recent past and couldn't find one so our HR paid for a study using Dice. They found...
June 18, 2014 at 1:16 pm
I do agree faster copy/paste solutions work in a pinch, however spending time working your first SSIS solution will pay off down the road. First, you have new ammo for...
May 18, 2012 at 2:41 pm
Definitely best to store your packages on a server share and add configurations if necessary. I bet the users machine was logged off or turned off.
May 18, 2012 at 1:28 pm
BO
I agree if the process will be used going forward you should experiment with SSIS. Here are some steps I used recently to setup a similar process:
-----------------------------------------
Add flat file connection...
May 18, 2012 at 1:23 pm
Thank you all for replying to my post. We ended up installing SP2 and that seems to have corrected the issue.
June 20, 2011 at 2:48 pm
It really does come down to the purpose of the machine. Like Steve said we are human and tend to salivate over all the bells and whistles however what we...
February 10, 2010 at 8:45 am
Thank you very much for the reply. Sometimes it takes another set of eyes to see something so obvious. Your solution worked great. Basically I wanted a single query that...
February 9, 2010 at 10:51 am
You can review all the sites mentioned however the best thing you could do is purchase a good book on t-sql and get a copy of SQL Server DEV or...
February 5, 2010 at 10:00 am
I wouldn't waste time on clowns that are obviously not professionals. This site houses professionals helping other professionals. There are professionals with varying levels of experience and then there's the...
January 14, 2010 at 11:17 am
As Lynn stated, it is very difficult to provide a good solution without table structures and sample data however here is another take utilizing CTE's. I have no idea if...
December 28, 2009 at 10:43 am
Before joining the ranks of the IT industry I was 110% involved in music. I played drums for over 20 years starting in the school bands and venturing to my...
December 22, 2009 at 3:32 pm
BOL is going to be your best resource. It has all material you will need to pass the exam. You can purchase one of the MS books specific to your...
August 27, 2009 at 1:57 pm
Awesome. Good to hear you have reached success.
August 17, 2009 at 9:17 am
Viewing 15 posts - 1 through 15 (of 57 total)