码迷,mamicode.com
首页 > 数据库 > 详细

sql

时间:2015-10-08 19:54:43      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:

1、32位pl/sql developer连接64位oracle:

  <1>我的收藏http://www.cnblogs.com/tianguook/p/3546679.html

  <2>具体方法:
首先 用system用户登陆。
导入scott.sql脚本(可以在oracle的安装目录的查找),例如我本机的路径,导入就可以写成:
@D:\app\Administrator\product\11.2.0\dbhome_1\RDBMS\ADMIN\scott.sql

其次 输入:
alter user scott identified by tiger; 修改scott密码
alter user scott account unlock; 解锁用户
conn scott/tiger (以scott模式登录)
show user (看看当前用户是否是scott)
select * from emp;
那么我们就可以查看到:
SQL> select * from emp;
EMPNO ENAME JOB MGR HIREDATE SAL COMM DEPTNO
---------- ---------- --------- ---------- -------------- ---------- ---------- ----------
7369 SMITH CLERK 7902 17-12月-80 800 20
7499 ALLEN SALESMAN 7698 20-2月 -81 1600 300 30
7521 WARD SALESMAN 7698 22-2月 -81 1250 500 30
7566 JONES MANAGER 7839 02-4月 -81 2975 20
7654 MARTIN SALESMAN 7698 28-9月 -81 1250 1400 30
7698 BLAKE MANAGER 7839 01-5月 -81 2850 30
7782 CLARK MANAGER 7839 09-6月 -81 2450 10
7839 KING PRESIDENT 17-11月-81 5000 10
7844 TURNER SALESMAN 7698 08-9月 -81 1500 0 30
7900 JAMES CLERK 7698 03-12月-81 950 30
7902 FORD ANALYST 7566 03-12月-81 3000 20
7934 MILLER CLERK 7782 23-1月 -82 1300 10
已选择12行。

sql

标签:

原文地址:http://www.cnblogs.com/zhangzs000/p/4861850.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!