• Just one result set? Sure.

    Create temporary table

    cursor

    insert into temptable

    exec sp_executesql @selSQL

    deallocate cursor

    select * from temp table

    (Hope that's not too sketchy)

    Guarddata-