SYSARTICLES ビューの各ローは、パブリケーション内のアーティクルを示します。
ビューを構成するテーブルとカラムは、以下の SQL 文で示されます。特定のテーブルまたはカラムの詳細については、以下のビュー定義にあるリンクを参照してください。
ALTER VIEW "SYS"."SYSARTICLES" as select u1.user_name as publication_owner,p.publication_name, u2.user_name as table_owner,t.table_name, a.where_expr,a.subscribe_by_expr,a.alias from SYS.ISYSARTICLE as a join SYS.ISYSPUBLICATION as p on(a.publication_id = p.publication_id) join SYS.ISYSTAB as t on(a.table_id = t.table_id) join SYS.ISYSUSER as u1 on(p.creator = u1.user_id) join SYS.ISYSUSER as u2 on(t.creator = u2.user_id); |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |