Apparently if a stored procedure's name begins with "SP_", SQL Server first looks in the master database. Does anyone know if this also holds true for the prefix "sp" (without the underscore? Thanks
I don't know about the sp without underscore... However, If you fully qualify it then it shouldn't matter how you prefix the name. By fully qualifying I mean something like DatabaseName.TableName.Object name... For example, Northwind.dbo.spGetEmployees I think this will partially address your question...