Sunplus3051是什么?

来源:百度知道 编辑:UC知道 时间:2024/06/27 12:33:10

是苹果采用的一种处理器:以下有一些关于它的参数:
-----a.sql------
set head off;
set show off;
set trims on;
set feed off;
set term off;

spool aa.log ;
@test.sql 21212;
spool off;
exit;

------test.sql------
select &1 from dual ;
select current_date from dual;
select &1 from dual ;

执行:sqlplus ???/???@??? @a.sql

more aa.log
old 1: select &1 from dual
new 1: select 21212 from dual

21212

01-NOV-06
old 1: select &1 from dual
new 1: select 21212 from dual

21212