Issue 1:
<add name="Conn1" connectionString="Data Source= SID;User Id=UN;Password=Pwd" providerName="Oracle.DataAccess.Client"/>
And use Conn1(Read and Write from DB) All over the application. (for exam: all Data Access Layer).
Versus
Issue 2:
<
add name="Conn1" connectionString="Data Source= SID;User Id=UN;Password=Pwd" providerName="Oracle.DataAccess.Client"/>
<
add name="Conn2" connectionString="Data Source= SID ;User Id=UN;Password=Pwd" providerName="Oracle.DataAccess.Client" />
And use Conn1(read from DB) and Conn2(write to DB) All over the application(for exam: all Data Access Layer).
Note: Conn1 and Conn2 has same SID,UserName and Password.
My Question is Does is make sense that Issue2 will be more faster than Issue1 in performance of website. or is there any other way having Issue2 can be proved to helpful( like looking at session of database and can see info about that connection pool ????
Please discuss.
work smarter, Not Harder.
Bhavesh Patel