Viewing 15 posts - 1,756 through 1,770 (of 13,849 total)
Should be doable. Which part of this problem is puzzling you?
November 15, 2021 at 6:03 pm
Not sure whether I know how to debug C# 'correctly', but this is how I do it.
November 15, 2021 at 4:28 pm
In order for SSIS to find the Newtonsoft assembly when the package runs, you need the following two things to be in place:
November 14, 2021 at 4:38 pm
November 14, 2021 at 4:27 pm
Have you added the Newtonsoft DLL to the GAC?
November 13, 2021 at 6:21 pm
Good summary.
A quick note about SSDT for VS2022 – as far as I know, there is not yet any support for extensions which support SSIS (or SSAS/SSRS). It will probably...
November 12, 2021 at 9:16 am
ABS is not an aggregate function & that is your problem, I think. If you changed that to
SUM(ABS(b.HistoryQuantity - a.TOTFCST))
it might resolve your issue.
November 11, 2021 at 5:07 pm
Instead of concat could it show values in separate fields for the value of different tests?
example:
Oxygen_Value Diameter_Value
Thanks.
By "separate fields", do you mean in separate columns? No, that is not...
November 11, 2021 at 1:39 pm
Replace the SELECT ', ' row of my code with this.
SELECT CONCAT(', ', q.Test, ' - ', q.Value)Following the same logic, you should easily be able to...
November 10, 2021 at 8:50 pm
If this was 2017, I'd use STRING_AGG() to do this, but as we're in a 2016 forum, FOR XML PATH will have to do:
SELECT p.ContainerID
...
November 10, 2021 at 3:50 pm
Not much consolation, but it's always been like that: VS comes out first, followed, often many months later, by the SS*S development toolset.
I suggest you revert to VS2019 for now,...
November 10, 2021 at 12:51 pm
I am not seeing a Power BI forum on this group. Is there one and I'm just missing it?
One of our Devs has a question. He's trying to get...
November 9, 2021 at 2:23 pm
SELECT base_object_name
,DBName = PARSENAME(base_object_name, 3)
,SchemaName = PARSENAME(base_object_name, 2)
,ObjectName =...
November 9, 2021 at 1:47 pm
Sure. Something like this (untested) should do it:
for (int i = 1; i <= 632;...
November 9, 2021 at 1:24 pm
Please explain why it's "not really the solution".

November 9, 2021 at 1:02 pm
Viewing 15 posts - 1,756 through 1,770 (of 13,849 total)