how can i generate ssis packages from biml using commandline and deploy ssis on server

馋奶兔 提交于 2019-12-10 16:08:36

问题


I worked on creating biml. generate ssis packages from that. build SSIS project and then deploy ispac file on server.

but can these all manual steps be automated? can i generate ssis from biml using commandline? what are the commands and what are the prerequisites to be installed on machine for this other than bidshelper

after that can i build my integration services project having ssis generated from biml and deploy it on server using commandline? again what are the pre-req. required to be installed for this?


回答1:


Automating the emission of SSIS packages from Biml is going to require access to the core bimlengine. Access to the biml engine comes via a licensed installation of Mist/soon-to-be-rebranded-BimlStudio

Conversion of a dtproj to ispac is going to require you to create and install an MSBuild extension which I cover in my talk, DevOps for SSIS The msbuild parameters and the process is outlined under Building SSIS 2012 using MSBuild – A Journey to DB deployment automation




回答2:


below command after installing Mist 4.0 worked to generate ispac file from biml

bimlc.exe -s "C:\\temp\\Project.biml" -s "C:\\temp\\DwToDw.biml" -t "C:\\temp\\ispacfile\\" -v=2014 --ssisDeploymentModel=Project


来源:https://stackoverflow.com/questions/35600033/how-can-i-generate-ssis-packages-from-biml-using-commandline-and-deploy-ssis-on

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