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.
Oracle 11g Express Edition を使用。プロジェクトの場合、必要なすべての SQL ステートメントと出力 (これらのレポート) を含むドキュメントと、プロジェクト中に記述したすべての SQL ステートメントを含む SQL ファイルが必要です。
これらのドキュメントに報告するこれらのレポートをどのように設定しますか?
SQLPlus のスプーリング機能を利用できます
SQL>-- turn on writing query result to a file SQL>spool c:\temp\myorareport.txt; SQL>-- enter and execute your queries SQL>select * from employees; SQL>-- turn off spooling SQL>spool off;