Создайте компонент сценария как источник программно

1

Я работаю над программным созданием пакета с задачей потока данных, содержащей компонент скрипта в качестве источника. Я смог создать пакет, задачу потока данных и добавить компонент скрипта. Тем не менее, компонент Script по умолчанию имеет значение Transform.

Кто-нибудь знает, как заставить это быть Сусом?

Вот мой класс с единственным методом, над которым я работаю:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DynamicPackageCreator.Models;
using Microsoft.SqlServer.Dts.Runtime;
using System.IO;
using Microsoft.SqlServer.Dts.Pipeline.Wrapper;
// Alias to prevent ambiguity
using dtsColumnDataType = Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType;

namespace DynamicPackageCreator
{
    public class DtsClient
    {
        public void CreatePackageWithDataFlowAndScriptSource(string filePath, string dataFlowName, string sourceName, List<OutputDefinition> outputDefinitions)
        {
            // Create the Package
            Package pkg = new Package();
            pkg.Name = Path.GetFileNameWithoutExtension(filePath);

            // Create the Dataflow task
            Executable e = pkg.Executables.Add("STOCK:PipelineTask");
            TaskHost thMainPipe = e as TaskHost;
            thMainPipe.Name = dataFlowName;
            MainPipe dataFlowTask = thMainPipe.InnerObject as MainPipe;

            // Create Source Component
            IDTSComponentMetaData100 sourceComponent = dataFlowTask.ComponentMetaDataCollection.New();
            sourceComponent.Name = sourceName;
            sourceComponent.ComponentClassID = SsisComponentType.ScriptComponent.GetComponentClassId();

            // Get the design time srcDesignTime of the component
            CManagedComponentWrapper srcDesignTime = sourceComponent.Instantiate();

            // Initialize the component
            srcDesignTime.ProvideComponentProperties();

            int lastOutputId = 0;
            // Add metadata
            foreach (var outputDefinition in outputDefinitions)
            {
                var output = srcDesignTime.InsertOutput(DTSInsertPlacement.IP_AFTER, lastOutputId);
                output.Name = outputDefinition.OutputName;
                lastOutputId = output.ID;

                var outputColumnCollection = output.OutputColumnCollection;
                foreach (var outputColumnDefinition in outputDefinition.OutputColumnDefinitions)
                {
                    var outputColumn = outputColumnCollection.New();
                    outputColumn.Name = outputColumnDefinition.ColumnName;
                    outputColumn.SetDataTypeProperties(dtsColumnDataType.DT_WSTR, outputColumnDefinition.ColumnSize, 0, 0, 0);
                }
            }

            // Reinitialise the metadata
            srcDesignTime.ReinitializeMetaData();

            // Save the package
            Application app = new Application();
            app.SaveToXml(filePath, pkg, null);
        }
    }
}

Класс OutputDefinition - это специальный класс, который я создал для хранения определений, используемых при создании выходов.

Теги:
ssis

1 ответ

1
Лучший ответ

Таким образом, решение этой проблемы - удалить все входы от компонента. По умолчанию компонент имеет "Вход 0" и "Выход 0", который коррелирует с типом компонента сценария Transform. Тип источника не будет иметь никаких Входов, и у адресата не будет выходов.

Чтобы удалить входы и выходы, добавьте:

sourceComponent.OutputCollection.RemoveAll();
sourceComponent.InputCollection.RemoveAll();

Вот:

// ...
// Initialize the component
srcDesignTime.ProvideComponentProperties();

// Remove default inputs and outputs
sourceComponent.OutputCollection.RemoveAll();
sourceComponent.InputCollection.RemoveAll();

int lastOutputId = 0;
// ...

Ещё вопросы

Сообщество Overcoder
Наверх
Меню