Typically, if you want to execute a SQL Server stored procedure, write:
EXEC Your-stored-proc-name-here @param1 = value1, @param2 = value2
and then run this command. As a general rule, you should also use the dbo.StoredProcName notation to avoid confusion / problems.
source share