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.
MSSQL Server と Oracle のデータベースのデータを SSH を使用してエクスポートして接続するにはどうすればよいですか?
コマンドを入力して、データをテキスト ファイルなどにエクスポートすることはできますか?
乾杯
オラクルの場合、sqlplusを使用してデータベースに接続し、データをクエリすることでこれを実現します。結果は、spoolコマンドを使用してファイルに書き込むことができます
sqlplus user/passwd spool exp.txt select * from bla sppol off quit