How to Rename stored procedures in PL/SQL
Is there any query for that?
Yathini 0 Newbie Poster
Recommended Answers
Jump to PostEXEC sp_rename 'spGetAvgGrade', 'spNewAvgGrade';
You will receive the following warning, but the procedure will be renamed
Caution: Changing any part of an object name could break scripts and stored procedures.
Method II: drop and recreate the procedure.
All 4 Replies
Reply to this topic Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.