Zukus and Oracle
(Переместить в ...)
Главная
Статьи
▼
среда, 17 января 2024 г.
How to convert seconds to HH24:MI:SS
›
First example is convert seconds to HH24:MI with using to_char: with t as (select 800000000 sec from dual) select nvl(trim(to_char(trunc(r...
четверг, 3 мая 2018 г.
Getting information about table size, lob segment and lob index segment size which belongs to table
›
set linesize 256 col owner for a30 col table_name for a30 col segment_name for a90 col LOB_SECURED for a11 col LOB_COMPRESSION for a15 w...
пятница, 12 января 2018 г.
Processes and Sessions Utilization
›
Sessions utilization SQL> select (100*current_utilization / limit_value) as session_percent from v$resource_limit where resource_n...
четверг, 11 января 2018 г.
Determine sessions count from machine, username using v$session
›
set linesize 256 col machine format a50 select machine, username, count(*) cnt FROM v$session WHERE 1 = 1 group by ...
How to find the SQL statements with hard parses
›
Find similar SQL statements 1. Find similar SQL statements using gv$open_cursor select saddr, sid, user_name, address,hash_value,sql_id,...
›
Главная страница
Открыть веб-версию