8.由oracle分配的共享結構叫sga,它隨著資料庫例項的建立而分配,隨著資料庫例項的終止而釋放。
9.pga為使用者分配的記憶體區域、儲存當前使用者私有的資料和控制資訊
10.伺服器程序的主要任務是解析並執行使用者提交的sql語句和pl/sql程式,將查詢或執行後的結果資料返回給使用者程序。
10.select tablespace_name,file_name from dba_data_files;
11.讓表空間離線/online
alter tablespace hg_zs_01 offline;
alter tablespace hg_zs_01 online;
12.給表空間改位置(假設已經在離線狀態下,將其從temp資料夾移動)
alter tablespace hg_zs_01
rename datafile e:\temp\hg_zs_01.bdf to e:\temp\other\hg_zs_01.bdf
13.運用迴圈語句列印
19=9
28=16
37=21
46=24
55=25
64=24
73=21
82=16
91=9
答案:declare
i int;
j int;
k int;
begin
for i in 1…9 loop
j :=10-i;
k :=ij;
dbms_output.put_line(i || '』 || j || 『=』 || k );
end loop;
end;
/(記得要開啟serveroutput選項,才可以看到列印結果)
Oracle資料庫的一些操作
如何備份oracle資料庫 md f db bak date 0,10 exp userid bszlhr bszlhr orcl 14 file f db bak date 0,10 bszlhr date 0,10 dmp log f db bak date 0,10 log bszlhr da...
oracle資料庫的一些操作
oracle啟用禁用約束 alter table table name disable enable constraint constraint name禁用或啟用約束 alter table table name drop constraint constraint name通過主鍵名刪除約束 查...
一些瑣碎的工具
安裝過程中有很多瑣碎的問題。1.webmatrix新建mysql連線可以直接連線上,用sql檔案重建資料庫,webmatrix好像做不到,又沒有裝phpmyadmin.兩個方法 用cmd的mysql命令 或者用mysql workbench也可以做到。執行完後是重新建立了乙個database,ken...