#title OpenRowSet * 64bit 머신에서 'Microsoft.ACE.OLEDB.12.0' 공급자는 로컬 컴퓨터에 등록할 수 없습니다.' 메시지.. [http://www.microsoft.com/downloads/ko-kr/details.aspx?displaylang=ko&FamilyID=c06b8369-60dd-4b64-a44b-84b371ede16d 64bit공급자를 다운로드]하여 /passive 옵션을 주고 설치(cmd에서)한다. (설치 후 재부팅하라고 한다.) passive 옵션은 데이터 익스포트/임포트가 잘 안될때 해봐라. {{{ sp_configure 'show advanced options',1 reconfigure go sp_configure 'Ad Hoc Distributed Queries',1 reconfigure go sp_configure 'show advanced options',0 reconfigure go EXEC master.dbo.sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.16.0', N'AllowInProcess', 1 GO EXEC master.dbo.sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.16.0', N'DynamicParameters', 1 GO }}} {{{ select * from openrowset('Microsoft.ACE.OLEDB.16.0', 'Excel 12.0;Database=c:\code\test.xlsx', 'select * from [Sheet1$A2:ZZ]') }}}