Can we use stored procedure from database?


Im not able to call my db store procedure

Hey, the error is occuring at the CALL command.

If you're using a SQL Server database (I'm guessing based on the name of the DB you've selected), you might need to use the EXEC command instead:

EXEC sp_DenomTest

Let me know if that works!