[EMAIL PROTECTED] wrote: > Is there a way to increase the maximum allowed number of connections > per user? In web applications I currently run, all users share the > same database user, as they are authenticated by a "Users" table of > the database, not by a regular database user account. > Thanks for any comments or sugestions.
CREATE USER ... NOT EXCLUSIVE will allow ANY number of connections to the database using the same database-user-name. The number of parallel sessions is limited to the configuration/installation-parameter MAXUSERTASKS, whose default is 50. Elke SAP Labs Berlin _______________________________________________ sapdb.general mailing list [EMAIL PROTECTED] http://listserv.sap.com/mailman/listinfo/sapdb.general
