システム名 | http://www.as-link.com/ | 作成者 | 秦 松甫 |
---|---|---|---|
サブシステム名 | ERPlus@iDempiere3.1_daily | 作成日 | 2016/3/7 |
スキーマ名 | adempiere | 更新日 | |
論理テーブル名 | RDBMS | PostgreSQL 9.4.5 on x86_64-unknown-linux-gnu, compiled by gcc (GCC) 4.8.3 20140911 (Red Hat 4.8.3-9), 64-bit 9.4.5 | |
物理テーブル名 | ad_sessioninfo_v | ||
備考 |
No | 論理名 | 物理名 | データ型 | Not Null | デフォルト | 備考 |
---|---|---|---|---|---|---|
1 | ad_session_id | numeric(10) | ||||
2 | ad_client_id | numeric(10) | ||||
3 | ad_org_id | numeric(10) | ||||
4 | isactive | character(1) | ||||
5 | created | timestamp without time zone | ||||
6 | createdby | numeric(10) | ||||
7 | updated | timestamp without time zone | ||||
8 | updatedby | numeric(10) | ||||
9 | websession | text | ||||
10 | remote_addr | text | ||||
11 | remote_host | text | ||||
12 | rolename | text | ||||
13 | logindate | timestamp without time zone | ||||
14 | ad_session_uu | character varying(36) | ||||
15 | servername | text | ||||
16 | clientname | text | ||||
17 | orgname | text | ||||
18 | ad_sessioninfo_v_id | numeric(10) | ||||
19 | ad_sessioninfo_v_uu | character varying(36) | ||||
20 | loginname | text | ||||
21 | text |
ソース |
---|
SELECT s.ad_session_id, |
No | インデックス名 | カラムリスト | ユニーク | 備考 |
---|
No | 外部キー名 | カラムリスト | 参照先 | 参照先カラムリスト |
---|
No | 外部キー名 | カラムリスト | 参照元 | 参照元カラムリスト |
---|
No | プロパティ名 | プロパティ値 |
---|---|---|
1 | schemaname | adempiere |
2 | viewname | ad_sessioninfo_v |
3 | viewowner | adempiere |
4 | definition | SELECT s.ad_session_id, (0)::numeric(10,0) AS ad_client_id, (0)::numeric(10,0) AS ad_org_id, s.isactive, s.created, s.createdby, s.updated, s.updatedby, substr((s.websession)::text, 1, 40) AS websession, substr((s.remote_addr)::text, 1, 60) AS remote_addr, substr((s.remote_host)::text, 1, 120) AS remote_host, substr((r.name)::text, 1, 60) AS rolename, s.logindate, s.ad_session_uu, substr((s.servername)::text, 1, 80) AS servername, substr((c.name)::text, 1, 60) AS clientname, substr((o.name)::text, 1, 60) AS orgname, s.ad_session_id AS ad_sessioninfo_v_id, s.ad_session_uu AS ad_sessioninfo_v_uu, substr((u.name)::text, 1, 60) AS loginname, substr((u.email)::text, 1, 60) AS email FROM ((((ad_session s JOIN ad_user u ON ((s.createdby = u.ad_user_id))) LEFT JOIN ad_role r ON ((s.ad_role_id = r.ad_role_id))) JOIN ad_client c ON ((s.ad_client_id = c.ad_client_id))) LEFT JOIN ad_org o ON ((s.ad_org_id = o.ad_org_id))) WHERE (s.processed = 'N'::bpchar); |