Oracle Database

About

Tabulify supports the Oracle relational database as a system

If you don't have any knowledge of Tabulify, you can start with the Learning Guide.

Connection

How to create an Oracle connection?

Version

The driver version used is the 23.7.0.25.01

Parameters

Quoted identifier is disabled by default

We disable quoted identifier by setting by default the NAME_QUOTING_ENABLED parameter to false for Oracle.

Why ?

  • Because it requires you to put always the quotation mark even in a SQL SELECT which is crazy.
  • You can't write select cat_id, you need to write select "cat_id"
  • Why it requires it? The quotes are part of the name and are not an escape feature, meaning that when you get the table name, you don't get cat_id, you get "cat_id"

If you name a schema object using a quoted identifier, then you must use the double quotation marks whenever you refer to that object.

Type

See Oracle Data Type Support




Related HowTo
How to create an Oracle connection?

This howto shows you how to create a connection to an oracle database. An oracle connection supports : all common connection attributes Uri, user, password ... and all relational connection...
How to start and use the Oracle database in Tabulify

This howto shows you how to: start an oracle database with the oracle docker service and use the @oracle default howto oracle connection in tabul command. howto docker services are an easy...
Oracle - How to execute an Anonymous Code Block

In Oracle, an anonymous code block can be created with the DECLARE/BEGIN/END block. The next steps will be using the howto...

Task Runner