Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I return a table from an UDF that executes a custom query string? Eg:

CREATE FUNCTION fx_AdvancedSearch ( @keywords varchar(255), (..... other params ....) ) RETURNS TABLE AS BEGIN DECLARE @SqlQuery varchar(1000)
.....

    SET @SqlQuery = 'my custom select  string previously generated'

EXEC(@SqlQuery)

END

I was thinking maybe i could create a temp in memory table and then return it, but i don't want to allocate extra memory in the server for this purpose.

And...should i use a SP or an UDF to accomplished this goal? I have this running in a SP but the Linq2SQL cannot determine the return type and therefore i cannot use this function properly in my .NET code.

Thanks! TT

share|improve this question
How much data are you expecting to return in the table? – Irwin M. Fletcher Oct 20 '09 at 12:48
Thousands of records :( – byte_slave Oct 20 '09 at 12:52
what version fo Sql Server? – HLGEM Oct 20 '09 at 13:55

2 Answers

up vote 3 down vote accepted

Erland has documented a lot of different ways to accomplish this (but not with functions, as someone else already pointed out), see: http://sommarskog.se/share%5Fdata.html ... may also require reading of his two dynamic SQL articles.

share|improve this answer

I'm fairly sure you cannot use dynamic sql in a function.

share|improve this answer
You are right, sorry – Svetlozar Angelov Oct 20 '09 at 13:56
Yes, this is true... will likely have to use a stored procedure. – Aaron Bertrand Oct 20 '09 at 13:57
Thanks everyone for the inputs. Reading the article Aaron suggested helps to clarify. Greetings for all. – byte_slave Oct 20 '09 at 14:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.