> Is there any a way to make one user connected to SAPDB with > more than two > application ? > > Example: > USER1 using Application 1 connected to SAPDB with DBNAME TEST1 > USER1 using Application 1 connected to SAPDB with DBNAME TEST2
You can open several connections to arbitrary SAP DB databases in one application. With ODBC, JDBC, Python etc., simply create a new connection object/handle. With the C Precompiler, use the CONNECT statement <http://www.sapdb.org/7.4/htmhelp/28/eb166f8725c549b425870a262027ed/frameset.htm> Or was the question if one SQL user can be connected several times to the same database? In this case, create the user with NOT EXCLUSIVE <http://www.sapdb.org/7.4/htmhelp/48/f0daa5225811d3a97d00a0c9449261/frameset.htm> Daniel Dittmar -- Daniel Dittmar SAP DB, SAP Labs Berlin [EMAIL PROTECTED] http://www.sapdb.org/ _______________________________________________ sapdb.general mailing list [EMAIL PROTECTED] http://listserv.sap.com/mailman/listinfo/sapdb.general
