Viewing 15 posts - 61 through 75 (of 13,870 total)
Can you mock up two or three rows of source data, along with an idea of what the 'parsed' results will look like?
You mention having XML stored in SQL Server,...
May 8, 2025 at 2:42 pm
Migrating your SSRS reports to Power BI Paginated reports is straightforward & sounds like a better solution to me. Or are you staying away from Power BI?
May 7, 2025 at 1:20 pm
Not directly related, but if you migrate to VS2022, everything is 64-bit, putting an end to this kind of faffing about!
May 2, 2025 at 11:16 am
There certainly is, and it's called Source Control. You may have heard of 'Git' – that is one of the most popular source control tools in use right now.
Take a...
April 30, 2025 at 2:06 pm
Mine also have '8' and they all seem to be working fine, so I think you're all set.
April 29, 2025 at 8:13 am
Thanks. Yes, that is the plan of course. I was just wondering if it was even necessary - could we rely on some setting external to the database to...
April 23, 2025 at 9:45 am
You've been here long enough to know that the protocol is to leave your original question intact and instead to post a response describing the resolution, in case this is...
April 23, 2025 at 8:36 am
Maybe have a setting somewhere which indicates whether to use UK, Australia or ROI.
Create a UDF to do the formatting which uses the environment setting. Change your code to use...
April 23, 2025 at 8:33 am
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
Viewing 15 posts - 61 through 75 (of 13,870 total)