SQL Plus在不需要时修剪尾随空格

时间:2012-06-20 11:48:06

标签: oracle sqlplus

我的pl / sql代码写在一个文件中:

create or replace proc p1 as
begin
  null; <here i have lots of trailing spaces>
end;
/

当我在sqlplus中执行脚本时,程序p1不包含第4行中的空格。

我如何保留这些空格?

提前致谢

1 个答案:

答案 0 :(得分:0)

尝试:

set trim off
set trims off