The following SQL identifies custom queries created in your system from the PSQRYDEFN PeopleTools table. It includes the query type (and the operator ID who owns the query if it is private). select QRYNAME as "Query Name", DESCR as "Query Description", CREATEOPRID as "Created By", CREATEDTTM as"Created On", LASTUPDDTTM as "Last Updated By", LASTUPDOPRID as "Last Updated On", case when OPRID != ' 'then 'Private - ' || OPRID else 'Public' end as "Query Type", VERSION as "Revisions", QRYAPPROVED as"Query Approved?", APPROVEOPRID as "Approved By", APPROVEDTTM as "Approved On"from PSQRYDEFNwhereLASTUPDOPRID != 'PPLSOFT'
Note to run in SQL server, change the || concatenation operator to a plus sign (+). |
相关文章
- elementPlus中的嵌套el-dialog弹框中,解决使用custom-class修改样式不生效的问题
- 【 Gym - 101138D 】Strange Queries (莫队算法)
- XF custom render 各平台实现类
- LA - 5031 - Graph and Queries
- UVALive - 5031 Graph and Queries (并查集+平衡树/线段树)
- UVa 1479 (Treap 名次树) Graph and Queries
- LA 5031 Graph and Queries (【名次树(treap)】+【并查集】+【离线算法】)
- UVAlive 5031 Graph and Queries(treap)
- LA 5031 Graph and Queries (离线处理 + Treap树维护名次)
- UVaLive 5031 Graph and Queries (Treap)