--查询某个表的数据的插入时间
select to_char(scn_to_timestamp(ORA_ROWSCN),'yyyy-mm-dd hh24:mi:ss') insert_time,app_id from CFG_APP;
-- 查询数据库字符集
select userenv('language') from dual;
--查询数据版本
select * from v$instance
--查看当前正在使用数据的用户
SELECT osuser, a.username,cpu_time/executions/1000000||'s', b.sql_text,machine
from v$session a, v$sqlarea b
where a.sql_address =b.address order by cpu_time/executions desc;
select count(*) from v$process
--数据库允许的最大连接数
select value from v$parameter where name = 'processes'
--修改最大连接数:
alter system set processes = 300 scope = spfile;
--并发连接数
select count(*) from v$session where status='ACTIVE'
--查看用户表空间
select username,default_tablespace,temporary_tablespace from dba_users where username='CFG';
--修改表空间
alter tablespace CFG_DB_DATA rename to CFG_DATA;