views:

431

answers:

1

Error: ('IM002', '[IM002] [unixODBC][Driver Manager]Data source name not found, and no default driver specified (0) (SQLDriverConnectW)')

I'm migrating from developing on a windows development machine to Linux machine in production and I'm having issues with the freetds driver. As far as I can tell that error message means it can't find the driver. I can connect via the cli via sqsh and tsql. I've setup my settings.py as such.

   'bc2db': {
        'ENGINE': 'sql_server.pyodbc',
        'NAME': 'DataTEST',
        'USER': 'appuser',
        'PASSWORD': 'PASS',
        'HOST': 'bc2.domain.com',
        'options': {
            'driver': 'FreeTDS',
            }
    },

Does anyone have any SQL Server experience with django? do I have to use a dns? (how would I format that?)

A: 

I needed to use one of the supported configurations as supported by the freetds driver. I ended up putting the host information in the odbc.ini. The linked documentation has good examples over a few pages.

wizard
I downloaded their product, and when I ran:isql -v mydsn [USERNAME] [PASSWORD]I got an error:[unixODBC][Easysoft][SQL Server Driver][SQL Server]General error: General error: Failed to initialise licensing - No valid licenses for this product found,
PythonUser