Viewing 15 posts - 1,921 through 1,935 (of 13,838 total)
Metadata, rather than actual data? What sort of metadata?
July 9, 2021 at 2:30 pm
Are you truncating the target tables first? If not, how are you avoiding duplicates?
Might be simpler to perform a backup/ restore - have you considered that?
July 9, 2021 at 1:27 pm
Are the packages being executed with a logging level of 'NONE', perhaps?
July 9, 2021 at 9:56 am
Another option to try is to setup local configs with the pw and see if that works. From the Parms screen click the "Add Parameters to Configuration" button and...
July 9, 2021 at 9:54 am
Try
DROP TABLE IF EXISTS ##tmp
instead.
July 8, 2021 at 7:44 pm
Script the creation of one of the troublesome logins and check the DEFAULT_DATABASE for it.
July 8, 2021 at 7:42 pm
Add
using System.IO;
to your 'using' block and it should fix that.
July 8, 2021 at 2:29 pm
That's not enough information to enable us to help.
July 6, 2021 at 5:32 pm
Are there any clues in the All Executions report (All Messages)?
What is different about this package? Software versions? Different instance?
July 6, 2021 at 5:31 pm
Why create a c# task to move the file, and not just use a File System Task?
There was a time when I had some reliability issues with the FST...
July 6, 2021 at 2:52 pm
I can create a File System Task to move it to an Archive Folder using some C# script:
This is known to the rest of the SSIS world as a Script...
July 6, 2021 at 2:25 pm
What about if that file is not removed from the folder at the end of the day and another is not put in its place... will it not reprocess...
July 6, 2021 at 2:15 pm
Rather than going through all that, an alternative might be to run the package every 15 minutes (or whatever) between 8am and 10am.
If no file is found, the package completes...
July 6, 2021 at 1:53 pm
I imagine you have a reason for setting the variables as string in the package, but if not, why not just make them INTs?
Alternatively, create two new INT variables and...
July 4, 2021 at 11:30 am
That is just one issue, and the error message seems clear. This is running on the server and therefore (presumably) it cannot access that path when it runs.
July 2, 2021 at 4:01 pm
Viewing 15 posts - 1,921 through 1,935 (of 13,838 total)