Oracle
 sql >> Baza danych >  >> RDS >> Oracle

Oracle Trispool tylko końcowe spacje (nie wiodące spacje)

Chyba jesteś po

set serveroutput on size 100000 format wrapped

jeśli rozumiem twoje pytanie.

Jeśli to zrobię:

set serveroutput on size 1000000

begin
  dbms_output.put_line('no indent');
  dbms_output.put_line('   indent');
end;
/

Wyjścia SQL*Plus:

no indent
   indent

Jeśli jednak to zrobię

set serveroutput on size 1000000 format truncated

begin
  dbms_output.put_line('no indent');
  dbms_output.put_line('   indent');
end;
/

Wyjścia SQL*Plus:

no indent
   indent

Musisz set trimspool on w celu wyeliminowania spacji do eol .




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. ORA 00918- Niejednoznacznie zdefiniowany błąd w kolumnie

  2. Oracle JDBC PreparedStatement Ignoruj ​​końcowe spacje

  3. Odtwórz tabelę Oracle DUAL

  4. Problem z parametrami w Oracle RefCursor

  5. CSV w programie SQL Developer…