Viewing 15 posts - 7,726 through 7,740 (of 13,876 total)
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
Or, if the copy really is 'almost' the same, perhaps you could consider generating an exact copy and then applying the changes to that.
January 7, 2016 at 11:16 am
Perhaps you would be so good as to re-read my question & try again.
January 7, 2016 at 10:31 am
ElNevera (1/7/2016)
Phil Parkin (1/7/2016)
So, do your development using Windows Auth and then use an SSISDB Environment to reconfigure the connections accordingly after deployment, so that they work on the server.
Thanks...
January 7, 2016 at 10:00 am
ElNevera (1/7/2016)
Phil Parkin (1/7/2016)
Is there a reason you're not using Windows Authentication?
Whilst initially setting up the packages we were using Windows Authentication but when I deployed the packages to SQL...
January 7, 2016 at 8:55 am
dramon14 (1/7/2016)
January 7, 2016 at 8:53 am
ElNevera (1/7/2016)
I work in a newly created BI team. We have experience using Business Objects for ETL and some development experience using Visual Studio 2013 and TFS. We are using...
January 7, 2016 at 8:38 am
Viewing 15 posts - 7,726 through 7,740 (of 13,876 total)