Proper Case function for DTS Transformation
This VBS function will convert a string into Proper Case (i.e. This Is Proper Case) during the execution of the DTS package. Wrap the DTSSource function with the PropCase function and the result is a Proper Case transformationexampleFunction Main() DTSDestination("Field1") = PropCase(DTSSource("Col019")) Main = DTSTransformStat_OKEnd Function
2003-08-05
208 reads