是否可以查询 Sybase table 并加入 Oracle 维度 table?
Is it possible to query off a Sybase table and join with an Oracle dimension table?
这样的事情可能吗?
SELECT s.*, o.*
FROM SybaseServer.Database.Schema.Table s
LEFT JOIN OracleServer.Schema.Table o
on s.SyabseID = o.OracleID
您可以安装 Oracle 透明网关以允许 Oracle 查询对 Sybase ASE 服务器使用 dB link。
这样的事情可能吗?
SELECT s.*, o.*
FROM SybaseServer.Database.Schema.Table s
LEFT JOIN OracleServer.Schema.Table o
on s.SyabseID = o.OracleID
您可以安装 Oracle 透明网关以允许 Oracle 查询对 Sybase ASE 服务器使用 dB link。