QUOTE (acesiowa @ Dec 3 2008, 01:38 PM)

Just the name of the view will work. I don't want to take up any more time than in neccessary. With the name of the view, I can figure out what columns I need.
select x.sid
from v$session x, v$sqltext y
where x.sql_address = y.address
and y.sql_text like '%<package name>%';
figured it out
thanks anyway