oracle

Oracle 10g Expressのサンプルスキーマ

Oracle 10g のDebianパッケージは、scott/tigerで有名なサンプルスキーマがセットアップされていません。
下記の手順でセットアップできます。

$ cd /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/rdbms/admin
$ sqlplus system/manager@XE @utlsampl.sql
SQL*Plus: Release 10.2.0.1.0 - Production on Thu Sep 24 18:12:41 2009
Copyright (c) 1982, 2005, Oracle.  All rights reserved.
Connected to:
Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
Disconnected from Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
$ sqlplus scott/tiger@XE
SQL*Plus: Release 10.2.0.1.0 - Production on Thu Sep 24 18:13:45 2009
Copyright (c) 1982, 2005, Oracle.  All rights reserved.
Connected to:
Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
SQL> select count(*) from emp;
COUNT(*)
----------
14
SQL>
タイトルとURLをコピーしました