Unzip .tar.gz files in SSIS

谁都会走 提交于 2019-11-28 11:34:44

问题


I have a .tar.gz file. Now i need to unpack these files with SSIS package. Previously did unzip and delete for .zip files with the help of For each container and script task. Not sure how to do it for .tar.gz files. Any help?


回答1:


You can use an execute process task to achieve this (or using process from Script task), but you have to install a ZIP application like 7Zip or Winzip or else. And use command line to Zip or Unzip archives.

Follow one of these links for more details:

  • Zip a folder using SSIS
  • 7Zip command line examples
  • What command line parameters does WinZip support?


来源:https://stackoverflow.com/questions/48309762/unzip-tar-gz-files-in-ssis

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!