Working is SQL server 2005 using SSMS 16
I have a stored procedure in a database exec get_info 'ID175143'
Msg 2812, Level 16, State 62, Line 22
Could not find stored procedure 'get_info'.
So I do exec [WorkDatabase].[owner].get_info 'ID175143'
This would be okay but many of the sp's call other sp's so I get these kind of errors
Msg 2812, Level 16, State 62, Procedure get_info, Line 9 [Batch Start Line 19]
Could not find stored procedure 'get_info_base'.
How can I get around this??
Open in new window