Viewing 15 posts - 7,726 through 7,740 (of 13,882 total)
scottcabral (1/8/2016)
I have a process that will import a txt file each month. There will be 2 separate txt files. One is a monthly file that will be delivered to...
January 8, 2016 at 10:19 am
You may want to point the developer here.
A script task would be used to call this.
The script task would need to assign the returned path to an SSIS variable, which...
January 8, 2016 at 7:40 am
simon-hulse (1/8/2016)
you can...what version of SQL are you using ? Is the user running the SSIS package in Visual Studio or executing the package in SSMS ?
But you shouldn't. Unless...
January 8, 2016 at 7:29 am
joeshu26 (1/8/2016)
January 8, 2016 at 7:06 am
dramon14 (1/8/2016)
I thought the...
January 8, 2016 at 6:54 am
d.carpenter (1/8/2016)
The new system will be on a completely...
January 8, 2016 at 6:25 am
niladri.primalink (1/8/2016)
I have seen it.But my requirement is to run the remote .exe file from my local machine from ssis package. I have also tried with...
January 8, 2016 at 6:20 am
asghar786 (1/8/2016)
January 8, 2016 at 6:04 am
PsExec might help you.
January 8, 2016 at 5:53 am
j-1064772 (1/7/2016)
Hit the nail right on the head. (Of course the "initiator" ; is required before the with:-))Thank you !
I hope that that 'initiator' comment was deliberately tongue-in-cheek! (As implied...
January 7, 2016 at 2:35 pm
Please provide DDL, sample data and desired results as per the link in my signature in order for people to be able to help you with this.
January 7, 2016 at 2:13 pm
dramon14 (1/7/2016)
January 7, 2016 at 1:16 pm
Have a look at this:
with MostRecent as
(SELECT pk_Contract, rn = ROW_NUMBER() over (partition by AccountName order by ContractEndDate desc) FROM @Customer_Contract)
update cc
set isLatestContract = 1
from @Customer_Contract cc
join MostRecent on cc.pk_Contract...
January 7, 2016 at 1:13 pm
j-1064772 (1/7/2016)
January 7, 2016 at 12:38 pm
dramon14 (1/7/2016)
January 7, 2016 at 12:36 pm
Viewing 15 posts - 7,726 through 7,740 (of 13,882 total)