Oracle之初始建立scott/tiger來測試

來源:互聯網
上載者:User

Oracle之初始建立scott/tiger來測試

在RedHat5.5(32bit)上安裝好Oracle 11g資料庫軟體,然後安裝一個資料庫,再然後登入資料庫,建立scott/tiger測試

首先登入資料庫,這裡登入時是沒有啟動資料庫的

[oracle@localhost oradata]$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on Thu Jul 9 17:54:53 2015

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

Connected to an idle instance.

SQL>

建立scott使用者,用於學習sql語句,指令碼放在$ORACLE_HOME/rdbms/admin/utlsampl.sql

SQL> @?/rdbms/admin/utlsampl.sql

SQL> conn scott/tiger
Connected.
SQL> select * from emp;

    EMPNO ENAME      JOB          MGR HIREDATE        SAL      COMM    DEPTNO
---------- ---------- --------- ---------- --------- ---------- ---------- ----------
      7369 SMITH      CLERK          7902 17-DEC-80        800            20
      7499 ALLEN      SALESMAN          7698 20-FEB-81      1600        300      30
      7521 WARD      SALESMAN          7698 22-FEB-81      1250        500      30
      7566 JONES      MANAGER          7839 02-APR-81      2975            20
      7654 MARTIN    SALESMAN          7698 28-SEP-81      1250      1400      30
      7698 BLAKE      MANAGER          7839 01-MAY-81      2850            30
      7782 CLARK      MANAGER          7839 09-JUN-81      2450            10
      7788 SCOTT      ANALYST          7566 19-APR-87      3000            20
      7839 KING      PRESIDENT        17-NOV-81      5000            10
      7844 TURNER    SALESMAN          7698 08-SEP-81      1500      0      30
      7876 ADAMS      CLERK          7788 23-MAY-87      1100            20
      7900 JAMES      CLERK          7698 03-DEC-81        950            30
      7902 FORD      ANALYST          7566 03-DEC-81      3000            20
      7934 MILLER    CLERK          7782 23-JAN-82      1300            10

14 rows selected.

SQL>

正常情況下上面的結果是沒有這麼整齊,可以在家目錄下設定一下顯示的變數即可。

環境設定:
[oracle@localhost ~]$ vim login.sql
define_editor=vi
set line 180
set pages 999

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.