日期:2014-05-16  浏览次数:20362 次

oracle学习笔记之一

?

创建表空间:

?create?tablespace?gouchao

?datafile?'f:\xyc01.dbf'?size?50m;

用户:

创建用户:

?

create?user?xuyongchao3?identified?by?xyc

???default?tablespace?gouchao

???temporary?tablespace?temp;

?

?

修改用户密码:

alter?user?xuyongchao??identified?by?gouchao;

设置密码过期:

?alter?user?gouchao?password?expire;

锁定用户:

alter?user?xuyongchao?account?lock;

为用户解锁:

alter?user?xuyongchao?account?unlock;

为用户授权:(系统权限)