Inspecting OpenEdge metadata with SQL
Inspecting OpenEdge metadata with SQL OpenEdge’s virtual system tables (VSTs) provide excellent statistics that help in database development and maintenance. This article shows a few SQL statements that help reveal information about the database. SQL to query metadata Show all VST tables that contain metadata. SELECT * FROM sysprogress.systables WHERE tbl like ‘sys%’; Find columns […]