Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save danielleevandenbosch/d5df53402904891eb5cb4a2fb09b25f4 to your computer and use it in GitHub Desktop.
Save danielleevandenbosch/d5df53402904891eb5cb4a2fb09b25f4 to your computer and use it in GitHub Desktop.
information schema queries for Progress Open-Edge Databases
--table search
SELECT id '#'
,owner AS schema_name
,c.tbl AS table_name
,col AS column_name
,nullflag AS nullflag
FROM sysprogress.syscolumns_full AS c
WHERE 1=1
AND c.tbl LIKE '%%'
AND c.col LIKE '%order%'
AND c.tbl NOT LIKE 'PV_XL%'
ORDER BY table_name
,display_order
@danielleevandenbosch
Copy link
Author

this article details connections and querying the number of connections

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment