初始話之一:
--- 檢視通過org_id進行資料遮蔽時,須在同乙個sql視窗進行賦值給client_info
responsibility_id,
作用:在資料庫的會話中設定全域性變數,和使用者概要資訊。
引數獲得:
引數一,使用者id
select user_id
from fnd_user
where user_name like '%operations%'; -- id of operations:1318
引數二,職責編號(responsibility id)
from fnd_responsibility
where responsibility_key like '%assets_vision_operations%';
上面的sql取得
方便的方法:help->diagnostics->examin, block: $profiles$, field: resp_id(以及其他)
執行:
begin
end;
測試:select fnd_profile.value('gl_set_of_bks_id') from dual;
select fnd_profile.value('user_id') from dual; --對應剛才的user
fuse呼叫流程有待整理
fuse處理請求的整個流程如下圖所示,以unlink操作為例進行說明。其中 表示呼叫,fuse通過fuse session loop 或對應多執行緒的方法 來啟動fuse守護程式,守護程式不斷的從 dev fuse上讀取請求,並處理。片段1 int fuse session loop struct ...
evernote雜記整理
最近翻起讀研期間在evernote中的一些瑣碎記錄,主要包括c語言,fpga和dsp開發的,那個時候還是初學者,犯了很多很弱的錯誤 c語言 1 當乙個變數存放的值為位址值時,想要取出該位址上的值,需要將該變數轉化為指標變數。也可以這麼寫uint32 pa 0xb000 0000,pa int pa ...
Sql 整理備忘 雜記
1 排序 order order isread asc,createtime desc sort conf b order.isread asc 正序 sort conf b order.createtime desc 降序 order sort conf 不等於 等於null is null 不等...