In SQL Server, the following works:
sp_help MyProc
sp_depends MyTable
But if you include the owner, it fails with a syntax error:
sp_help dbo.MyProc
sp_depends dbo.MyTable
It makes you put the param in quotes for it to work. Yet, I could do the following no problem:
exec dbo.MyProc
Why the inconsistency? Is there a reason?