I have a question about performance for each of those two scenarios on oracle database :-
background : I develop asp.net business application for enterprise use oracle database
one:
I make one database user and use this user in the connection string of asp.net application to connect to db when doing some business logic, so if twenty end-users use this asp.net application simultaneously, then all of them are connect to db as one user
two:
I make multiple database users ( 2 - 5 users), and use them in pool of connection strings so if twenty end-users use the asp.net application simultaneously, then not all connect to db as one user
what is better