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.
我将我的 pl/sql 代码写在一个文件中:
create or replace proc p1 as begin null; <here i have lots of trailing spaces> end; /
当我在 sqlplus 中执行脚本时,过程 p1 不包括第 4 行中的空格。
我怎样才能保留这些空间?
提前致谢
尝试:
set trim off set trims off