SQL 구문 으로 표 공간 만 들 기

SQL 문 구 를 사용 하여 만 듭 니 다. 
1.테이블 공간 만 들 기 
사용 자 를 만 들 고 권한 을 분배 합 니 다. 
표 만 들 기 
--         
create tablespace cctc_core     
logging     
datafile   
'/ORACLE/PRODUCT/10.2.0/ORADATA/cctchdcq/cctc_core.dbf'     
size 100m    
autoextend on next  10m     
extent management local     
segment space management auto 
/
--       
create tablespace cctc_operation     
logging     
datafile   
'/ORACLE/PRODUCT/10.2.0/ORADATA/cctchdcq/cctc_operation.dbf'     
size 100m     
autoextend on next  10m     
extent management local     
segment space management auto 
/ 
-- Create the user  
create user HDCQ   
default tablespace CCTC_CORE--        
temporary tablespace TEMP   
profile DEFAULT   
quota unlimited on cctc_core--           
quota unlimited on cctc_operation;--         
-- Grant/Revoke role privileges        
grant connect to HDCQ with admin option; 
grant dba to HDCQ with admin option; 
grant resource to HDCQ with admin option; 
-- Grant/Revoke system privileges          
grant unlimited tablespace to HDCQ with admin option;  
create table  t_organization  (
--   
org_pk             number(10,0)                not null,     
--         
father_org_pk      number(10,0) default 0,     
--            

좋은 웹페이지 즐겨찾기