New Member
Post by yogishs on Oct 24, 2016 19:57:15 GMT 5.5
I have just installed Dotsphere Case Manager, I want to be able to change the default schema used by Dotsphere Case Manager UI, for database queries. How do I do that?
|
Post by Admin on Oct 24, 2016 20:59:56 GMT 5.5
The value of default schema is stored in the table DSGLOBALPROPERTIES. The DSGLOBALPROPERTIES table stores the global settings for Dotsphere Case Manager in a name/value pair format. Execute the following SQL statement to see the value of the schema
SELECT NAME,VALUE FROM DSGLOBALPROPERTIES WHERE NAME='SCHEMANAME';
If the value is not correct it, update it
UPDATE DSGLOBALPROPERTIES SET VALUE='<YOUR SCHEMA>' WHERE NAME='SCHEMANAME';
|
New Member
Post by yogishs on Oct 25, 2016 15:41:15 GMT 5.5
Thanks for the reply that worked.
|