2018暑假假期周進度報告——第二週

我命傾塵發表於2018-07-22

1、本週做了什麼:

  oracle_11g建立表空間、建表、建立使用者、給使用者開鎖、給使用者授權等操作。

  表空間:

1 create tablespace 20163493
2   logging  
3   datafile 'D:\oracledata\20163493.dbf' 
4   size 1m  
5   autoextend on  
6   next 1m maxsize 128m  
7   extent management local;

  建立使用者:

1 create user 20163493 identified by 20163493  
2   default tablespace 20163493  
3   temporary tablespace 20163493;

  開鎖:

1 alter user 20163493 account unlock;

  授權:

1 grant dba to 20163493;

  建表: 

 1 create table test
 2   (
 3     id number,
 4     name nvarchar2(20)
 5   )
 6   tablespace TEST
 7   storage
 8   (
 9     initial 64K
10     minextents 1
11     maxextents unlimited
12   );
13   comment on column test.id
14   is '學號';
15   comment on column test.name
16   is '姓名';
17   alter table test
18   add constraint id primary key (ID);

  

  

  

2、在學習上花了多少時間:

  平均一天兩小時

3、花在程式碼上多少時間:

  平均一天一小時

4、在解決問題上花了多少時間:

  前幾天主要是解決表空間的問題,因為新接觸表空間,和資料庫的差別還是有的,而且建表時語句裡也涉及到表空間,所以花費時間偏多。

5、下週準備做什麼:

  下週開始在補習班裡教初中生,備課等事情很多,時間變少,主要是零零散散的程式碼練習和一些其他方面的知識學習。

6、本週遇到的問題:

  表空間涉及到的問題較多,初接觸用起來比較生疏。

相關文章