lower_case_table_names specifies whether object names are case-sensitive for storage and comparison.
Note
At present, this variable does not take effect.
| Attribute | Description |
|---|---|
| Type | int |
| Default value | 1 |
| Value range | |
| Applicable scope | Global |
| Involved in serialization | Yes |
| Modifiable | You can set the variable when you use the CREATE TENANT statement to create a tenant. After the tenant is created, you cannot modify the variable by executing SQL statements. |
The following example shows how to set the lower_case_table_names variable to 0 when you use the CREATE TENANT statement to create a tenant:
CREATE TENANT IF NOT EXISTS t1 zone_list = ('zone1'), primary_zone = 'zone1', resource_pool_list = ('pool1') SET ob_compatibility_mode = 'ORACLE',lower_case_table_names = 0;
For information about the CREATE TENANT statement, see CREATE TENANT.