Hi
I’m trying to use the Azure Blob Upload Task to move a file from my C drive to my Azure Storage account but on running the SSIS project (or just the component by itself) I get the error
: Value does not fall within the expected range. (Microsoft.SqlServer.ManagedDTS)
I know the storage account is fine because I can use Azure Storage Explorer and save files without issue.
The SSIS connection is also good.
Dev Environment: VS 2015, SSDT(latest)
Thanks
Mike
Here is the simple 1 component code dump
<?xml version="1.0"?>
<DTS:Executable xmlns:DTS="www.microsoft.com/SqlServer/Dts"
DTS:refId="Package"
DTS:CreationDate="7/29/2016 2:11:02 PM"
DTS:CreationName="Microsoft.Package"
DTS:CreatorComputerName="xxxxxxxxxxxx"
DTS:CreatorName="xxxxxxxxxxxx"
DTS:DTSID="{89ECFBD1-797A-4EBC-8986-5895DBFFED83}"
DTS:ExecutableType="Microsoft.Package"
DTS:LastModifiedProductVersion="13.0.1601.5"
DTS:LocaleID="1033"
DTS:ObjectName="Package"
DTS:PackageType="2"
DTS:VersionBuild="13"
DTS:VersionGUID="{1698E589-21E6-4AD6-A5A9-7105925C75F4}">
<DTS:Property
DTS:Name="PackageFormatVersion">8</DTS:Property>
<DTS:Variables />
<DTS:Executables>
<DTS:Executable
DTS:refId="Package\Azure Blob Upload Task"
DTS:CreationName="CopyToBlobTask"
DTS:Description="Azure Blob Upload Task"
DTS:DTSID="{02652254-7C2E-496F-84D4-D4AEA71D590F}"
DTS:ExecutableType="CopyToBlobTask"
DTS:LocaleID="-1"
DTS:ObjectName="Azure Blob Upload Task"
DTS:TaskContact="Azure Blob Upload Task; (C) Microsoft Corporation; All Rights Reserved"
DTS:ThreadHint="0">
<DTS:Variables />
<DTS:ObjectData>
<CopyToBlobTask
ConnectionId="{C2D09777-093F-43D7-89D6-9DA54A4176FE}"
BlobContainer="mssqltest"
LocalDirectory="C:\Download\Blobtest\up"
FileNameFilter="*"
TimeRangeFrom="01-Jan-1900 12:00:00 AM +10:00"
TimeRangeTo="31-Dec-2200 12:00:00 AM +10:00" />
</DTS:ObjectData>
</DTS:Executable>
</DTS:Executables>
<DTS:DesignTimeProperties><![CDATA[<?xml version="1.0"?>
<!--This CDATA section contains the layout information of the package. The section includes information such as (x,y) coordinates, width, and height.-->
<!--If you manually edit this section and make a mistake, you can delete it. -->
<!--The package will still be able to load normally but the previous layout information will be lost and the designer will automatically re-arrange the elements on the design surface.-->
<Objects
Version="8">
<!--Each node below will contain properties that do not affect runtime behavior.-->
<Package
design-time-name="Package">
<LayoutInfo>
<GraphLayout
Capacity="4" xmlns="clr-namespace:Microsoft.SqlServer.IntegrationServices.Designer.Model.Serialization;assembly=Microsoft.SqlServer.IntegrationServices.Graph">
<NodeLayout
Size="190,42"
Id="Package\Azure Blob Upload Task"
TopLeft="69.5,86.5" />
</GraphLayout>
</LayoutInfo>
</Package>
</Objects>]]></DTS:DesignTimeProperties>
</DTS:Executable>