Viewing 15 posts - 1,066 through 1,080 (of 2,701 total)
Schema compare - same way that ADS requires an add-on to do it, SSMS also has a free add-on (from devart) that can be installed to do it - so...
November 10, 2021 at 11:14 am
BTW. you forgot a very important feature for developers: debugging stored procedures. SSMS 17 still can it, SSMS 18 not - ADS? That feature is more important than the...
November 10, 2021 at 11:07 am
something minor for sure - even a single quote vs double quote could cause the package not to be opened.
glad you sorted it out
November 8, 2021 at 8:26 pm
we have both (on top of those that are on SSIS catalog)
in some servers the packages are stored on a SAN drive attached to the server (with a drive letter...
November 8, 2021 at 6:58 pm
MS documentation can be tricky - as Control is a superset of permissions that contain ALTER it means that CONTROL should never have been worded as being a minimum permission...
November 8, 2021 at 5:19 pm
/FILE is the way to go if what you posted on originally is indeed what is being requested and done.
as you can see on the top examples here https://docs.microsoft.com/en-us/sql/integration-services/packages/dtexec-utility?view=sql-server-ver15#bit
the command...
November 8, 2021 at 1:31 pm
Command line is:
dtexec.exe /DTS "\"G:\SSIS\Folder\MyPackage\"" /SERVER MyInstance /CONFIGFILE "\"E:\Folder\Configfiles\MyPackage.dtsConfig\"" /CHECKPOINTING OFF /REPORTING E
change to:
dtexec.exe /FILE "\"G:\SSIS\Folder\MyPackage.dtsx\"" /CONFIGFILE "\"E:\Folder\Configfiles\MyPackage.dtsConfig\"" /CHECKPOINTING OFF /REPORTING E
November 8, 2021 at 12:59 pm
No admin required - that is just bad clarification - just required priv required on DCOM which can be given to a non admin user/group.
see https://dba.stackexchange.com/questions/77320/how-do-i-grant-the-privilege-of-connecting-to-ssis for how to fix...
November 5, 2021 at 11:41 pm
or a Stored proc with a straight sql to retrieve the data from a linked server into SQL Server
caveats - which also apply to SSIS - dataypes conversion between oracle...
November 5, 2021 at 4:53 pm
regarding reorganize - there is an exception to this - if you have columnstore indexes that are frequently subject to deletions or that are subject on inserts in small batches...
November 5, 2021 at 4:47 pm
removing HT will not reduce the licensing - the licensing is per core or vCpu if on a vm and the host not fully licensed (Entreprise + SA).
if it is...
November 2, 2021 at 7:36 pm
powershell_ise is a good enough debugger - may need to be installed on pc as its not always ticked by default.
November 1, 2021 at 4:19 pm
close all your visual studio instances - if that does not work restart your pc and do the install then - without opening VS again!!
October 30, 2021 at 12:49 pm
for me it would mean using TDE as this is encryption at rest for all I know - I would ask whoever requested it to ensure that is what they...
October 22, 2021 at 8:57 am
when you build you sql string just make sure to replace any single quote with two single quotes - that will solve the issue with SQL while keeping the data...
October 20, 2021 at 6:36 pm
Viewing 15 posts - 1,066 through 1,080 (of 2,701 total)