Viewing 15 posts - 10,831 through 10,845 (of 13,878 total)
Or create a linked server on the TBL_A server to the server with the codes table. Then create a view on the TBL_A server which returns the required data (join...
March 30, 2012 at 2:20 am
Set a breakpoint in your code by clicking on one of the lines near the top and hitting F9. A red dot will appear in the margin.
Save that and click...
March 26, 2012 at 3:05 pm
But you have SSIS installed? Otherwise, how are you running this?
March 26, 2012 at 3:01 pm
Have you stepped through the code in debug? This should help you identify the exact cause of the problem.
March 26, 2012 at 2:39 pm
I am finding difficulty to execute this
Expand on what you mean by this please. What have you tried?
March 26, 2012 at 1:32 pm
I had to go back and see what I say since this post is so old.
I do that sometimes ... it's not always a happy experience - sometimes you realise...
March 23, 2012 at 1:23 pm
jasminipatel51181 (3/22/2012)
Thanks for the reply.my File name is not fixed it varies every day.
Thanks,
J
Well that clears things up.
Personally, I'd keep the file name as-is and instead use...
March 22, 2012 at 8:36 am
Thanks to all who replied, particularly Phil, who's method has worked for me.
😎
March 22, 2012 at 7:14 am
Koen Verbeeck (3/22/2012)
Just guessing here, but what if you store e -aoa in a variable?So your arguments expression is:
@[User::Arguments] + @[User::FileName]
Otherwise, whip out the plain old script task. 🙂
Thanks for...
March 22, 2012 at 3:13 am
Try this. Use a Script task and add the following two Usings:
using System.Net;
using System.IO;
Then change your Main sub - here's something I copied from elsewhere on the Web:
...
March 21, 2012 at 9:41 am
aaron.reese (3/21/2012)
RANK() OVER(Partition by CustomerNo order by CustomerNo ASC, Date ASC) as 'RANK'
Or this
with x as (select CustomerNumber = '0001',
...
March 21, 2012 at 7:32 am
We don't like cursors much here 🙂 Can you tell us what you are trying to achieve & we'll almost certainly find a faster way to do it.
March 20, 2012 at 9:23 am
Aha, I should have thought about that.
Well done on figuring it out.
March 19, 2012 at 2:49 pm
Viewing 15 posts - 10,831 through 10,845 (of 13,878 total)