Creating Database Authentication for SQL Server 2008 Express

To have cross-domain access to my test instance of SQL Server, I need a login with a database user, not a Windows user.

enter image description here

As soon as this works, I could start doing it from my * NIX environment, but basically Windows will not allow me to access the database in this way and it will generate a validation error 28000 / SQL Server Error 18456.

I already did

ALTER LOGIN [administrator] WITH DEFAULT_DATABASE=[...]
ALTER LOGIN [administrator] WITH PASSWORD=...
+4
source share
1 answer

Source: https://habr.com/ru/post/1648965/


All Articles