Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/OraOpenSource/oos-utils
Common PL/SQL utility scripts
https://github.com/OraOpenSource/oos-utils
oracle plsql
Last synced: 5 days ago
JSON representation
Common PL/SQL utility scripts
- Host: GitHub
- URL: https://github.com/OraOpenSource/oos-utils
- Owner: OraOpenSource
- License: mit
- Created: 2015-04-23T13:22:41.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-08-11T11:32:13.000Z (over 4 years ago)
- Last Synced: 2024-06-11T02:01:08.265Z (5 months ago)
- Topics: oracle, plsql
- Language: PLSQL
- Homepage:
- Size: 493 KB
- Stars: 200
- Watchers: 40
- Forks: 74
- Open Issues: 92
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-orclapex - OOS Utils - Common PL/SQL utility scripts / API - by OraOpenSource (Tools / Closed Source)
README
# OOS Utils
In most applications they're a common set of methods that developers consistently have to re-write. Things such as `is_number(p_string)`, `download_file(p_blob)`, etc. Not only does this add development time to projects, each iteration may have slight differences. The worst is that some of which even have bugs!
Enter OOS Utils. **OOS Utils provides a common set of PL/SQL utility methods that remove the need for the creation of common methods in each application**. Check out the docs below to see the complete list of methods OOS Utils provides. Never re-develop common methods again!
## Documentation
- [Read The Docs](http://oos-utils.readthedocs.org/en/latest/README/) which displays it in a nice, searchable format
- MD files in the [docs](/docs) folder## Install
For quick install of the latest version of OOS Utils using [SQLcl](http://www.oracle.com/technetwork/developer-tools/sqlcl/downloads/index.html) run the following in SQLcl:
```sql
@https://observant-message.glitch.me/oos-utils/latest/oos_utils_install.sql
```If you want to download a copy and install from a local file go to the [Install](/install) folder for instructions and installation file(s).
## Development
If you have a recommendations, please add your idea and/or snippet examples as an [issue](https://github.com/OraOpenSource/oos-utils/issues).
Starting with `1.1.0` all PRs should be the appropriate release branch rather than master.
### Build
If you are working on OOS Utils and want to test your build go to the [build](/build) folder for instructions.