创建表空间及用户: create tablespace 表空间名 datafile 'd:/seal.dbf' size 10M autoextend on;create user username identified by password default tablespace 表空间名;grant connect,resource,dba to username; 登录超级用户sqlplus sys@orcl as sysdba ##############################…