Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does this Oracle SQL Developer icon mean on my stored procedure?

I've been creating stored procedures using Oracle SQL developer.

For some reason, one of the icons does not contain a green circle. What gives? What does this non-green icon mean?

alt text

like image 667
jeph perro Avatar asked Nov 12 '10 21:11

jeph perro


People also ask

Where are Oracle SQL Developer connections stored?

The default location is: Windows: C:\Documents and Settings\<user-name>\Application Data\SQL Developer.

What is stored procedure in SQL Developer?

A stored procedure is a set of (T-SQL ) statements needed in times when we are having the repetitive usage of the same query. When there is a need to use a large query multiple times we can create a stored procedure once and execute the same wherever needed instead of writing the whole query again.


1 Answers

I believe the green circle you're referring to is actually a green bug icon. That indicates that the procedure has been compiled for debug.

If you are editing a stored procedure in SQL Developer, there should be a gear icon at the top of the edit screen that you use to compile the procedure. If you click the arrow to expand that, you should get options to compile the procedure or to compile for debug. If you select "Compile for Debug", you'll get the green bug icon. If you select "Compile", the bug icon will go away.

like image 83
Justin Cave Avatar answered Oct 18 '22 21:10

Justin Cave