I want to connect to an oracle database located on another host using sqlplus. This page suggested adding an item on my tnsnames to conenct to that database
local_SID =
(DESCRIPTION =
(ADDRESS = (PROTOCOL= TCP)(Host= hostname.network)(Port= 1521))
(CONNECT_DATA = (SID = remote_SID))
)
Run Code Online (Sandbox Code Playgroud)
and then use that in sqlplus
sqlplus user/pass@local_SID
Run Code Online (Sandbox Code Playgroud)
However, in my circumstances modifying the local tnsnames is not possible. Is it possible to connect to a remote database just by using sqlplus argument without having to …
我正在使用 Oracle 数据库开发此应用程序。我没有记录数据模型,但现在审计员想要我的数据库的实体关系图。有很多表,在 visio 中手动创建 ERD 是不可能的。
我知道 Toad 有 Database > Export ER Diagram 选项,但由于布局丑陋且难以编辑,结果并不完全呈现。您知道可以创建可展示的 ER 图的替代方法吗?如果生成的图表是可编辑的并且该工具是免费的,那么最好。