1. ホーム
  2. データベース
  3. 神託

オラクルユーザー作成プロセスの説明

2022-01-08 03:04:05

1. まず、sqlplusにadministratorユーザーでログインします。

sqlplus "sysman/password set during installation"  


2. ユーザーを作成する

パスワードで識別されるユーザーuserNameを作成します。


ユーザーuserName, パスワードをパスワードで作成

3. ユーザーを認証する

grant dba to userName; --grant DBA privileges  
grant unlimited tablespace to userName; --grant unlimited tablespace  
grant select any table to userName; --grant query any table  
grant select any dictionary to userName; --grant query any dictionary 

4. テーブルスペースの作成

-createテーブルスペース

 
    CREATE TABLESPACE cheng DATAFILE 'C:\oraclexe\oradata\XE\cheng.dbf' SIZE 500M
UNIFORM SIZE 128k; #Specify the zone size as 128k,if not specified,the zone size defaults to 64k
 
--delete tablespace
 
     DROP TABLESPACE cheng INCLUDING CONTENTS AND DATAFILES
 
--modify tablespace size
 
     alter database datafile 'c:\oraclexe\oradata\XE\cheng.dbf' resize 50M

今回のオラクルユーザーの作成方法についての記事です。oracleユーザー作成については、BinaryDevelopの過去記事を検索していただくか、引き続き以下の関連記事をご覧ください。