Hi,,
I am using SQLSERVER 2005. when i create andy procedure I cannot see it under
my database->programatic->stored procedrre
instead it is storing under sytem database...
How can I move or create them under my database....
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
KenPosted Oct 20, 2008, 2:18 PM
1. In the code right before the create procedure statement say
USE [your database name here]
create procedure usp.yournamehere
2.
In SQL Management Studio right below the New query button you should see a drop down box that has master database in it ...simply select your database and then execute when you are creating
To fix this probably the easist thing to do would be delete it from master and re-create in your database
Hope that helps
MuneerPosted Oct 20, 2008, 2:22 PM
It was very helpful
I used the USE