Viewing 15 posts - 211 through 225 (of 13,840 total)
Hi Phil,
Yes, I opened the XML's as well and saw that they are not there but in the Connection Managers window they are...
"You can rename the connection manager without...
October 31, 2024 at 4:59 pm
First of all, I find it odd/annoying that I can't exclude a Project level connect from a package Connection Managers... at least I can not do it. Why should they...
October 31, 2024 at 3:49 pm
Create a variable and add an expression which evaluates to the exact query you want to execute. Use that variable as your source query.
October 30, 2024 at 3:09 pm
If you modify the source query for the Oracle data to select where
StartDate <= LoginDate <= EndDate
, can you then do the lookup in the way that you wish?
October 30, 2024 at 2:28 pm
Like this, perhaps?
DROP TABLE IF EXISTS #SomeData;
CREATE TABLE #SomeData
(
SomeDate VARCHAR(64)
);
INSERT #SomeData
(
SomeDate
)
VALUES
('Sun Sep 29 2024 09:28:55 GMT+0000 (Coordinated Universal Time)')
,('string...
October 30, 2024 at 2:22 pm
Yes there is. You can assign the result of running a query in an ExecuteSQL task to an SSIS variable

This variable can then be used to build...
October 30, 2024 at 10:14 am
While I don't know the answer to your question, my question is why are you writing your update like this? Why not this?
UPDATE TempSel
SET WertA = 'TEST'
WHERE...
October 30, 2024 at 10:06 am
Can you provide your sample data in consumable format, please?
October 28, 2024 at 8:18 am
Is VB Script even supported any more? I thought MS had killed it
Save this as a .VBS and then double-click … it still works on W11:
msgbox...
October 25, 2024 at 12:59 pm
That is SQL Server 2019, which explains the error message.
If you need to guarantee that your results are presented in the order in which they appeared in the original string,...
October 24, 2024 at 10:42 am
That was not an SSMS error, it was an error generated by the server when attempting to execute your query. You can see your SQL Server version by running this:
October 24, 2024 at 10:34 am
Check this article for the DelimitedSplit8k function:
We have assumed that you are using SQL Server 2022, as that is the forum you have posted in. The third argument of...
October 24, 2024 at 10:17 am
One possibility
DECLARE @x VARCHAR(500) = 'Hello world. #1234 has been replaced by #014521';
SELECT STUFF (value, 1, 1, '')
FROM STRING_SPLIT(@x, ' ')
WHERE LEFT(value, 1) = '#';
October 23, 2024 at 5:09 pm
Simply increase the frequency to every minute. The job won't kick off again if it is already running, if you know what I mean.
October 23, 2024 at 1:55 pm
Viewing 15 posts - 211 through 225 (of 13,840 total)