zoukankan      html  css  js  c++  java
  • ETL 脚本任务

    Public Sub Main()
            '
            ' Add your code here
            '
            Dim sbWA As New StringBuilder
            Dim i As Integer
            Dim arWA As New Collections.ArrayList
            Dim bEOF As Boolean
            For Each r As DataRow In CType(Dts.Variables("dsWOACNBR").Value, DataSet).Tables(0).Rows
                i = i + 1
                bEOF = True
                sbWA.Append("','")
                sbWA.Append(r.Item(0).ToString + r.Item(1).ToString)

                If i Mod 100 = 0 Then
                    bEOF = False
                    Dim strWA As String = sbWA.ToString
                    strWA = strWA.Substring(3) '...移除"','"字符,后面计算长度时需补上

                    arWA.Add(strWA)

                    sbWA.Remove(0, strWA.Length + 3) '...清空时需补上"','"已移除字符的计数

                End If
            Next

            If bEOF = True Then
                Dim strWA As String = sbWA.ToString
                strWA = strWA.Substring(3) '...移除"','"字符,后面计算长度时需补上

                arWA.Add(strWA)

            End If


            Dts.Variables("arWOACNBR").Value = arWA

            Dts.TaskResult = Dts.Results.Success
        End Sub

  • 相关阅读:
    更新glibc,删除libc库后,命令行都不能使用了
    进程和线程、协程的区别
    PMP项目管理--资源管理
    清除缓存 echo 1/2/3 > /proc/sys/vm/drop_caches
    gdb malloc方法
    随时更新---能力集
    输出gdb调试信息到文件中
    主动生成core文件 gcore +pid
    PMP项目管理--风险管理
    linux后台程序
  • 原文地址:https://www.cnblogs.com/lbnnbs/p/4781556.html
Copyright © 2011-2022 走看看