sql语句创建表空间、用户

--第1步:创建临时表空间


      create temporary tablespace temp_prison
      tempfile 'D:\app\acer\oradata\orcl\file_temp.dbf'                   --路径根据实际情况任意存储
      size 50m  
      autoextend on  
      next 50m maxsize 2048m  
      extent management local; 


   -- 第2步:创建数据表空间


       create tablespace prison
       logging  
       datafile 'D:\app\acer\oradata\orcl\file_data.dbf' 
       size 50m  
       autoextend on  
       next 50m maxsize 2048m  
       extent management local; 


   -- 第3步:创建用户并指定表空间


       create user prison identified by prison    -- ‘file_username’ 为创建的用户名  ;‘12345678’为创建的新用户登录密码
       default tablespace prison  
       temporary tablespace temp_prison;


  --  第4步:给用户授予权限


       grant connect,resource,dba to prison;

你可能感兴趣的:(sql语句创建表空间、用户)