Oracle JDBC driver provides option to do proxy authentication for multi-tier architecture design. Are there any similar/equivalent option av开发者_StackOverflow社区ailable 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:
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.)
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.)
Don't.
If you are trying to link servers, JDBC drivers won't have anything to do with that.
精彩评论