昨天突然發現,我安裝的Oracle伺服器沒有scott使用者,沒辦法只能手動的來匯入了。
具體方法:
首先 用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模式登入)
how 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行。
如果想刪除scott使用者 DROP USER scott cascade;