Viewing 15 posts - 1 through 15 (of 51 total)
So my question is how can I add these nuget/dll files into ".SSISDeploymentManifest" and install them automatically when I am deploying the package?
As far as I know, you cannot. Adding the...
April 29, 2024 at 1:08 pm
Are you using a third-party library to convert PDF to Excel? If not, how are you doing it?
Sorry for late reply. I found the solution. It was because of...
April 18, 2024 at 5:00 am
As far as I know, C# cannot do this conversion natively.
NitroPDF does not appear to have an API, so its functions cannot be called from other applications. You'll have...
March 27, 2024 at 9:38 am
Assuming the package is deployed to SSISDB, it is possible to execute it by calling a stored procedure.
Stored procedures can be called from a SQLCMD command line and parameters...
February 12, 2024 at 9:01 am
but this leads to the question - why do you need to remove them? they are valid characters and if the output is being displayed anywhere for users removing...
May 18, 2023 at 4:16 am
They are different characters and therefore multiple nested REPLACE commands would be required.
DECLARE @x VARCHAR(50) = CONCAT ('Some''', CHAR (96), CHAR (145), CHAR (146));
SELECT @x
...
May 17, 2023 at 12:15 pm
I am not sure if this will help any but LMGTFY got the following item that might prove useful. However, as Phil Parkin pointed out this is an SQL...
May 8, 2023 at 9:45 am
what errors you getting? and did you try debugging the code in case the error you get does not reflect the true error?
Yes I have tried few things....
March 17, 2023 at 12:11 pm
If you just want an id you can just add ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) id,
as a column to the query to get a sequential id column....
January 31, 2023 at 4:22 am
Generate your own would appear to be the next resort.
If you open the link, there is a PDF option as well.
Is there anyway to import PDF file data to...
January 30, 2023 at 1:17 pm
What do you mean by 'fix' exactly? Do you want to generate a unique Id yourself?
I can generate my own uniqueID and I did that too but...
January 30, 2023 at 12:42 pm
What do you mean by 'fix' exactly? Do you want to generate a unique Id yourself?
I can generate my own uniqueID and I did that too but there is...
January 30, 2023 at 12:35 pm
The project that I am designing in my ssis project requires me to constantly change my tables and their column types. Its a big project so when...
January 27, 2023 at 11:53 am
Not directly related to your issue, but there are a couple of good-practice items I suggest you consider:
January 27, 2023 at 11:09 am
January 27, 2023 at 10:13 am
Viewing 15 posts - 1 through 15 (of 51 total)