DB Native versus Win Authentication with SSIS Packages and Deployment

  • Hi

    Like I tried to write in my earlier message, yes, several different SqlServers (and one Oracle)

    With native users and Win Authentication are bot widely in use

    Like said, I am connected to the SSIS Catalog Sql Server as myself (Win Auth) and I the Win Auth sources/targets are also available (read) with my credentials...

    When I right click a package from the Catalog project and choose Execute - is it trying to use mycredentials or possiblythe credentials of the Sql Server service...?

  • WilburSmith wrote:

    When I right click a package from the Catalog project and choose Execute - is it trying to use mycredentials or possiblythe credentials of the Sql Server service...?

    You can check the answer for yourself by looking at the All Executions report.

    But 'your credentials' is the answer.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Jep ok

    It says 'Caller' - I guess that is the account it runs then...

    Well, the ConnectString states that the connection is Win Auth, so why the ''..ANONYMOUS LOGON' error then...?

  • and as I said on my prior post - it will not work like that as it is a double hop situation - only way for this execution to work is if you setup a SQL Agent job to run the packages - and even that can have other issues depending on how your server is setup (service account being a local or domain account) and if you use a proxy to run the packages or not.

  • WilburSmith wrote:

    Well, the ConnectString states that the connection is Win Auth, so why the ''..ANONYMOUS LOGON' error then...?

    It's a Kerberos thing. Get yourself a big cup of tea and read this link for more info.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Okay thanks

    I'll skip this 'Execute package' from the Catalog project then

    Service account is domain account

    I need to either create SSIS Proxy or then ask that they have the service domain account permitted to the databases in question

  • in addition to what Phil supplied - which may mislead you into thinking you can set it up to bypass this particular issue.

    SSIS catalog  DOES NOT allow for double hop - so if you execute on server A (through SSMS on your own PC) and the package needs to run as YOURSELF and connect to SERVER B it won't work unless your package is using SQL Authentication.

    see https://learn.microsoft.com/en-us/sql/integration-services/catalog/ssis-catalog?view=sql-server-ver16 near the bottom of page

    you may need it setup though if you have a setup like this.

    SERVER A - SSIS Server

    executes package - reaches to SERVER B

    executes Stored Proc on SERVER B that uses a linked server to SERVER C

    for the above setup the kerberos setup will be required and it will, with few exceptions, work.

  • OK

    I moved over to JOBs instead now.

    I created credentials (me) and a Proxy 'Win_Auth_Proxy' that uses me credentials

    The loads that only uses Win Auth (thatis, from STG to DW or DW to DW) work fine with that proxy

    Eh...hold it...pretty strange that the same STG DB win auth project connection works with most of the packages but then with two

    Connectiuon error

    Are the packages somehow corrupted because they also give some error when opened in VS 22 but yet they run OK...?

  • That looks like the sort of error you would get if you copied a package containing a project connection from one project to another.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • No that is not the case...I have copied a package or package objects within one project though but that should be a normal procedure...

    I might even recreate those packages but it is a bit painful since I need to first replace my project from the VStudio 22 backup since I can not run them after TargetServerVersion is set to Sql 2019

    ==>

    Exception deserializing the package "Value does not fall within the expected range.".

    Argh

Viewing 10 posts - 16 through 24 (of 24 total)

You must be logged in to reply to this topic. Login to reply