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

Latin1_General_CI_AI vs SQL_Latin1_General_CP1_CI_AS

The SQL_Latin1_General_CP1_CI_AS collation is a SQL collation and the rules around sorting data for unicode…

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 Cloning Database to a Different DB Name

# User defined variables $sourceSqlServer='DEV-SQL01' $sourceDatabaseName='TEST_MSCRM' $sourceSaCredential=$(get-credential) $destinationSqlServer='DEV-SQL01' $destinationDatabaseName='Test_MSCRM' $destinationSaCredential=$(get-credential) function copyDatabase{ param( $sourceSqlServer, $sourceDatabaseName,…