In my Development machine I have MS excel is installed. I'm able to export data into excel from DB through SSIS (visual studio). but when i deployed it to QA environment where MS excel is not installed, the package is failing with the below errors. Please help me if it really required to have MS excel software installed on the target machine while exporting data from database through SSIS to excel.
this is the query i'm using create excel and tabs in excel sheet. Creation of excel file and new tab "inserted" in it.
CREATE TABLE Inserted(
[fileid] integer
,[filename] string
,[rxcui] string
,[tty] string
,[rxnorm_description] string
,[related_brand_name] string
,[related_scdc] string
,[related_df] string
,[related_ndc] string
,[create_date] date
,[create_user] string
,[status] string
,[plan_year] string
,[update_date] date
,[update_user]string
)
Connection manager used for the above script:
@[User::var_excel_destination] +"\\"+"FRF_File_Import_Detail_"+ Right("0" +(DT_STR,4,1252) datepart("yyyy", getdate()),4)
+ Right("0" +(DT_STR,2,1252) datepart("mm", getdate()) ,2)
+ Right("0" +(DT_STR,2,1252) datepart("dd", getdate()),2)+Right("0" + (DT_STR,2,1252) DatePart("hh",getdate()),2)
+ Right("0" + (DT_STR,2,1252) DatePart("mi",getdate()),2)
+ Right("0" + (DT_STR,4,1252) DatePart("ss",getdate()),2) +".xls"
It is failing at this step with the below error:
Error Description :Failed to acquire connection "ECM FRF File Import Processor". Connection may not be configured correctly or you may not have the right permissions on this connection.
Please help.