on 2010 May 14 9:44 PM
How do I see what options are set for the current database?
The database is supposed to have this option set: set option non_keywords = 'merge';
How can I see if this is actually set?
Querying the catalog view SYSOPTION (or SYSOPTIONS, which gives you a slightly different result) will tell you what the permanent settings are for a particular option - note that there may exist multiple settings for this option, one for PUBLIC certainly and then one for each user who has set their permanent setting as well.
In order to determine what the actual value is for a connection - and to handle the fact that temporary changes to options are not written to the catalog table ISYSOPTION - you need to use one of:
the function CONNECTION_PROPERTY, as in SELECT CONNECTION_PROPERTY ( 'non_keywords' );
the system procedure sa_conn_info()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
70 | |
11 | |
10 | |
10 | |
9 | |
9 | |
6 | |
6 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.