Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
rborda
Starting Member
2 Posts |
Posted - 2004-08-27 : 13:45:31
|
| Having a front end user & the data residing on SQL Server.Users need to process online transactions. I am familiar with theSQL staments to delete and insert, but I can not understandhow to do the following before I started placing my tables on SQL:On the front end when several users selected loans for their pools,they were stored temporarily in a table, then all I had to do wasINSERT INTO Master(Loan) SELECT Loan FROM TempLoans;Since I moved my Master tables to SQL, and my TempLoans tablestill resides on the front end user. If I use a pass-through querywith the following statement:INSERT INTO Master SELECT Loan FROM TempLoans; Fails because it can't recognize TempLoans within SQL Server.Thus, how is batch update handled by SQL Server for this particularscenario?Thanks in advance for the feedback |
|
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2004-08-27 : 13:49:09
|
| so you have tabels on different servers?use 4 name naming convention (i now it has a proper name): select * from server.database.user.tableGo with the flow & have fun! Else fight the flow :) |
 |
|
|
rborda
Starting Member
2 Posts |
Posted - 2004-08-27 : 16:24:37
|
| Front End is Access and back end is SQL Server |
 |
|
|
|
|
|