Viewing 15 posts - 2,701 through 2,715 (of 13,870 total)
Dear All,
How to encrypt column data types like (integer, numeric) in SQL server table level.
Kindly suggest
Sethu
This took me 15 seconds to Google. Please don't post questions which are...
May 1, 2020 at 3:57 pm
Once all of the projects and packages are set to Don't Save Sensitive and checked in (don't forget to check in the project file as well as the packages), I'd...
May 1, 2020 at 1:50 pm
Looks to me like it should run just fine and I agree with your assessment of what the error indicates.
I suggest that you open up the package in Notepad++ and...
May 1, 2020 at 1:46 pm
I am going to test this now. When this was originally set up I believe encrypting the data was believed to be the best practice. But all of our...
May 1, 2020 at 12:49 pm
Sample data should be provided in a form which can be executed in SSMS, as you should well know.
DROP TABLE IF EXISTS #Policy;
CREATE TABLE #Policy
(
...
May 1, 2020 at 1:10 am
Not directly possible, as far as I know.
But there may be an alternative approach. It is possible to execute multiple instances of the same package, in parallel. With some careful...
April 30, 2020 at 11:31 pm
What are your reasons for not using Don't Save Sensitive & supplying sensitive data via parameters and SSISDB environments?
April 30, 2020 at 10:22 pm
My understanding agrees with yours: you need a WSDL to use the Web Service Task.
Using a Script Component Source (which I assume is what you meant?) is not what I...
April 30, 2020 at 11:47 am
I would not use a lookup here - I would load the full file into a staging table. From there you can perform a merge or upsert (update/insert) from...
April 29, 2020 at 9:41 pm
I have table1
Col1 Col2 update_date
ABC ab 04/04/2020
ABC ab 05/04/2020
ABC ab 08/04/2020
BCD bc 09/04/2020
CDE cd ...
April 29, 2020 at 5:52 pm
We cannot easily help with this, based on what you have posted.
Are you using a unique identifier in the lookup? Is it unique in both the source file and the...
April 29, 2020 at 5:51 pm
This might help:
SELECT calc.dt
,TotAmt = SUM( (CASE
...
April 29, 2020 at 4:24 pm
Why have you started a new thread about this?
Original thread here includes as-yet unanswered questions for the OP.
April 29, 2020 at 4:08 pm
This does answer a question, but not the one posed by the OP!
April 29, 2020 at 4:02 pm
Although we are running the ssis in every 3 minutes.
Are you saying that this is what you do currently and you want to change it? If so, as 'Daily' is...
April 29, 2020 at 1:04 pm
Viewing 15 posts - 2,701 through 2,715 (of 13,870 total)