Difference between revisions of "PowerDNS OpenDBX Backend/Configuration/Database specific"

From Linuxnetworks
Jump to: navigation, search
(back link)
m (Reverted edits by 209.106.168.1 (Talk) to last version by Nose)
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
== MySQL ==
 
== MySQL ==
  
Supported without changes since OpenDBX 1.0.0
+
Supported without changes since OpenDBX 1.0.0.
 +
 
 +
The file below also contains trigger definitions which are necessary for "auto serial" support, but they are only available in MySQL 5 and later. If you are still using MySQL 4.x and don't want to utilize the automatically generated zone serials, you can safely remove the "CREATE TRIGGER" statements from the file before creating the database tables.
 +
 
 +
[http://www.linuxnetworks.de/pdnsodbx/download/tables-mysql.sql MySQL table definitions]
  
 
== PostgreSQL ==
 
== PostgreSQL ==
  
 
Supported without changes since OpenDBX 1.0.0
 
Supported without changes since OpenDBX 1.0.0
 +
 +
[http://www.linuxnetworks.de/pdnsodbx/download/tables-pgsql.sql PostgreSQL table definitions]
  
 
== SQLite and SQLite3 ==
 
== SQLite and SQLite3 ==
Line 14: Line 20:
 
  opendbx-host-write = /path/to/file/
 
  opendbx-host-write = /path/to/file/
 
  opendbx-database = powerdns.sqlite
 
  opendbx-database = powerdns.sqlite
 +
 +
[http://www.linuxnetworks.de/pdnsodbx/download/tables-sqlite.sql SQLite table definitions]
 +
 +
[http://www.linuxnetworks.de/pdnsodbx/download/tables-sqlite3.sql SQLite3 table definitions]
 +
 +
== Firebird/Interbase ==
 +
 +
Supported by PowerDNS 2.9.20 and OpenDBX 1.1.4 but requires to set opendbx-database to the path of the database file and doesn't support the default statement for starting transactions. Please add the following lines to your pdns.conf:
 +
 +
opendbx-database = /var/lib/firebird2/data/powerdns.gdb
 +
opendbx-sql-transactbegin = SET TRANSACTION
 +
 +
When creating the database please make sure that you call the isql tool with the parameter "-page 4096". Otherwise, you will get an error (key size exceeds implementation restriction for index "pdns_unq_domains_name") when creating the tables.
 +
 +
isql -u SYSDBA -page 4096
 +
 +
[http://www.linuxnetworks.de/pdnsodbx/download/tables-firebird.sql Firebird table definitions]
  
 
== MS SQL Server ==
 
== MS SQL Server ==
Line 22: Line 45:
 
  opendbx-host-write = MSSQL2k
 
  opendbx-host-write = MSSQL2k
 
  opendbx-sql-transactbegin = BEGIN TRANSACTION
 
  opendbx-sql-transactbegin = BEGIN TRANSACTION
 +
 +
[http://www.linuxnetworks.de/pdnsodbx/download/tables-sybase.sql MS SQL Server table definitions]
  
 
== Sybase ASE ==
 
== Sybase ASE ==
Line 30: Line 55:
 
  opendbx-host-write = SYBASE
 
  opendbx-host-write = SYBASE
 
  opendbx-sql-transactbegin = BEGIN TRANSACTION
 
  opendbx-sql-transactbegin = BEGIN TRANSACTION
 +
 +
[http://www.linuxnetworks.de/pdnsodbx/download/tables-sybase.sql Sybase table definitions]
  
 
== Oracle ==
 
== Oracle ==
Line 37: Line 64:
 
  opendbx-sql-transactbegin = SET TRANSACTION NAME 'AXFR'
 
  opendbx-sql-transactbegin = SET TRANSACTION NAME 'AXFR'
  
 
+
[http://www.linuxnetworks.de/pdnsodbx/download/tables-oracle.sql Oracle table definitions]
----
+
Back to [[PowerDNS_OpenDBX_Backend|Overview]]
+

Latest revision as of 20:23, 23 April 2010

MySQL

Supported without changes since OpenDBX 1.0.0.

The file below also contains trigger definitions which are necessary for "auto serial" support, but they are only available in MySQL 5 and later. If you are still using MySQL 4.x and don't want to utilize the automatically generated zone serials, you can safely remove the "CREATE TRIGGER" statements from the file before creating the database tables.

MySQL table definitions

PostgreSQL

Supported without changes since OpenDBX 1.0.0

PostgreSQL table definitions

SQLite and SQLite3

Supported without changes since OpenDBX 1.0.0 but requires to set opendbx-host to the path of the SQLite file (including the trailing slash or backslash, depending on your operating system) and opendbx-database to the name of the file, e.g.

opendbx-host-read = /path/to/file/
opendbx-host-write = /path/to/file/
opendbx-database = powerdns.sqlite

SQLite table definitions

SQLite3 table definitions

Firebird/Interbase

Supported by PowerDNS 2.9.20 and OpenDBX 1.1.4 but requires to set opendbx-database to the path of the database file and doesn't support the default statement for starting transactions. Please add the following lines to your pdns.conf:

opendbx-database = /var/lib/firebird2/data/powerdns.gdb
opendbx-sql-transactbegin = SET TRANSACTION

When creating the database please make sure that you call the isql tool with the parameter "-page 4096". Otherwise, you will get an error (key size exceeds implementation restriction for index "pdns_unq_domains_name") when creating the tables.

isql -u SYSDBA -page 4096

Firebird table definitions

MS SQL Server

Supported by PowerDNS 2.9.20 (with latest patch) and OpenDBX 1.1.4 by using the FreeTDS library. It uses a different scheme for host configuration (requires the name of the host section in the configuration file of the dblib client library) and doesn't support the default statement for starting transactions. Please add the following lines to your pdns.conf:

opendbx-host-read = MSSQL2k
opendbx-host-write = MSSQL2k
opendbx-sql-transactbegin = BEGIN TRANSACTION

MS SQL Server table definitions

Sybase ASE

Supported by PowerDNS 2.9.20 (with latest patch) and OpenDBX 1.1.5 by using the native Sybase ctlib or the FreeTDS library. It uses a different scheme for host configuration (requires the name of the host section in the configuration file of the ctlib client library) and doesn't support the default statement for starting transactions. Please add the following lines to your pdns.conf:

opendbx-host-read = SYBASE
opendbx-host-write = SYBASE
opendbx-sql-transactbegin = BEGIN TRANSACTION

Sybase table definitions

Oracle

Supported by PowerDNS 2.9.20 (with latest patch) and OpenDBX 1.1.6. It uses a different syntax for transactions and requires the following additional line in your pdns.conf:

opendbx-sql-transactbegin = SET TRANSACTION NAME 'AXFR'

Oracle table definitions