xiagao1982
xiagao1982

Reputation: 1097

Can firebird database connect to other databases using like linked server in SQL Server?

I know that SQL Server has linked server that allow it to connect to other database and execute query. Now I am using firebird. I wonder if firebird has its "linked server" to access other databases. Thanks!

Upvotes: 1

Views: 704

Answers (1)

Mark Rotteveel
Mark Rotteveel

Reputation: 108941

Firebird doesn't have a linked server feature. There is a limited method for accessing other Firebird databases (either remote or locally) using EXECUTE STATEMENT, however this only supports Firebird database, and you need to provide the data source information on each invocation.

Upvotes: 2

Related Questions