write a custom procedure using VB.net or C#, compile it to
a DLL, then reference the custom procedure
Main Topics
Browse All TopicsI have to call a function which is created in SQL Server Management Studio in a derived column transformation in an Integration services package. How can that be done? Is it possible at all?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
short answer: no with derived column transformation
solution:
Use
set all of your source columns as input columns
and create one column in output of script component for each of input columns,
add another output column for new fetched values from sql server function you have
then in your input_processInput method in script component you can map all input values to output
you can also connect to sql server and fetch function result and then set it to new output column
This will work correctly
post here if you have problem yet
I solved an example for you here:
http://www.rad.pasfu.
Business Accounts
Answer for Membership
by: rob_farleyPosted on 2009-11-04 at 22:34:57ID: 25747183
Not really... The Derived Column Transformation doesn't have any kind of hook into the SQL back end.
What you can do is to run a SQL Command and pull the output of that into your buffer.
Rob