Hi. I have done some research and have found the function EnumProcesses, but this is not quite what I am looking for. I basically want the information that you see in the Task Manager under the Application tab (i.e., MyDoc.doc - Microsoft Word). Does anyone know of any functions that might help...
Hello,
I think I found a way to get around the rownum ordering problem, even though it's a little ugly.
Instead of
select table_name, row_num
from (select table_name, rownum row_num
from dba_tables
order by table_name)
where row_num between 2 and 10
try:
select table_name...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.