Viewing 15 posts - 2,026 through 2,040 (of 13,849 total)
Sorry, I am new for cloud technology. so external here means we only store metadata of tables in our Azure SQL database that exist in other Azure SQL database....
May 20, 2021 at 8:32 am
One more issue arose. I cannot edit my C# Scripts... I hit the button and C# won't launch... I ran the repair on VS 17 and restarted my machine...
May 20, 2021 at 8:29 am
Thanks Phil. I'm going to update my packages to use the environment variables.
Still curious, what might caused this change since everything worked fine before.
Jay
Possibly something to do with ProtectionLevel,...
May 20, 2021 at 8:26 am
I would add an ORDER BY Id clause to your SELECT, to help ensure consistency between the two versions of the query.
May 20, 2021 at 8:24 am
Out of interest, could you explain the background to this requirement?
Have you thought about tracking down all missing schema references in the master (I assume 'dbo') schema and adding them?...
May 20, 2021 at 8:22 am
I would have expected it to report a failure in that case, but to be brutal you could add a Script Task to your OnError handler which does this:
May 20, 2021 at 8:11 am
Sensitive data like passwords are usually not stored inside packages, for security reasons.
Instead, they can be stored in SSISDB environments and marked as 'sensitive'. Once you have the password stored...
May 19, 2021 at 8:06 pm
What do you mean by 'external' exactly?
May 19, 2021 at 8:03 pm
I had to uninstall everything to clean things up. Should I install VS before the link you posted?
Assuming you have full VS Pro, yes.
May 19, 2021 at 4:34 pm
I suggest you run this: https://docs.microsoft.com/en-us/sql/ssdt/download-sql-server-data-tools-ssdt?view=sql-server-ver15#ssdt-for-vs-2017-standalone-installer
making sure you select 'SQL Server Integration Services' during installation. I'm not sure whether you have to uninstall your existing SSDT first.
May 19, 2021 at 10:08 am
Right clicking does not give me an option of View Designer
Which version of VS are you using?
Did you install the SSIS extensions after installing SSDT? Take a look
May 18, 2021 at 8:32 pm
Try right-clicking on the Payroll.dtsx package. You should see the option 'View Designer' – select that.
May 18, 2021 at 7:17 pm
Is the package part of an SSIS project? It needs to be. Open the project in SSDT and then open the package.
May 18, 2021 at 4:29 pm
Temp tables: instead of
declare @table table (id int)
use
create table #table (id int)
May 18, 2021 at 4:13 pm
Unfortunately, that error file does not shed much light on the problem!
I can suggest some things to try:
May 18, 2021 at 4:02 pm
Viewing 15 posts - 2,026 through 2,040 (of 13,849 total)