skip to Main Content

Ubuntu – ODBC driver not working – Azure databricks unity catalog enabled

I am trying to connect to sql server from databricks using pyodbc facing below issue import pyodbc sql_server_url='server_url' sqlDB='db-dev' SQL_DB_USER='user' SQL_DB_PASS='123' conn = pyodbc.connect('DRIVER={ODBC Driver 17 for SQL Server};SERVER=' + sql_server_url +';DATABASE=' + sqlDB + ';UID='+SQL_DB_USER+';PWD='+SQL_DB_PASS) Error: ('01000', "[01000] [unixODBC][Driver…

VIEW QUESTION

Azure – Auto create table in ADF copy activity for ODBC Sink Dataset (Not Working)

I am trying to perform copy activity between ADLS dataset and ODBC sync dataset (POSTGRESQL) But, table is not creating automatically in target dataset and error coming like Failure happened on 'Sink' side. ErrorCode=UserErrorOdbcOperationFailed,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=ERROR [42P01] ERROR: relation "semantic_dev.dim_storage_location" does not…

VIEW QUESTION
Back To Top
Search