Viewing 15 posts - 1 through 15 (of 13,804 total)
OK, that is surprising.
What sort of connection are you using (ADO/OLEDB etc)? Can you supply a (redacted as needed) connection string that is failing?
April 17, 2025 at 11:19 am
There are no error messages in the All Execution report. I created a table that gets populated when there are any errors when job gets executed. This is where...
April 17, 2025 at 11:15 am
DROP TABLE IF EXISTS #ToSplit;
CREATE TABLE #ToSplit
(
SplitCol VARCHAR(8000) NOT NULL
);
INSERT #ToSplit
(
SplitCol
)
VALUES
('test1,test2,test3,test4')
,('test5,test6');
SELECT ts.SplitCol
,ss.value
FROM #ToSplit...
April 16, 2025 at 9:47 pm
It returns the value of 176. Not sure what that means
The All Executions report is way more verbose than that.
April 16, 2025 at 9:39 pm
Take a look in the All Executions report and see whether you get a more detailed error there.
April 16, 2025 at 10:27 am
Does it run if you execute it in T-SQL?
DECLARE @execution_id BIGINT;
EXEC SSISDB.catalog.create_execution
@package_name = N'package.dtsx'
, @execution_id = @execution_id OUTPUT
, ...
April 16, 2025 at 10:25 am
In case it's useful, here's an example of handling this in T-SQL. Note that I had to remove the XML encoding, as that was giving an error.
DECLARE...
April 11, 2025 at 9:08 am
If you check the All Executions report, does that give you any additional warnings or errors?
Also, if your Excel files always have column headings, importing the data with IMEX=1 and...
April 11, 2025 at 8:27 am
I am working with a script to exclude certain data types, and I was wondering if there is a comprehensive listing of the system.<datatype> for each of the mssql...
April 11, 2025 at 8:22 am
If you import the data into a table using all of the available outputs, is the data you require imported as part of that (contained in one of the imported...
April 10, 2025 at 9:45 am
What this is really supposed to do is making a dynamic pivot table.
This might be of interest:
https://www.sqlservercentral.com/articles/cross-tabs-and-pivots-part-2-dynamic-cross-tabs
April 9, 2025 at 3:08 pm
I think that the temp table is scoped to the subprocess spawned by the EXEC statement.
If you concat the INSERT and SELECT statements to your @sql variable, with...
April 9, 2025 at 1:57 pm
Is this a SQL Server question? Not sure I follow.
April 4, 2025 at 4:33 pm
I've now tried migrating from SSIS to Data Factory twice. The first time (three years ago) failed because DF could not do the things we needed. The second time was...
April 3, 2025 at 9:32 pm
Hi Phil - this is adding an ID of zero into the 'unioned' result - I need the second part of this union to effectively inherit the ID from...
April 3, 2025 at 3:34 pm
Viewing 15 posts - 1 through 15 (of 13,804 total)
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy