Viewing 15 posts - 256 through 270 (of 13,876 total)
Thanks for clarifying. No idea where those square brackets are coming from ... I just played around with some connections and cannot reproduce what you are seeing. I even tried...
October 31, 2024 at 6:25 pm
Like said, nothing special, other than that the named instance does not work when set in PROJECT Connection manager.... see my text and pics.
Ville
I've looked again at your pics...
October 31, 2024 at 5:26 pm
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
Viewing 15 posts - 256 through 270 (of 13,876 total)