Excel en SQL Server con Microsoft.ACE.OLEDB.12.0

Recibo el siguiente error al intentar abrir un archivo de Excel en 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)".

Estoy usando la siguiente consulta:

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

Lo curioso es que el DBA puede ejecutarlo sin problema. He pasado y ejecutado las siguientes 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

La cuenta que lo ejecuta parece que tiene un acceso. ¿Qué podría estar causando este problema?

Respuestas a la pregunta(4)

Su respuesta a la pregunta