Excel no SQL Server com o Microsoft.ACE.OLEDB.12.0

Estou recebendo o seguinte erro ao tentar abrir um arquivo do Excel no SQL Server 2008 r2 de 64 bits:

Msg 7399, Level 16, State 1, Line 1
The OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)" 
reported an error. The provider did not give any information about the error.
Msg 7303, Level 16, State 1, Line 1
Cannot initialize the data source object of OLE DB provider 
"Microsoft.ACE.OLEDB.12.0" for linked server "(null)".

Eu estou usando a seguinte consulta:

SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0', 'Excel 12.0; 
HDR=NO; IMEX=1; Database=\\filepath\filename.xlsx', 'SELECT * FROM [Sheet1$]')

O engraçado é que o DBA pode executá-lo sem problemas. Eu passei e executei as seguintes consultas:

sp_configure 'Show Advanced Options', 1;
RECONFIGURE;
GO
sp_configure 'Ad Hoc Distributed Queries', 1;
RECONFIGURE;
GO

EXEC sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0', N'AllowInProcess', 1
GO
EXEC sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0', N'DynamicParameters', 1
GO

A conta que é executada parece ter acesso a sa. O que poderia estar causando esse problema?

questionAnswers(4)

yourAnswerToTheQuestion