Hi
find database object - can't find comments!
created this package:
create or replace
package testtest as
end testtest;
create or replace
package body testtest as
-- hello there
end testtest;
Tried the "find database object"

this query finds it:
select name,line from user_source
where upper(text) like '%HELLO THERE%';
NAME LINE
--------- -----
TESTTEST 2
regards Karsten