I was advised when executing a stored procedure, I should include the prefox dbo e.g.
exec dbo.’name_of_stored_procedure’
- Does it matter if I don’t include the prefix?
- When should I use the prefix?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If your stored procedure is in the
dboschema, then you should say:Pros for specifying schema:
dbo)Cons for specifying schema:
What else does not being explicit buy you?