# _ORACLE_SCRIPT
  • 内部维护使用,在 oracle 12 以上创建用户需要加 c##,这时我会使用以下代码,突破 oracle 的限制,用户切记改回 false。
  • 可参考:https://serverfault.com/questions/923623/persist-alter-session-set-oracle-script-true-in-oracle-12c
alter session set "_ORACLE_SCRIPT"=true;
# 查询表空间
-- 查询当前用户所处表空间
select default_tablespace from dba_users where username='Loguser';
-- 查看所有的表空间
-- 方式 1:dba_tablespaces --
select * from dba_tablespaces;
-- 方式 2:v$tablespace
select * from v$tablespace;
# 查看用户下面的所有的表
-- 方式 1:user_tables --
select * from user_tables;
-- 方式 2: dba_tables --
select * from dba_tables where owner='TMS21';
# 查看表空间下有多少用户
-- 注意表空间的名字是大写
select distinct s.owner from dba_segments s
where s.tablespace_name = upper('tablespace_name');
# 查看表空间位置
select * from dba_data_files order by file_id;
# 查询函数状态
SELECT OBJECT_NAME FROM USER_OBJECTS WHERE STATUS='INVALID' AND OBJECT_TYPE='FUNCTION';
# 查看函数代码
SELECT TEXT FROM USER_SOURCE WHERE NAME='函数名';
# 编译函数
ALTER FUNCTION 函数名 COMPILE;
Update on Views times

Give me a cup of [coffee]~( ̄▽ ̄)~*

Nico Niconi WeChat Pay

WeChat Pay

Nico Niconi Alipay

Alipay