Viewing 15 posts - 136 through 150 (of 13,838 total)
Instead of logging your errors in a physical table (whose changes are being rolled back, I assume), log them in a table variable and then insert from the table variable...
February 3, 2025 at 4:17 pm
Which part of an SSIS project deployment do you think cannot be achieved through DevOps?
February 3, 2025 at 1:10 pm
I swapped things around a bit. Obviously, I cannot test it.
ALTER PROCEDURE dbo.RunStoredProcedures
AS
SET NOCOUNT ON;
DECLARE @FAIL_COUNT INT = 0;
BEGIN TRANSACTION;
BEGIN TRY
BEGIN TRY
...
February 3, 2025 at 9:30 am
I have never created a custom task in SSIS, so I'm not going to be able to help you with this, unless you have specific questions about C# code within...
February 2, 2025 at 8:41 pm
Try running the problem proc first (in a SEQ container) before all of the others.
February 2, 2025 at 11:00 am
-- Reply deleted
February 2, 2025 at 10:51 am
Are you planning on using Events in a Script Task to do this?
February 2, 2025 at 10:47 am
This is a good round-up of what is possible with JSON and SQL Server. Well done on putting it together.
My one non-JSON comment would be regarding the following:
Always implement proper...
January 31, 2025 at 11:43 am
My translation software came up with the following:
Hello
Do you know if the use of begin try and catch can cause database crashes when executing stored procedures with high volume of...
January 30, 2025 at 2:41 pm
That's interesting. I assume you've done this multiple times, with the same (approximate) result?
January 29, 2025 at 11:04 am
While I'm sure that people appreciate the effort behind this blog post, this is not really the place for it. If you want to submit technical articles like this, I...
January 18, 2025 at 10:09 am
Hi Martin,
please see this - https://www.sqlservercentral.com/forums/topic/how-create-a-google-bigquery-connection-manager-in-ssis
I am trying to use a google bigquery connection. However It seems not so straight forward as I cant seem to find the connection...
January 17, 2025 at 9:08 am
with that I totally disagree - server should have 64 bit version - and workstation should have the one matching the VS version you have (32 bit if lower...
January 16, 2025 at 2:34 pm
Yes, despite some rather "hacky" solutions, you can't have the x86 and x64 Redistributables installed on the same system. Ideally, you have the one that matches what's on the...
January 16, 2025 at 2:03 pm
The app is just display engine... I use the PS to export from mssql and load to PG...
This piece of code is the issue.
# Convert the image data to...
January 13, 2025 at 4:10 pm
Viewing 15 posts - 136 through 150 (of 13,838 total)