tags:

views:

37

answers:

1

I have a bunch of dimension tables that have unique ID and Name fields. I need a T-SQL function that returns an ID when passed a table name and a value for the name field.

I'm guessing the function would build a little query then execute it? Performance isn't an issue since this is a one time ETL thing.

A: 

Sounds like you want a scalar user defined function There's a lot of other ways to do it though, and udf's certainly can have some perfomance issues.

SqlACID