Hi,I need to update a pivot table that resides on a Microsoft Excel worksheet.I created a stored procedure dbo.USP_DMO_EXCEL_Pivot_RefreshTable(link: [url]http://www.ugiss.org/Content/Article/Aggiornare-una-tabella-pivot-di-Microsoft-Excel.aspx[/url]) that uses OLE Automation (sp_OA*) to refresh, every night (without open the Excel file), the pivot table data in Microsoft Excel worksheet.The stored procedure works well in this enviroment:- OS Windows Server 2003- Office 2003- SQL Server 2008The stored procedure does not work with:- OS Windows Server 2008 64-bit or Windows 7 64-bit- Office 2007- SQL Server 2008 64-bitThe pivot table connecting to SQL Server with an ODBC connection (32 bit).The Excel file will open correctly, bit I get an error during execution method "RefreshTable" in the following line of code:[code="other"]Exec sp_OAMethod @objWorkSheet PivotTables('Pivot_Name').RefreshTable[/code]The execution of stored procedures will not be completed, the only way (to stop it) is to interrupt forcefully the task "EXEC.EXE *32".When I forced to close the task, in SSMS I get the following error:-2146827284 Unable to find Microsoft Office Excel PivotTables property for the class Worksheet. C:\Program Files (x86)\Microsoft Office\Office12\1040\0 XLMAIN11.CHM Message 50000, Level 16, State 1, Server <name> USP_DMO_Excel_Pivot_RefreshTable procedure, line 369 Whilst Error: Return object workbooks, Could not find property PivotTables for Class Worksheet I also installed the 2007 Office System Driver: Data Connectivity Components ([url]http://www.microsoft.com/downloads/details.aspx?familyid=7554f536-8c28-4598-9b72-ef94e038c891&displaylang=en[/url]) but without improvement.Any suggestions? Thanks a lot!
↧