Viewing 15 posts - 1,756 through 1,770 (of 13,855 total)
If we were to provide the code which produced the desired results, but using your a,b,c,x,y,z data, it would work fine using this sample data, but probably not for your...
November 17, 2021 at 2:34 pm
Sounds like it's encode problem, if I am honest. Perhaps, for example, you're opening the file expecting it to be encoded in UTF-16 and it's actually in ANSI-1252 or...
November 17, 2021 at 11:23 am
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
Viewing 15 posts - 1,756 through 1,770 (of 13,855 total)