Viewing 15 posts - 4,156 through 4,170 (of 13,855 total)
DROP TABLE IF EXISTS #temp;
CREATE TABLE #temp
(
prodID INT,
mktID NVARCHAR(255),
rev DECIMAL,
qty DECIMAL
);
INSERT #temp
(
...
August 10, 2018 at 6:31 am
August 10, 2018 at 6:18 am
August 10, 2018 at 6:13 am
August 9, 2018 at 11:48 am
If you deploy your packages to SSISDB, this problem goes away, because you can do all of your config work with SSISDB 'environments'.
August 9, 2018 at 9:53 am
You have provided a set of requirements, but not asked any questions. Do you need help with something?
August 3, 2018 at 12:16 am
H4K - Thursday, August 2, 2018 6:12 AMIn SSIS, the data type for this column is DT_NUMERIC is that causing the problem?
What...
August 2, 2018 at 11:29 am
Unstructured data does not really belong in SQL Server. What are you intending to use the data for once it's inside the database?
August 2, 2018 at 11:26 am
August 1, 2018 at 11:42 am
August 1, 2018 at 11:10 am
Here is that image inline:
Does object BCPLStudent_diff exist?
August 1, 2018 at 10:51 am
Can you also check the text of the script which you have posted? It seems to be all mixed up and will never run as it stands.
August 1, 2018 at 9:30 am
I believe that you have over-complicated things. There is no need to split the logic into two paths.
Have a single path to your script task. The script task...
August 1, 2018 at 9:28 am
August 1, 2018 at 7:23 am
This is an interesting thread and I appreciate your well-thought-out comments, which have certainly made me think.
There is one part of your response which I'd like to take...
August 1, 2018 at 6:23 am
Viewing 15 posts - 4,156 through 4,170 (of 13,855 total)