Where can I check at first to resolve the following error message? I would like to connect to SQL Server on Docker, from a Mac using Jupyter notebook.
code
import sqlalchemy
import pyodbc
import sqlalchemy as sa
engine = sqlalchemy.create_engine("mssql+pyodbc://SA:<12345qwert>@MSSQL_DSN")
connection = engine.connect()
error message
InterfaceError: (pyodbc.InterfaceError) ('IM002', '[IM002] [unixODBC][Driver Manager]Data source name not found, and no default driver specified (0) (SQLDriverConnect)') (Background on this error at: http://sqlalche.me/e/rvf5)