表空間自動拓展
1: 檢視表空間:
select * from dba_data_files where tablespace_name = 'tablespace';
2: 檢視表空間大小:
select tablespace_name, sum(bytes/1024/1024) from dba_segments group by
tablespace_name;
3: 構造 修改表空間自動拓展的 sql
select
'alter database datafile '''||
file_name||
' autoextend on;'
from
dba_data_files
where tablespace_name = 'tablespace';
4: 將3中的結果拷貝出來執行。
字串操作:
比如郵件位址網域名稱抽取出來:[email protected] -> ef.com
substr(email, instr(email,'@') +1)
查詢正在執行的sql:
select se.username,sq.sql_text
from v$sql sq,v$session se
where sq.address=se.sql_address;
Golang點滴記錄
a的位址是 a 符號的意思是對指標取值,如 a,就是a變數所在位址的值,當然也就是a的值了 和 可以互相抵消,同時注意,可以抵消掉,但 是不可以抵消的 首先先明白一點 無緩衝 堵塞,緩衝 非堵塞 比如 c1 make chan int 無緩衝 c2 make chan int,1 有緩衝 c1 1 ...
實習之點滴記錄
本來只是想用一種比較客觀的心態和態度記錄下自己這四個月在微軟的所學所感,但是不知不覺還是染了主觀主義。離實習期結束還有大半個月,這時候才發現我要找工作了。在現實轉悠了一圈才發現自己還很幼稚,要學的很多,想走的念頭越來越強。每天逼著自己學些東西,我不知道目標是什麼?未來是什麼?四個月的實習期,我見識了...
WinCE點滴記錄 Bootloader
wince的系統生成過程 sysgen build copy make bootloader的架構 blcommon,oem eboot和網路驅動程式 blcommon oem edbg網路驅動 eboot bootpart flash fmd ne200 rtl8139 82559er blcom...