ssis - Balanced Data Distributor in BIML -


is there support balanced data distributor component in biml? documentation has this: https://varigence.com/documentation/language/element/astbalanceddatadistributornode

but when use element, following error:

error 0 flowframework, version=5.0.60425.0, culture=neutral, publickeytoken=015f370a62f9a1a3. no translator found component data distributor of type astbalanceddatadistributornode in dataflow ...

my biml looks this:

<balanceddatadistributor name="data distributor">     <inputpath outputpathname="insert row count.output"/>     <outputpaths>         <outputpath name="dd1" />         <outputpath name="dd2" />         <outputpath name="dd3" />         <outputpath name="dd4" />         <outputpath name="dd5" />     </outputpaths> </balanceddatadistributor> 

i found example, seems treat custom component. perhaps before built ssis: http://www.bimlscript.com/snippet/details/82 not work in sql 2016 - biml generate it, has wrong icon on task , can't find component when try execute it.

i got work using snippet template: http://www.bimlscript.com/snippet/details/82

to make work version of ssdt, had update componentclassid noted below (487806fb-4c3b-4dcd-b91d-62caae06d460 c925c2dd-d414-4f4d-942e-f4f3e4871666). former may sql 2014

<customcomponent name="data distributor" componentclassid="c925c2dd-d414-4f4d-942e-f4f3e4871666" componenttypename="balanced data distributor" contactinfo="balanced data distributor;microsoft corporation; microsoft sqlserver; (c) microsoft corporation; rights reserved; http://www.microsoft.com/sql/support;0">     <inputpaths>         <inputpath outputpathname="insert row count.output" identifier="data distributor input"/>     </inputpaths>     <outputpaths>         <outputpath name="dd1" errorortruncationoperation="" synchronousinput="data distributor input" exclusiongroup="1"/>         <outputpath name="dd2" errorortruncationoperation="" synchronousinput="data distributor input" exclusiongroup="1"/>         <outputpath name="dd3" errorortruncationoperation="" synchronousinput="data distributor input" exclusiongroup="1"/>         <outputpath name="dd4" errorortruncationoperation="" synchronousinput="data distributor input" exclusiongroup="1"/>         <outputpath name="dd5" errorortruncationoperation="" synchronousinput="data distributor input" exclusiongroup="1"/>     </outputpaths> </customcomponent> 

Comments

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -