SQL default schema

Specifies the default SQL schema.

SQL statements can be created without specifying the schema that an object is located in. The objects in the SQL statement are said to be unqualified. For example, in the SQL statement:

SELECT *
  FROM QCUSTCDT

QCUSTCDT is an unqualified object. The schema that is used to locate the table name QCUSTCDT is called the implicit qualifier.

Notes:

See Schema list for information on how to add other schemas to the schema list.