G
Guest
Hello,
I am planning to use three databases on the local SQL Server. DB1 will be
for App1, DB2 for App2, and DB3 will hold tables, that both, App1 and App2
need to access.
With applications I mean ASP.NET applications.
Obviously, I need in App1 and App2 at least two SqlConnection and SqlCommand
objects, one that access their respective databases, and one that will access
DB3.
Will this result in a worse performance? (The using of two SqlConnection
objects in one aspx page as example, and switching them)
Should I for better performance get rid of DB3 and add the tables there to
DB1 and DB2 ? (Thus multiplying data, but, if the performance will be much
better, it will be fine with me)
I would be thankful for any advices.
I am planning to use three databases on the local SQL Server. DB1 will be
for App1, DB2 for App2, and DB3 will hold tables, that both, App1 and App2
need to access.
With applications I mean ASP.NET applications.
Obviously, I need in App1 and App2 at least two SqlConnection and SqlCommand
objects, one that access their respective databases, and one that will access
DB3.
Will this result in a worse performance? (The using of two SqlConnection
objects in one aspx page as example, and switching them)
Should I for better performance get rid of DB3 and add the tables there to
DB1 and DB2 ? (Thus multiplying data, but, if the performance will be much
better, it will be fine with me)
I would be thankful for any advices.