Viewing 15 posts - 31 through 45 (of 13,659 total)
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
Thanks Drew. Now the question is, what does SQL consider commented out vs not commented out in my example. In the example I gave will SQL consider everything between...
October 23, 2024 at 8:40 am
Haven't looked for your error, but you could replace all of this:
...
October 21, 2024 at 6:48 pm
If this is a production server, you shouldn't be running Developer Edition on it!
But if it's not, and Integration Services has been installed as per the link I sent earlier,...
October 21, 2024 at 5:00 pm
Viewing 15 posts - 31 through 45 (of 13,659 total)