Skip to content

Commit

Permalink
0003216: Tibero Database Dialect
Browse files Browse the repository at this point in the history
  • Loading branch information
jumpmind-josh committed Sep 8, 2017
1 parent 8dcbcca commit 50558bb
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
20 changes: 19 additions & 1 deletion symmetric-assemble/src/asciidoc/appendix/databases.ad
Expand Up @@ -208,7 +208,15 @@ by database.
|Y
|Y
|Y


|Tibero
|6 and above
|Y
|Y
|Y
|Y
|Y
|Y
|====


Expand Down Expand Up @@ -381,6 +389,15 @@ When locating a table, SymmetricDS uses the default catalog and schema unless th
|
|Y
|select current_schema()


|Tibero
|
|N
|
|Y
|select sys_context('USERENV', 'CURRENT_SCHEMA') from dual

|===

include::ignite.ad[]
Expand All @@ -403,3 +420,4 @@ include::sqllite.ad[]
include::sybase-ase.ad[]
include::redshift.ad[]
include::sqlite.ad[]
include::tibero.ad[]
14 changes: 14 additions & 0 deletions symmetric-assemble/src/asciidoc/appendix/tibero.ad
@@ -0,0 +1,14 @@

=== Tibero
This section describes Tibero specific SymmetricDS details.

==== Database Permissions
The SymmetricDS database user generally needs privileges for connecting and creating tables (including indexes), triggers, sequences,
and procedures (including packages and functions). The following is an example of the needed grant statements:

[source, SQL]
GRANT CONNECT TO SYMMETRIC;
GRANT RESOURCE TO SYMMETRIC;
GRANT CREATE ANY TRIGGER TO SYMMETRIC;
GRANT EXECUTE ON UTL_RAW TO SYMMETRIC;

0 comments on commit 50558bb

Please sign in to comment.