Plparse
PL/SQL Parser written in PL/SQL
Install / Use
/learn @s-oravec/PlparseREADME
plparse
PL/SQL Parser - only toplevel AST node types, but good enoug for me.
Install scripts
You can install either from some privileged deployer user or from within "target" schema.
set_current_schema
Use this script to change current_schema
SQL> @set_current_schema <target_schema>
install
Installs module in current_schema. (see set_current_schema). Can be installed as
- public - grants required privileges on module API to
PUBLIC(see/module/api/grant_public.sql)
SQL> @install public
- peer - sometimes you may want to use package only by schema, where it is deployed - then install it as peer package
SQL> @install peer
uninstall
Drops all objects created by install.
SQL> @uninstall
Use plparse from different schemas
When you want to use plparse from other schemas, you have basically 2 options
- either reference objects granted to
PUBLICwith qualified name (<schema>.<object>) - or create synonyms and simplify everything (upgrades, move to other schema, use other plparse package, ...)
These scripts will help you with latter, by either creating or dropping synonyms for plparse package API in that schema.
create_synonyms
Creates depenency from reference owner.
SQL> conn <some_schema>
SQL> @create_synonyms <schema_where_plparse_is_installed>
drop_synonyms
Removes depenency from reference owner.
SQL> conn <some_schema>
SQL> @drop_synonyms <schema_where_plparse_is_installed>
Related Skills
feishu-drive
351.4k|
things-mac
351.4kManage Things 3 via the `things` CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database)
clawhub
351.4kUse the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com
postkit
PostgreSQL-native identity, configuration, metering, and job queues. SQL functions that work with any language or driver
