Viewing 15 posts - 616 through 630 (of 13,838 total)
I could not create a catalog DB via windows authentication mode. So I am trying to find the other ways to do so.
As far as I can remember, Windows...
February 1, 2024 at 8:13 am
Having Access run a stored proc to execute a package deployed to SSISDB is the way to go. Any other way is likely to violate software licensing.
If you don't currently...
January 31, 2024 at 12:56 pm
OK, good. So what is it that you are not able to do, exactly?
January 31, 2024 at 12:08 pm
If you change the protection level to Don't Save Sensitive and try deploying again, the error should go away.
However, the values of any params marked as sensitive will not be...
January 31, 2024 at 12:07 pm
In VS2022, if you go to Extensions/Installed/All, do you see the following?
'SQL Server Integration Services Projects 2022'
January 31, 2024 at 11:34 am
Can you provide the exact error message?
What is the Protection Level of the SSIS project? (Under Project/Properties)
January 31, 2024 at 11:30 am
Please expand your sample data to include some values with embedded commas, so that I can assess whether the existing code can be refined to handle them. Thank you.
Note that...
January 30, 2024 at 1:41 pm
Thanks. This looks good. Haddnt stumbled on split_string
When i run code on my machine it returns?
Msg 8144, Level 16, State 3, Line 27 Procedure or function string_split has too...
January 30, 2024 at 1:34 pm
... future? 😀
January 30, 2024 at 12:45 pm
The stored proc GetSOR_Abstract is specific to your environment, so we can't help in detail.
But it looks like @tempdata is defined with a maximum length of 128 within the definition...
January 30, 2024 at 10:15 am
Like this?
SELECT t.n_type
,Total = COUNT (1)
,a_type = COUNT (IIF(t.d_type = 'a_type', 1, NULL))
...
January 30, 2024 at 8:27 am
Do you have any control over the format of the input file? If you could get them to use a delimiter which will not appear elsewhere in the text (|...
January 29, 2024 at 5:49 pm
DelimitedSplit8k is a highly optimised string splitter that was written in the days when there was nothing comparable built in to T-SQL. It has since become the de facto standard...
January 29, 2024 at 3:38 pm
Would you please provide your sample data in the form of CREATE TABLE / INSERT statements?
January 29, 2024 at 2:02 pm
Viewing 15 posts - 616 through 630 (of 13,838 total)