Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 SSH 连接导出 MSSQL Server 和 Oracle 数据库中的数据?
我是否可以键入一些命令并将数据导出到例如文本文件中?
干杯
对于 oracle,您可以通过使用 sqlplus 连接到数据库并查询数据来实现此目的。可以使用 spool 命令将结果写入文件
sqlplus user/passwd spool exp.txt select * from bla sppol off quit