SSIS:执行进程任务:如何在没有安装任何软件的情况下解压缩服务器中的文件?
SSIS: Execute Process Task: How to unzip files in server without any softwares installed?
我需要设计一个 SSIS 包来解压服务器文件夹中的文件。
问题是服务器上没有安装Winzip或Winrar等软件
我们的 IT 部门没有在服务器上安装软件,所以我正在想办法安装。
.NET 有 System.IO.Compression.ZipFile class to perform zip/unzip operations for the zip archive format. You could use a script task 使用 ZipFile 解压缩文件。
我需要设计一个 SSIS 包来解压服务器文件夹中的文件。
问题是服务器上没有安装Winzip或Winrar等软件
我们的 IT 部门没有在服务器上安装软件,所以我正在想办法安装。
.NET 有 System.IO.Compression.ZipFile class to perform zip/unzip operations for the zip archive format. You could use a script task 使用 ZipFile 解压缩文件。