All Tags »
SQL Server 2005 »
Scripts (RSS)
Sorry, but there are no more tags available to filter with.
-
SQL Server 2000 included a very useful extended stored procedure called xp_execresultset. This XP had two parameters: @cmd and @dbname.
@cmd was expected to be a SELECT statement that would produce a single
column of output, each row of which would produce a valid query.
@dbname was used to specify the database that both the initial query
and ...