Integration: Relational Databases

SQL Server

Overview | Environments | Databases | Tables | Constraints | Datatypes | Queries | Updates | Example


Databases

The CREATE DATABASE statement is used to declare a SQL Server database within an Omnidex Environment File. This statement can either be issued directly, or it can be extracted from SQL Server using the EXTRACT statement as discussed in the previous section.

The CREATE DATABASE statement must include the DSN or File DSN that identifies the SQL Server database, as well as the SQL Server user and password.

create database                "SIMPLE"
 type                          sqlserver
 dsn                           "simple"
 user                          "simple"
 password                      "simple"
 index_directory               "idx"
 in                            "simple.xml";

SQL Server Security

Omnidex provides three methods of supporting SQL Server security.

One of these approaches must be used to allow connections to the SQL Server database. Administrators should insure that the user and password provides access to all of the database objects referenced in the Omnidex Environment Files.

Prev | Next

Additional Resources

See also: