Oracle 21c Text が使用可能かどうかの確認方法

環境
Windows 11 Pro 21H2 64bit
Oracle Database 21c Express Edition Release 21.0.0.0.0

書式
select username from dba_users where username=’CTXSYS’;

操作方法
SYS ユーザでデータベースにログインし、「CTXSYS」というユーザが存在するかどうか確認します。
$ sqlplus / as sysdba

SQL構文

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
SQL>  select
username
from
dba_users
where
username = 'CTXSYS';
SQL>  select username from dba_users where username = 'CTXSYS';
SQL>  select
  username 
from
  dba_users 
where
  username = 'CTXSYS';

実行結果 CTXSYS

Oracle 21c

Posted by arkgame