-1

Do you know how to set SQLCA connection parameters in order to connect my pb 12.6 app to a linked server on SQL Server 2012?

We already connect to a SQL Server database but we also need to connect to a linked server on this database (customer requirement)

Any hints?

Thanks

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459

1 Answers1

0

Linked server happens at the server side. No change to login. To access the tables you will need to use the link name and database name in sql. To make it easier I would create views in your database that refer to the linked database table. Then you can use the view name in your app.

Roland Smith
  • 957
  • 4
  • 7