Viewing 15 posts - 2,026 through 2,040 (of 13,838 total)
Try right-clicking on the Payroll.dtsx package. You should see the option 'View Designer' – select that.
May 18, 2021 at 7:17 pm
Is the package part of an SSIS project? It needs to be. Open the project in SSDT and then open the package.
May 18, 2021 at 4:29 pm
Temp tables: instead of
declare @table table (id int)
use
create table #table (id int)
May 18, 2021 at 4:13 pm
Unfortunately, that error file does not shed much light on the problem!
I can suggest some things to try:
May 18, 2021 at 4:02 pm
Note to OP: Please click the Insert/edit code sample button when adding code to your posts, it's really not difficult to use.
May 18, 2021 at 3:47 pm
I've attached the failure to this post.
I cannot see it.
May 18, 2021 at 2:08 pm
Phil,
Yes, there won't be any duplication in the file within itself because of the unique values(username).
However, regular importing the same CSV file with older data and new data, will...
May 18, 2021 at 9:32 am
Phil,
Yes, there is a unique non-numeric key (username). Can the conditional split be used against one field to check for duplication?
V
If the key is unique, how can there possibly...
May 17, 2021 at 2:27 pm
I will try Conditional Split. Is there a way to then compare the incoming file source with the target table for unique values?
Vinay
What do you mean by 'unique values'?
The...
May 17, 2021 at 1:34 pm
What do you mean by 'continuous record-appending file'? Is this a file which just keeps on growing forever? I'd be looking quite vigorously for a way to avoid that, because...
May 17, 2021 at 12:43 pm
Is the user a member of the ssis_admin role in SSISDB?
May 14, 2021 at 3:16 pm
Are you using a Windows login to perform the deployment? SSIS does not like SQL logins much.
May 14, 2021 at 2:55 pm
Regarding your question about column names, have you considered creating a text file which contains (only) your desired column names as headings (which match the names in your target table)...
May 14, 2021 at 6:12 am
I did not quite understand your suggestion about the Data Conversion component for the columns. I am getting CSV files with hundreds of columns. Are you suggesting that I...
May 14, 2021 at 6:06 am
Unfortunately, the short answer is 'no and no', to the best of my knowledge.
Regarding your second point, the 'pure' SSIS way of handling this is to send all of the...
May 13, 2021 at 2:26 pm
Viewing 15 posts - 2,026 through 2,040 (of 13,838 total)