简体   繁体   中英

Is possible to do proxy authentication using SQL Server JDBC driver?

Oracle JDBC driver provides option to do proxy authentication for multi-tier architecture design. Are there any similar/equivalent option available with SQL Server JDBC driver?

I think that you're presuming SQL Server can do multi-tier architecture .

If you're running SQL Server, there are three options for distributing databases:

  1. Create separate servers that contain different tables. In this scenario, the tables that have to be shared use linked database servers. (The authentication for linked servers does not come from the client, but from the server's/link's configuration.)

  2. Create separate servers that contain the same tables. In this scenario, any updates on one server will have to be replicated to the other servers. (This could also be done via triggers across the linked servers, but that slows things down.)

  3. Don't.

If you are trying to link servers, JDBC drivers won't have anything to do with that.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM