Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Not able to see Procedure/Function body in Oracle SQL developer

I am not able to see Procedure/Function body in package view Oracle SQL Developer connected to Oracle 11g.. Any idea how can I see that

enter image description here

enter image description here

enter image description here

like image 689
sromit Avatar asked Apr 02 '26 16:04

sromit


1 Answers

You should be able to see the pacakge body if you press the plus (+) button you had right at the name of your pacakge.

check_pkg_body

If you don’t see it, two things may be happening, you don’t have the permissions (grants) on the user with which you are connected to the database session or the package body doesn’t exist.

To check if the package body exist you could export the definition,

pkg_export

You should also check if you are connected to the right environment

like image 164
Bogado Alejandro Avatar answered Apr 04 '26 04:04

Bogado Alejandro