Skip to content

Instantly share code, notes, and snippets.

View billinkc's full-sized avatar
💭
Presenting at #SQLSatOC

Bill Fellows billinkc

💭
Presenting at #SQLSatOC
  • Sterling Data Consulting
  • Kansas City, MO
View GitHub Profile
@billinkc
billinkc / ProjectParameter.xml
Last active December 18, 2015 14:49
A biml script that should create a project level parameter named FolderBase, a package named POC which has a package level parameter, subfolder and a Variable that puts it all together.
<Biml xmlns="http://schemas.varigence.com/biml.xsd">
<PackageProjects>
<PackageProject Name="ProjectParameterTest" ProtectionLevel="DontSaveSensitive">
<Parameters>
<!-- I think this is the project parameter-->
<Parameter DataType="String" Name="FolderBase">C:\ssisdata</Parameter>
</Parameters>
<Packages>
<Package IsEntryPoint="true" PackageName="POC"/>
</Packages>