Oracle数据库默认用户名

Oracle数据库默认用户名

𝓓𝓸𝓷 Lv6
一、Oracle12c 数据库自带的用户名
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---12.1.0.2

select username
from dba_users
where username not in ('SCOTT',
'ORACLE_OCM',
'OJVMSYS',
'SYSKM',
'XS$NULL',
'GSMCATUSER',
'MDDATA',
'SYSBACKUP',
'DIP',
'SYSDG',
'APEX_PUBLIC_USER',
'SPATIAL_CSW_ADMIN_USR',
'SPATIAL_WFS_ADMIN_USR',
'GSMUSER',
'AUDSYS',
'FLOWS_FILES',
'DVF',
'MDSYS',
'ORDSYS',
'DBSNMP',
'WMSYS',
'APEX_040200',
'APPQOSSYS',
'GSMADMIN_INTERNAL',
'ORDDATA',
'CTXSYS',
'ANONYMOUS',
'XDB',
'ORDPLUGINS',
'DVSYS',
'SI_INFORMTN_SCHEMA',
'OLAPSYS',
'LBACSYS',
'OUTLN',
'SYSTEM',
'SYS');



select username, default_tablespace
from dba_users
where default_tablespace not in ('SYSTEM', 'SYSAUX', 'USERS');

select name from v$tablespace where name not in ();
  • Title: Oracle数据库默认用户名
  • Author: 𝓓𝓸𝓷
  • Created at : 2025-02-15 20:30:28
  • Updated at : 2025-02-18 16:11:21
  • Link: https://www.zhangdong.me/oracle-default-user.html
  • License: This work is licensed under CC BY-NC-SA 4.0.
评论