Overview of how ORDS is deployed, and some new PowerPoint slides demonstrating the AUTO features versus coding your own RESTful Services.
How to get Oracle SQLcl to generate the DDL for an Oracle USER account.
Eight minute video demonstration of Oracle SQL Developer’s PL/SQL Debugger.
LIQUIBASE does ‘Source Control for your Database.’ It’s an Open Source project that allows you to capture changelogs for your database, including Oracle. What we are doing: Extending the support for Oracle to include all schema object types Building an interface directly into SQLcl via a new LB (LIQUIBASE) command Generating the changelogs for you and managing rollbacks plus the ordering for the changelogs to avoid database object dependency errors. A Quick Demo I said…
Why won’t the code helpers in Oracle SQL Developer work with my SQL or PL/SQL?
Oracle REST Data Services version 18.4 and your bug fixes are now available.
Oracle SQL Developer version 18.4 is now available!
How to quickly add free, public data to your Oracle Database using Oracle SQL Developer.
How to export your Oracle REST Data Services (ORDS) modules to PL/SQL scripts/files that you can put into source control or just backup.
Today’s question: Does ORDS support PUT/POST with Array or Cursor as part of the payload? I need to call a procedure with 1 IN parameter defined as Array or Cursor (for a list of IDs). The answer is Yes, and I’ll show with the AUTO Feature. The Underlying Code: 2065659597674234f2a8013_000005 Executing FORUMS_PLSQL_TABLE.INS_C() via POST First, let’s Auto PL/SQL Enable the Package. 2065659597674234f2a8013_000006 Second, let’s call the package. 2065659597674234f2a8013_000007 So in my POST I passed a…