Search Results

0
votes

How to use a view name stored in a field for an sql query ?

The way I see it, you could generate SQL code in a VARCHAR(MAX) variable and then execute it using EXEC keyword. I don't know of any way to do it directly, as you tried. Example: …
1
vote

Dynamic Paramter Count for SQL with C#

I hear that SQL Server 2008 has a feature called Table Parameters, so you can pass a Table as a parameter to a Function or Stored Procedure. Until then, you could use the classic: …