随笔分类 -  Oracle

对Oracle的学习正在,对学习中碰到的一些问题进行描述,希望对后来者提供帮助,更希望能有高手进行指导
摘要:建立用户到用户建表的步骤:Server建立:create user 用户名 identified by "密码";授权:grant create session to 用户名; grant create table to 用户名; grant create tablespace to 用户名; grant create view... 阅读全文
posted @ 2005-12-16 00:34 Aldebaran's Home 阅读(4982) 评论(0) 推荐(0)
摘要:select * from user_tablespace;--查看表空间名select * from user_sys_privs;--查看用户权限 阅读全文
posted @ 2005-12-15 23:50 Aldebaran's Home 阅读(441) 评论(0) 推荐(0)
摘要:最近在学习ORACLE 9i的使用,发现了这样一个问题:在用Net Configuration Assistant配置客户端的时候,在测试连接数据库时,出现了一个SCOTT用户,要查出它的默认密码,就在SQL *PLUS中用sql>conn /as sysdba登陆,然后select password from dba_users where username='SCOTT';得出PASSWORD... 阅读全文
posted @ 2005-12-12 23:48 Aldebaran's Home 阅读(1085) 评论(2) 推荐(0)