Viewing 15 posts - 7,951 through 7,965 (of 13,876 total)
Try this
if object_id('tempdb..#data', 'U') is not null
drop table #data;
create table #data
(
EQID int
,Revis int
,Filename varchar(20)
,JobCode int
,JobQual...
November 5, 2015 at 1:42 am
Do you get any error or warning messages?
November 4, 2015 at 9:52 am
komal145 (11/4/2015)
I have a script task that reads the variable named"result" ( the stored procedure is ran in execute sql task and stores the result in this variable) and...
November 4, 2015 at 9:51 am
hoseam (11/4/2015)
withdrawal_date
resigned_date
I want to check, if the member was active during '2013-01-01 and withdrawal_date. Now withdrawal_date can be anything really, it can be '2014-01-05' or '2010-05-02'....
And I'm using resigned_date...
November 4, 2015 at 3:33 am
If you have 2012 or later. an easy way is to use TOKEN.
Assuming the file name is held in a variable called Filename (yes, I'm feeling creative today), your expression...
November 4, 2015 at 12:27 am
Sorry I can't help.
Whatever the problem is, it's fixed now. Cannot reproduce in 2014.
November 4, 2015 at 12:20 am
pharmkittie (11/3/2015)
1) there will only be one flat file...
November 3, 2015 at 1:42 pm
vipin_jha123 (11/3/2015)
I am working on 1 POC project.
I have 2 customer having source file in txt format, but the column sequence of both customer are different.
Number of column in...
November 3, 2015 at 1:20 am
Manic Star (11/2/2015)
November 2, 2015 at 2:42 pm
SQThaal (11/2/2015)
I was asked to go through stored procedures and make modifications so SQL injections would be impossible.
I read a lot of articles on sql injections and I see...
November 2, 2015 at 11:15 am
Nice response, Jeff.
In SSIS world, I often have to correct his confident-sounding assertions too.
November 1, 2015 at 5:04 am
sqlfriends (10/30/2015)
We have about 10 packages in 4 solutions.
And we have been using configuration file and save packages in...
October 30, 2015 at 10:43 am
Your Dev db is on the same instance as the Prod db? If yes, that's the first best practice to apply: don't do this!
October 30, 2015 at 5:34 am
yb751 (10/29/2015)
Ed Wagner (10/29/2015)
yb751 (10/29/2015)
I was thinking about unleashing it but then I...
October 29, 2015 at 9:30 am
SUBSTRING(AutoScore,1,4) == "APP1" --> APP1 output
SUBSTRING(AutoScore,1,4) == "APP2" --> APP2 output
...................
October 29, 2015 at 8:14 am
Viewing 15 posts - 7,951 through 7,965 (of 13,876 total)