in reply to Re: Perl-SQL-ADO-Stored proedures
in thread Perl-SQL-ADO-Stored proedures

From my MS-SQL manual:

Executes a system procedure, a user-defined 
stored procedure, or an extended stored procedure. 
Also supports the execution of a character string 
within a Transact-SQL batch.

In general, you can ditch the "EXECUTE" when calling stored procedures. (sp_...) so you don't often see it. It's good form to use it tho, especially when you combine it with other SQL.

--
$you = new YOU;
honk() if $you->love(perl)