Advertisement

12.04.2007 at 07:40AM PST, ID: 23000396
[x]
Attachment Details

DTS Conversion Problem w/ActiveX Script

Asked by dbbishop in MS SQL DTS

Tags: script, dts, format, null, numbers

I have the following code. The problem is that the source cell (BTN) can be either empty (NULL), be a number formatted as text, or be stored as a number. When I run the transformation, it sees any row that has a number, stored as a number, as NULL and will not import it. I have tried using CStr() around the source value, but that does not seem to help. Any ideas?Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
Function Main()
	If IsNull(DTSSource("BTN")) Then
	    Main = DTSTransformStat_SkipRow
	    Exit Function
	ElseIf IsNumeric(DTSSource("BTN")) Then
	    DTSDestination("BTN") = CDbl(DTSSource("BTN"))
	End If
	DTSDestination("RequestID") = DTSSource("RqstID")
	Main = DTSTransformStat_OK
End Function
[+][-]12.04.2007 at 10:06AM PST, ID: 20404861

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12.04.2007 at 12:30PM PST, ID: 20406107

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12.04.2007 at 12:31PM PST, ID: 20406113

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12.04.2007 at 05:50PM PST, ID: 20408370

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: MS SQL DTS
Tags: script, dts, format, null, numbers
Sign Up Now!
Solution Provided By: acperkins
Participating Experts: 1
Solution Grade: B
 
 
[+][-]12.05.2007 at 03:10PM PST, ID: 20416073

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_EXPERT_20070906