Hello,
I'm wondering how its possible to allow shared connections for SERVICE=<sid>XDB and other services!?
in Mike Ault's Blog: DISPATCH the DISPATCHERS Parameter!
is written
Although shared server is enabled, this configuration permits only sessions that connect to the XDB service to use shared server. To enable shared server for regular database sessions (for submitting SQL statements), you must add an additional dispatcher configuration, or replace the existing configuration with one that is not specific to XDB
I would need to add additional services and also keep <sid>XDB.
this config allowes only XDB:
ALTER SYSTEM set DISPATCHERS = '(PROTOCOL=TCP)(DISPATCHERS=1)(SESSIONS=400)(SERVICE=<sid>XDB)' scope=both;
this allowes shared server for regular database sessions (for submitting SQL statements) but not for XDB:
ALTER SYSTEM set DISPATCHERS = '(PROTOCOL=TCP)(DISPATCHERS=1)(SESSIONS=400)' scope=both;
I would like to have both.
Any links and help appreciated