denisenkom

Results 51 comments of denisenkom

Can you provide full command with parameters? e.g. `python manage.py inspectdb`

You should change: 'ENGINE': 'django_pyodbc' to 'ENGINE': 'sqlserver'

Are there any cross platform shells available for MSSQL?

Did you mean select_for_update(skip_locked=True) ?

That is not reliable, it is possible for a table or even a column to have a collation different from the database collation.

You can, but I think this would be a performance hit if you do it on every request. One way you can do it is by adding an extension function...

@shogo82148 welcome! You can start by reviewing PRs, or submitting PRs for open issues.

MSSQL does support Kerberos authentication, you should look into SPNEGO authentication: https://msdn.microsoft.com/en-us/library/dd340959.aspx

You would need to send Login7 request and then do SPNEGO handshake. To enable SPNEGO you should set SSPI fields in Login7 structure (search for SSPI on this page: https://msdn.microsoft.com/en-us/library/dd304019.aspx)....

Hi, yes, I will let you know when I would have something ready for testing.