'a,c,b,z,f' 螳 貉殊 豺螻...
split伎 覓語 覦一伎 j
array.sort(str)襯 伎伎 ..
れ split伎 襦 貉殊 k讌.. 貉殊 k讌.. ..
' Microsoft SQL Server Integration Services user script component
' This is your new script component in Microsoft Visual Basic .NET
' ScriptMain is the entrypoint class for script components
Imports System
Imports System.Data
Imports System.Math
Imports Microsoft.SqlServer.Dts.Pipeline.Wrapper
Imports Microsoft.SqlServer.Dts.Runtime.Wrapper
Public Class ScriptMain
Inherits UserComponent
Public Overrides Sub 0_ProcessInputRow(ByVal Row As 0Buffer)
'
' Add your code here
'
Dim str(5) As String
str = Row.col.Split(CChar(","))
Array.Sort(str)
Row.sort = str(0) & "," & str(1) & "," & str(2) & "," & str(3) & "," & str(4)
End Sub
End Class