Viewing 15 posts - 3,706 through 3,720 (of 13,882 total)
Do the column names change from day to day?
If they do, do you want to create a new table every day?
Or is the target table static in structure such that...
May 2, 2019 at 6:34 pm
Thanks Thom, quite right! I should have added the text "in this case".
May 2, 2019 at 5:38 pm
Try adding
DROP TABLE IF EXISTS Response22;
before your CREATE TABLE statement.
Or change your CREATE TABLE statement to
TRUNCATE TABLE Response22;
May 2, 2019 at 4:07 pm
Being picky, I do have a few other minor comments about the code:
May 2, 2019 at 4:03 pm
Please check that both of the variables are being set correctly.
April 18, 2019 at 6:40 am
Try setting a breakpoint after the ExecSQL task so that you can inpect the runtime contents of your vSQLString variable ... perhaps that will throw some light on what is...
April 18, 2019 at 6:30 am
What is the data type of @[User::vDateThreshold]?
When you say: "I can see that it isn’t evaluating my variable correctly", what are you seeing, exactly\?
April 18, 2019 at 5:45 am
Yes, to examine what SSIS packages do, you need to open them in VS/SSDT.
April 18, 2019 at 4:03 am
unfortunately, we are where we are, and we need to change the existing password
Will changing...
March 4, 2019 at 6:29 am
February 20, 2019 at 11:49 am
I thought that IMEX=1 was valid for reading files, not writing to them.
What problems do you see if you omit it?
February 19, 2019 at 4:24 am
CSV files are text files. They do not have sheets.
Three separate data flows, in series, to the same file, should do it.
February 1, 2019 at 9:47 am
There are no technical reasons why this would cause problems.
But if your spreadsheet users change the schema of the spreadsheet, as users tend to do, those changes will...
February 1, 2019 at 9:44 am
Are the list items held in a database table?
February 1, 2019 at 9:41 am
January 28, 2019 at 5:58 am
Viewing 15 posts - 3,706 through 3,720 (of 13,882 total)