cross-server

Cross-server SQL

I want to port data from one server's database to another server's database. The databases are both on a different mssql 2005 server. Replication is probably not an option since the destination database is generated from scratch on a [time interval] basis. Preferebly I would do something like insert * from db1/table1 into db2/table2 wh...

Rails Sessions over servers

Hello, I'd like to have some rails apps over different servers sharing the same session. I can do it within the same server but don't know if it is possible to share over different servers. Anyone already did or knows how to do it? Thanks ...

Problem calling stored procedure from another stored procedure via classic ASP

We have a classic ASP application that simply works and we have been loathe to modify the code lest we invoke the wrath of some long-dead Greek gods. We recently had the requirement to add a feature to an application. The feature implementation is really just a database operation requires minimal change to the UI. I changed the UI and...

How to: Cross-Site posting and redirection in ASP.NET webforms

Scenario: The task I have at hand is to enable a single-signon solution between different organizations/websites. I start as an authenticated user on one organization's website, convert specific information into an Xml document, encrypt the document with triple des, and send that over as a post variable to the second organizations login...

MySQL Cross Server Select Query

Hi, Is it possible to write a cross server select query using MySQL Client. Basically the setup is like follows. Server IP       Database ---------       -------- 1.2.3.4       Test a.b.c.d       Test I want to write a query that will select rows from a table in the Test Database on 1.2.3.4 and inse...

Debugging JSON in GWT (Cross Server)

Hi all, How do I pass the jsonObj from the javascript code in getJson to the java code handleJsonResponse. If my syntax is correct, what do I do with a JavaScriptObject? I know that the jsonObj contains valid data because alert(jsonObj.ResultSet.totalResultsAvailable) returns a large number :) --- but some how it's not getting passed c...

PostgreSQL cross server query?

Is there a way that I might query a database located on "Server 2" and get my data in "Server 1" ? That is return a set of records from a remote server to my local one. PS: Not cross database query on same server because I know how to do that with dblink. Update: great ty. http://www.postgresonline.com/journal/index.php?/archives/44-...

Is there a way to put several SQL to diffrente servers inside the same transaction?

In my system we do action, and for reporting sake we log that action on another server (star schema if it interests). Obviously I need the action updates/inserts be in the same transaction as the logging. So, is there a way to include two different sqls to two different servers in the same transaction? Right now I manage that in the code...