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>

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
