kev510
Programmer
- Jul 12, 2006
- 61
Hello everyone.
Recently, our company added on a new server so that we can split the data created & used by our web pages between the two servers.
Lets call them server1 and server2. Server1 must have table1 and server2 must have table2. I'm looking for the best way to retrieve and write data to both servers, using our web pages that are running from server1.
One way I thought of is creating a query pointing to the server2 table, but someone said that it's an inefficient way to go about the situation (the data in table1 and table2 are very large).
They instead suggested that I should set a variable with server information in global.asa, then just use strConnection to open that server each time I use the table.
What do you think will be the best way for this to be done?
Thank you for your time!!
Recently, our company added on a new server so that we can split the data created & used by our web pages between the two servers.
Lets call them server1 and server2. Server1 must have table1 and server2 must have table2. I'm looking for the best way to retrieve and write data to both servers, using our web pages that are running from server1.
One way I thought of is creating a query pointing to the server2 table, but someone said that it's an inefficient way to go about the situation (the data in table1 and table2 are very large).
They instead suggested that I should set a variable with server information in global.asa, then just use strConnection to open that server each time I use the table.
What do you think will be the best way for this to be done?
Thank you for your time!!