Empty Excel File permissions issue: SSIS Excel Destination buffers large record sets through C:\Users\Default

后端 未结 2 1099
花落未央
花落未央 2020-12-06 23:53

An SSIS package is invoked via DTEXEC.EXE from a web application. The package uses a File System Task to make a copy of an Excel template file to be used as the Excel desti

2条回答
  •  萌比男神i
    2020-12-07 00:41

    Using Process Monitor reveals that ISServerExec.exe is trying to save a buffer to C:\Users\Default\AppData\Local\Microsoft\Windows\Temporary Internet Files. When the limited user account is given access and permissions under C:\Users\Default, everything works.

    This explains why an interactively logged-in user or a local admin account was able to write Data Flow records to the Excel file, but a regular batch login was not able to do so. This is an undesirable behavior of the SSIS Excel Destination.

提交回复
热议问题