Oracle 基礎溫習2 查詢預設表空間及其下面的table

starive發表於2014-02-01


請輸入使用者名稱:  starive
輸入口令:


連線到:
Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production


SQL> select default_tablespace from user_users where username='starive';


未選定行

###查詢當然預設的表空間

SQL> select default_tablespace from user_users;


DEFAULT_TABLESPACE
------------------------------------------------------------
STARIVESPACE

###在預設表空間下建立 資料庫裡面三個典型的表

SQL> create table student( sno char(9) primary key,
  2  sname char(20) not null,
  3  ssex char(4),
  4  sage smallint,
  5  sdept char(20));


表已建立。


SQL> select table_name from all_tables where tablespace_name='starivespace';


未選定行



###查詢剛剛建立的表是否在預設表空間

SQL> select table_name from all_tables where tablespace_name='STARIVESPACE';


TABLE_NAME
------------------------------------------------------------
STUDENT



###繼續後面的3張表的工作

INSERT INTO Student VALUES('0201','趙偉','男',18,'cs');
INSERT INTO Student VALUES('0202','張力虹','男',19,'is');
INSERT INTO Student VALUES('0203','徐秀美','女',21,'is');
INSERT INTO Student VALUES('0204','劉平','男',20,'cs');
INSERT INTO Student VALUES('0205','姚家全','男',19,'cs');
INSERT INTO Student VALUES('0206','上關美雲','女',23,'ma');



  create table course(
      cno CHAR(6),
      cname varchar2(20),
      credit number,
      primary key(cno)
      ) tablespace starivespace;                    ---》此時寫不寫表空間都可以,因為預設已是starivespace


INSERT INTO course VALUES('0001','高等數學',6);
INSERT INTO course VALUES('0002','離散數學',2);
INSERT INTO course VALUES('0003','大學物理',4);
INSERT INTO course VALUES('0006','演算法語言',2);

  CREATE TABLE SC
         (Sno    CHAR(9)  NOT NULL,
          Cno    CHAR(6)  NOT NULL, 
          Grade    SMALLINT,
          PRIMARY KEY (Sno,Cno),
          constraint f1 FOREIGN KEY (Sno) REFERENCES Student(Sno),
          FOREIGN KEY (Cno) REFERENCES Course(Cno)
      )  tablespace starivespace;




SQL> select table_name from all_tables where tablespace_name='STARIVESPACE';


TABLE_NAME
------------------------------------------------------------
STUDENT
COURSE
SC




來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26435490/viewspace-1076707/,如需轉載,請註明出處,否則將追究法律責任。

相關文章