Skip to content

Instantly share code, notes, and snippets.

@matt40k
Created December 22, 2015 00:04
Show Gist options
  • Save matt40k/64d54372684e046b3a0d to your computer and use it in GitHub Desktop.
Save matt40k/64d54372684e046b3a0d to your computer and use it in GitHub Desktop.
Create SSIS project parameters using BIMl - by Cathrine Wilhelmsen
<Biml xmlns="http://schemas.varigence.com/biml.xsd">
<Projects>
<PackageProject Name="ProjectParameters">
<Annotations>
<Annotation Tag="ProjectParametersPath">C:\SSIS\TestProject\Project.params</Annotation>
</Annotations>
<Parameters>
<Parameter Name="ParameterBoolean" DataType="Boolean" IsRequired="false" IsSensitive="false">0</Parameter>
<Parameter Name="ParameterDateTime" DataType="DateTime" IsRequired="false" IsSensitive="false">2015-11-04</Parameter>
<Parameter Name="ParameterDecimal" DataType="Decimal" IsRequired="false" IsSensitive="false">3.14</Parameter>
<Parameter Name="ParameterInt32" DataType="Int32" IsRequired="true" IsSensitive="false">1337</Parameter>
<Parameter Name="ParameterString" DataType="String" IsRequired="false" IsSensitive="true">password</Parameter>
</Parameters>
</PackageProject>
</Projects>
</Biml>
@matt40k
Copy link
Author

matt40k commented Dec 22, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment