I have a need to make a remote connection through a DSL line (getting about 16k/s) to a SQL Express 2005 instance much faster.
I think I can do it by having a SQL Express 2005 instance on the client's local machine and have it be a cached version of the data on the server.
I'm planning to allow changes to the remote server only and then require the user pull down updates from it occasionally. It's not ideal, but it'll work.
So, does SQL Express support me querying across the network something like:
INSERT INTO local.dbo.users (id, username, email, timestamp_modified)
SELECT remote.dbo.users(id, username, email, timestamp_modified)
WHERE remote.dbo.users.timestamp_modified > LAST MODIFIED