Oracle 常用脚本

创建表空间:

CREATETABLESPACEPMS_DATADATAFILE'/home/oracle/tablespaces/PMS_DATA.dbf'SIZE10240MUNIFORMSIZE128k;

红色字体为可以设置的地方。

设置表空间为自动增长:

ALTERDATABASEDATAFILE'/home/oracle/tablespaces/PMS_DATA.dbf'AUTOEXTENDON;

创建用户:

createuserpmsidentifiedbypmspwd

defaulttablespaceuser_data//用户表空间

temporarytablespaceuser_temp;//用户临时表空间

授权脚本:

grantcreatesession,unlimitedtablespace,createtable,createcluster,createsequence,createprocedure,createtrigger,createtype,createoperator,createindextypetooracleUserName;

远程导入导出用户脚本:

explms/[email protected]/orclfile=d:\lms.dmpowner=lms

impbdms/[email protected]/orclfile=d:\bdms.dmp

本文出自 “没有最好,只有更好” 博客,转载请与作者联系!

你可能感兴趣的:(oracle,用户授权)