SQL Server 2008 or 2005 how to use EXCEL data source on 64-bit machines?

Abstract: SQL Server 2008 or 2005 how to use EXCEL data source on 64-bit machines?


If the OS is 64-bit SQL SERVER is installed when 64BIT but the error will occur if you perform an import EXCEL data from the following sources.

Connection Manager "Excel Connection Manager": SSIS Error Code DTS_E_OLEDB_EXCEL_NOT_SUPPORTED: 64-bit version of SSIS does not support Excel connection Manager, because there is no OLE DB provider is available.


SSIS Excel 64bit-0

English:
SQL KB is: http: //support.microsoft.com/kb/934653/zh-tw

Error 0xc0202009: {F1B3B35C-FAE3-48F6-A169-4E4D8D99F9B6}: An OLE DB error has occurred. Error code: 0×80004005.
An OLE DB record is available. Source: “Microsoft JET Database Engine” Hresult: 0×80004005 Description: “Unspecified error”.

0xc020801c Error: the Data Flow Task: at The Call to AcquireConnection Method, at The Connection Manager "DestinationConnectionExcel" with failed The error code 0xC0202009 .

The reason is because the JET OLEDB Driver for Excel 64-bit version and therefore no need to enable 32-bit mode .

Solutions are as follows:

 
1. Among the BI-Studio's integration Services project - Run64BitRuntime into false in the project properties
 
SSIS Excel 64bit-1
 
2. To set the execution JOB command files in the election 32bit enforcement procedures among JOB
: C: Program Files (x86) in the Microsoft SQL Server100DTSBinn
SSIS Excel 64bit-2
 
3 set the following commands in the command line
/ DTS "MSDBImport" / SERVER / MAXCONCURRENT "-1" / CHECKPOINTING OFF / REPORTING V "."
SSIS Excel 64bit-3
complete command:
C: Program Files (x86) Microsoft SQL Server100DTSBinndtexec.exe / DTS "MSDBImport" / SERVER "." / MAXCONCURRENT "-1" / CHECKPOINTING OFF / REPORTING V
 





Please Yong Yue Si powder to participate in Facebook MSBI group: http://www.facebook.com/#!/group.php?gid=303757165010

Original: Big Box  SQL Server 2008 or 2005 how to use EXCEL data source on 64-bit machines?


Guess you like

Origin www.cnblogs.com/chinatrump/p/11490980.html