You can use Web Services which is a very good option. What problem are you
having with Linked Servers? If possible, that would probably be the easiest
thing to do. Or, depending on your needs, run a DTS package to move the
data to SQL Server and query from there.
However, you can query both db's, and just use different data adapters to
update your different datasources. I'd probably go with this or using a Web
Service if I couldn't get the linked server to work.
HTH,
Bill
Chris said:
Hi,
I have a progress database on a unix server and a database on sql 2000
server. I have related data in both databases. Example primary keys in one
database are foreign keys in the other database. I need to query both
databases at the same with single nested queries. I tried creating a link
server in sql 2000 to the progress database... no luck there. I have no
ideas. Can I use web services (soap) to get the data from the progress
database? What would you recommend.