Viewing 15 posts - 1,741 through 1,755 (of 13,838 total)
Here is the plan:
-log into SFTP server and download files to local directory
-unzip files to specified folder
-import files into SQL Server table (it will always be the same table)
-if...
November 16, 2021 at 4:32 pm
how to handle features or columns that i don't know it
suppose i add new feature today and every feature have column
then every feature added will modify on code
if you...
November 16, 2021 at 8:25 am
First Create your query as a VIEW:
CREATE VIEW dbo.QRY_DATES AS
SELECT ...
Once the view is in place, you can reference it from other queries.
November 15, 2021 at 9:47 pm
So every time the file appears, it has a slightly different name? As long as there is only one file in the folder at any one time, this is not...
November 15, 2021 at 6:59 pm
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
Viewing 15 posts - 1,741 through 1,755 (of 13,838 total)