select * from dba_tablespaces; --檢視表空間
desc dba_tablespaces; --檢視表空間結構
select * from dba_data_files; --檢視資料的表空間資料字典,表的儲存位置
select * from dba_temp_files; --檢視資料的臨時表空間資料字典,表的儲存位置
select * from dba_ts_quotas;
select *
from role_sys_privs --檢視角色字典
where role in('connect','resource')
order by role;
Qt使用Qtextstream進行換行操作
使用qtextstream向txt檔案輸出換行時,需要使用qiodevice text 標誌。官方文件對qiodevice text 的解釋 when reading,the end of line terminators are translated to n when writing,the e...
C 使用HttpClient進行http操作
在.net 4.5中增加了乙個新的system.net.http.httpclient名字空間 在 system.net.http.dll 中 其中 提供了用於傳送 http 請求和接收 http 響應的api。string body await client.getstringasync uri ...
利用sys模組進行引數的獲取
sys模組 全稱system,指的是直譯器 os指的是作業系統 常用操作,用於接收系統作業系統呼叫直譯器傳入的引數 例項 import os import sys print sys.ar 獲取指令碼名稱 sys.ar 0 獲取指令碼傳遞的第乙個引數 sys.ar 1 獲取指令碼傳遞的第二個引數 s...