I have an Outlook 365 .accdb that i link tables to an old 2008 R2 Windows 2008 SQL machine using Trusted authentication via our Active Directory
Connection string was DRIVER=SQL Server;SERVER=10.10.10.50;Trusted_Connection=Yes;APP=Microsoft Office;Network=DBMSSOCN
We are in the process of migrating that server to a 2016 Windows/2016 SQL box.
In the past my development machine was NOT joined to the domain, and I just insured that my password and user name was the same as my active directory account and everything worked fine for decades+
Now the connection string is of course its all on the same network
Connection string was DRIVER=SQL Server;SERVER=10.10.10.65;Trusted_Connection=Yes;APP=Microsoft Office;Network=DBMSSOCN
Now that I'm moving to 2016 SQL from 2008 i get the following error:
Connection failed
SQL State: 28000
Microsoft ODBC SQL SERVER DRIVER LOGIN FAILED
The Login is from an untrusted domain and cannot be used with integrted authetnication.
So this is due to my dev machine not being on the domain via active directory HOWEVER my user/account pass are the same as my active directory account. I dont want to put my dev machine on the domain what am i missing? It had always fallen over to KERBEROS auth in the past when the domain wasn't available.
Other users on the domain can use it fine and IF I login first authenticate the domain by running in an admin shell:
runas /user:domain\myusername/netonly "C:\Program Files (x86)\Microsoft Office\root\Office16\MSACCESS.EXE"
then open the DBase im good to go -- but i hate that, I just want it to work as it did by defaulting back to Kerberos.
Can anyone point me in the right direction?
Connection string was DRIVER=SQL Server;SERVER=10.10.10.50;Trusted_Connection=Yes;APP=Microsoft Office;Network=DBMSSOCN
We are in the process of migrating that server to a 2016 Windows/2016 SQL box.
In the past my development machine was NOT joined to the domain, and I just insured that my password and user name was the same as my active directory account and everything worked fine for decades+
Now the connection string is of course its all on the same network
Connection string was DRIVER=SQL Server;SERVER=10.10.10.65;Trusted_Connection=Yes;APP=Microsoft Office;Network=DBMSSOCN
Now that I'm moving to 2016 SQL from 2008 i get the following error:
Connection failed
SQL State: 28000
Microsoft ODBC SQL SERVER DRIVER LOGIN FAILED
The Login is from an untrusted domain and cannot be used with integrted authetnication.
So this is due to my dev machine not being on the domain via active directory HOWEVER my user/account pass are the same as my active directory account. I dont want to put my dev machine on the domain what am i missing? It had always fallen over to KERBEROS auth in the past when the domain wasn't available.
Other users on the domain can use it fine and IF I login first authenticate the domain by running in an admin shell:
runas /user:domain\myusername/netonly "C:\Program Files (x86)\Microsoft Office\root\Office16\MSACCESS.EXE"
then open the DBase im good to go -- but i hate that, I just want it to work as it did by defaulting back to Kerberos.
Can anyone point me in the right direction?