我正在使用此命令过滤掉该行set timing on;
type filea.sql | findstr /v "^set timing on;$"
我得到的输出如下:
whenever sqlerror exit 9;
grant select on exfdsfds;
exit;
filea.sql 的内容是:
set timing on;
whenever sqlerror exit 9;
grant select on exfdsfds;
timing on; cool
exit;
为什么要删除timing on; cool
?需要对命令进行哪些修改才能避免这种结果?