Chinaunix首页 | 论坛 | 博客
  • 博客访问: 894714
  • 博文数量: 101
  • 博客积分: 2256
  • 博客等级: 大尉
  • 技术积分: 1481
  • 用 户 组: 普通用户
  • 注册时间: 2011-04-19 17:52
文章存档

2017年(1)

2013年(2)

2012年(25)

2011年(73)

分类: Oracle

2011-11-28 22:12:56

C:\Documents and Settings\Administrator>set oracle_sid
环境变量 oracle_sid 没有定义

C:\Documents and Settings\Administrator>set oracle_sid=orcl

C:\Documents and Settings\Administrator>sqlplus /nolog

SQL*Plus: Release 10.2.0.1.0 - Production on 星期一 11月 28 21:59:16 2011

Copyright (c) 1982, 2005, Oracle.  All rights reserved.

SQL> conn  ;
已连接。
SQL> create user tongyici identified by orcl;

用户已创建。

SQL> grant connect to tongyici;

授权成功。

SQL> create  public synonym test for orcl.test;

同义词已创建。

SQL> select table_name from user_tables;

TABLE_NAME
------------------------------
ORCLBK

SQL> create table test( id number(2),
  2  name varchar2(20)
  3  );

表已创建。

SQL> select table_name from user_tables;

TABLE_NAME
------------------------------
ORCLBK
TEST

SQL> select * from test;

未选定行

SQL> insert into test values(1,'jacky');

已创建 1 行。

SQL> insert into test (select * from test);

已创建 1 行。

SQL> insert into test (select * from test);

已创建2行。

SQL> insert into test (select * from test);

已创建4行。

SQL> insert into test (select * from test);

已创建8行。

SQL> insert into test (select * from test);

已创建16行。

SQL> insert into test (select * from test);

已创建32行。

SQL> commit;

提交完成。

SQL> grant select on test to tongyici;

授权成功。

SQL>--这个同义词创建了,并且赋予tongyici这个用户对test表的查询权限;

阅读(1579) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~