Posted On September 8, 2021

ODBC Driver 32-bit & 64-bit

kimconnect 0 comments
blog.KimConnect.com >> Database >> ODBC Driver 32-bit & 64-bit
The 32-bit version:

Run: odbcad32.exe > check the list of installed 32-bit drivers as illustrated below (sample only)

The 64-bit version:

Run: odbcad64.exe > click on Add > select an appropriate DB driver (example below)

click Finish > Input additional connection info > OK > close the ODBC Data Source Administrator when done

 

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Get SQL Job History

$computername='sql01' function getSqlJobHistory($sqlServerName){ try{ if(!(get-module SqlServer)){ Install-Module -Name SqlServer } Import-Module -Name SqlServer $sqlServerInstance=Get-SqlInstance -ServerInstance…

Microsoft SQL: Login failed for user ‘sa’. (.Net SqlClient Data Provider)

Error: ===================================Cannot connect to SQL-SERVER===================================Login failed for user 'sa'. (.Net SqlClient Data Provider) Resolution: 1.…

MySQL: List Database Size

SELECT table_schema "kimconnect",        ROUND(SUM(data_length + index_length) / 1024 / 1024, 1) "DB Size in…