Skip to Main Content

ODP.NET

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Oracle Provider for OLE DB installation

user455466Jul 31 2024

Hi,

I have installed the Oracle Instant Client 11g for Microsoft Windows 32-bit, version 11.2.0.4.0. Subsequently, I installed the 32-bit ODAC 11.2 Release 6, version 11.2.0.4.0 (in the attached installation log it is shown that the Oracle Provider for OLE DB is installed), however it is not detected with this Powershell script:

PS I:\cliente11_32\bin> foreach ($provider in [System.Data.OleDb.OleDbEnumerator]::GetRootEnumerator())
>> {
>>     if ($provider.GetValue(0) -like "*racle*")
>>     {
>>         $v = New-Object PSObject
>>         Add-Member -in $v NoteProperty "Provider Name" $provider.GetValue(0)
>>         Add-Member -in $v NoteProperty "Description" $provider.GetValue(2)
>>         $v
>>     }
>> }
PS I:\cliente11_32\bin>

Any hint why “Oracle Provider for OLE DB” is not installed?

Thanks in advace.

Regards, Jose Luis.

install.log

Comments
Post Details
Added on Jul 31 2024
1 comment
558 views