I have two server. One with sql server and another with dbf. I would like to access form MSSQL server to dbf server. But i haven't access to this server. How can i managed that?

Thanks

Julien

link|improve this question
Which server don't you have access to? – John Gardeniers Mar 17 '10 at 7:15
feedback

1 Answer

up vote 0 down vote accepted

I do not know if it is possible to link these servers together, I would suspect not. So, here's how I would accomplish what you are asking.

In VB.NET or C#:

Step 1 - Query both databases

Query both databases and dump the data from each database into two separate datatables.

Step 2 - Combine and/or process the data

Depending on your requirements, loop through data from each database and combine the data into a third datatable or process the as data as necessary

Step 3 - Write the results

Now, depending on your requirements, you can write data back to both databases (one at a time, each using a different database connection)

link|improve this answer
It's what i do now. I use Linq to join my two server. Thanks Julien – Julien Garcia Mar 17 '10 at 12:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.