I am trying to create a function that returns a comma separated list of values based on a table name and column name parameters.

The idea was to build a dynamic SQL statement on the fly and then return the result. However, I ran into a problem where it won't let me run the execute statement inside of a function. Here is what I had:

ALTER FUNCTION fn_HearingAttendeesToCSV (@TableName varchar(100), 
                                         @ColumnName varchar(100))
RETURNS VARCHAR(MAX)
AS
BEGIN
declare @sql varchar(max)

select @sql = 
'DECLARE @listStr VARCHAR(MAX)
    SELECT @listStr = COALESCE(@listStr + '', '' ,'''') + ' 
          + @ColumnName + ' FROM ' + @TableName + ' RETURN @listStr '

Exec (@sql)
END
GO

I am pretty sure that I am going down the wrong road. Can someone suggest how to get around the execute issue? Or a better way of doing this?

link|improve this question

@marc_s The "possible duplicate" linked doesn't describe the nature of this question, although there probably is a real duplicate of this question on SO. – Richard aka cyberkiwi Mar 27 '11 at 20:16
@richard aka cyberkiwi: upon reading the question again, I guess you're right - I was a bit too quick to pick this duplicate. But I'm pretty sure this has been asked (and answered) before here on this site... – marc_s Mar 27 '11 at 20:24
feedback

4 Answers

up vote 2 down vote accepted

I don't think you can do this via T-SQL, BUT you absolutely can accomplish the same thing via a UDF written in C#. Here's the code:

using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;

public partial class UserDefinedFunctions {
   [Microsoft.SqlServer.Server.SqlFunction(DataAccess = DataAccessKind.Read)]
   public static SqlString fn_HearingAttendeesToCSV(SqlString tableName, SqlString columnName) {
      System.Text.StringBuilder result = null;
      using (var cnn = new SqlConnection("context connection=true")) {
         var cmd = new SqlCommand();
         cmd.CommandText = String.Format("select [{0}] from [{1}]", SqlEscape(columnName.Value), SqlEscape(tableName.Value));
         cmd.Connection = cnn;

         cnn.Open();
         using (var rdr = cmd.ExecuteReader()) {
            while (rdr.Read()) {
               if (result == null) {
                  result = new System.Text.StringBuilder();
               }
               else {
                  result.Append(",");
               }
               result.Append(CsvEscape(rdr[0]));
            }
         }
         cnn.Close();
      }

      if (result == null) {
         return SqlString.Null;
      }
      else {
         return result.ToString();
      }
   }

   private static string SqlEscape(string s) {
      s = s ?? "";
      return s.Replace("[", "[[").Replace("]", "]]");
   }

   private static string CsvEscape(object o) {
      var s = o == null ? "" : o.ToString();
      return "\"" + s.Replace("\"", "\"\"") + "\"";
   }
};

In order to use CLR UDFs, you need to be sure you've enabled them on the server like this:

exec sp_configure 'clr enabled', 1
RECONFIGURE

You also need to compile to an older version of the .NET framework (2.0 is what I tested with) as SQL 2005 doesn't allow 4.0 assemblies.

Even though your UDF is written in C#, you still access it via T-SQL the same way you're used to:

select fn_HearingAttendeesToCSV('table', 'column')

If you need to support schemas other than 'dbo', or if you don't need pure CSV, modify to fit your needs but this should get you 99% of the way there. That is, assuming you're the DBA or you're good enough buddies with him/her to get CLR enabled.

link|improve this answer
It can be done in a TSQL UDF. It can be done in a stored procedure and stored procedures can be called from UDFs using OPENQUERY - It just probably shouldn't be (+1). – Martin Smith Mar 27 '11 at 21:49
Thanks Martin... I figured there might be some trick to do this in T-SQL, but I couldn't for the life of me figure out what it would be. CLR seemed like the easiest route to me. – mattmc3 Mar 27 '11 at 21:58
@Martin - you cannot provide parameters to OPENQUERY = no dice. The intention is to provide the table name as a parameter – Richard aka cyberkiwi Mar 27 '11 at 22:47
@Richard - Ah! That knocks that idea well and truly on the head then! – Martin Smith Mar 27 '11 at 22:52
feedback

You cannot do this in a function - period. Functions cannot execute dynamic SQL, so using an arbitrary table/column name (non-deterministic) flies in the face of SQL Server functions.

link|improve this answer
Is there absolutely no way to do what I want to do? – AngryHacker Mar 27 '11 at 20:23
@AngryHacker - No, absolutely not. You should reconsider why this is required, then look at front-end programming avenues. – Richard aka cyberkiwi Mar 27 '11 at 20:24
Don't be so sure. Just because you can't think of a way doesn't mean that there's not a way. – mattmc3 Mar 27 '11 at 21:46
@mattmc3 While keeping within scope of TSQL, there is 100% absolutely no way. CLR yes, but only on very very cold days will you see me acknowledge CLR solutions when the answer seems to be - reconsider why you need the function in the first place. As can be seen from your answer, you need to watch the CLR output version, enable CLR etc. – Richard aka cyberkiwi Mar 27 '11 at 22:49
show 1 more comment
feedback

Hi I think they're right about functions, but you can use an SP with an output parameter to do this.

Check this code:

create proc DynCsv 
    @table  varchar(100),
    @column varchar(100),
    @csv    varchar(8000) output
as 
    declare
            @sql    nvarchar(4000),
            @parms  nvarchar(100)

    -- setup parms 
    select  @csv = '',          
            @sql = '
    select top 10 @csv = @csv +'','' + CAST(' + @column + ' as varchar)
    from ' + @table + ' option(maxdop 1)',
            @parms = '@csv varchar(8000) output'

    -- execute dynamic
    exec sp_executesql 
            @sql,
            @parms,
            @csv = @csv output

    -- loose first comma    
    set @csv = substring(@csv, 2, 8000)

You can call it with this code:

declare @csv varchar(8000)
exec dynCsv 'tObj', 'ObjId', @csv output
print @csv

Good luck,

GJ

link|improve this answer
You can also use the loop-back trick to execute a stored procedure from a function. Not suggesting that would be a good idea though! – Martin Smith Mar 27 '11 at 21:07
@Martin What is the loopback trick? – AngryHacker Mar 27 '11 at 21:09
If you really need it to be a function so you can select it, i think your best bet would be a CLR function. – gjvdkamp Mar 27 '11 at 21:16
1  
@Angry I linked to it in my comment. Here's a clearer example. I agree with gjvdkamp though that CLR would be more suitable (apart from anything else string concatenation should be quicker there) – Martin Smith Mar 27 '11 at 21:19
feedback

You can't do this in a function but you can do it in a PROCEDURE. I've done that many times to build a dynamic SQL statement.

That's the way to go.

link|improve this answer
You absolutely CAN do this via a UDF. Just not a T-SQL UDF. Using the CLR it's doable. And calling a CLR UDF via T-SQL works just the same as a T-SQL UDF. – mattmc3 Mar 27 '11 at 21:49
feedback

Your Answer

 
or
required, but never shown

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