在存储过程begin中用查询用到to_date(),一直报“ORA-01861: 文字与格式字符串不匹配”。
我的存储
create or replace procedure p_bill_statics(start_date in varchar2,end_date in varchar2) is --1 cursor cur is select distinct(bill_id) as bill_id from t_print_log where print_time>=to_date(start_date,'yyyy-mm-dd') and print_time<=to_date(end_date,'yyyy-mm-dd'); begin select count(1) into v_cnt from t_receipt_data rd inner join t_account_info ac on rd.account_code=ac.account_code inner join t_org_info oi on ac.org_code = oi.org_code where rd.type_code=v_type_cur.type_code and ac.org_code=v_cur_init.org_code and rd.import_time>=to_date(start_date,'yyyy-mm-dd') and rd.import_time<=to_date(end_date,'yyyy-mm-dd') ;--2 end;
入参start_date 的值是2017-05-01,在1处使用正常,但运行到2出的时候就报“ORA-01861: 文字与格式字符串不匹配”。经过研究发现在存储过程begin体中需要将start_date和end_date再赋给新定义的变量,因为有可能是oracle内部把它当做了某些处理,正确使用方法:
create or replace procedure p_bill_statics(start_date in varchar2,end_date in varchar2) is --1 cursor cur is select distinct(bill_id) as bill_id from t_print_log where print_time>=to_date(start_date,'yyyy-mm-dd') and print_time<=to_date(end_date,'yyyy-mm-dd'); v_start varchar2(30);--3 v_end varchar2(30); begin select count(1) into v_cnt from t_receipt_data rd inner join t_account_info ac on rd.account_code=ac.account_code inner join t_org_info oi on ac.org_code = oi.org_code where rd.type_code=v_type_cur.type_code and ac.org_code=v_cur_init.org_code and rd.import_time>=to_date(v_start,'yyyy-mm-dd') and rd.import_time<=to_date(v_end,'yyyy-mm-dd');--2 end;
相关推荐
它会调用`ora-env`文件初始化环境,然后使用`exp`命令导出指定用户(例如`test/test`)的数据到`/backup`目录,文件名为当前日期,如`xx1210.dmp`,并生成对应的日志文件。 **二、磁带备份** 完成数据库导出后,...
检查是否有严重错误(如ORA-600、ORA-1578)或可能导致问题的事件,以便及时处理。 4. **备份文件检查**:确认备份文件的大小和生成日期,通过`export`和`imp`工具验证备份的完整性和可用性。如果备份无法正常导入...
检查其中是否有如`ORA-600`、`ORA-1578`等严重错误,这些错误可能指示数据库的运行问题。 4. **备份文件检查**:检查备份文件的大小和生成日期,以及使用`exp`和`imp`工具验证备份的完整性和可恢复性。`exp`用于...
这里假设`tnsnames.ora`文件存储在`C:\orcl`目录下。 - **NLS_LANG**:设置Oracle客户端的语言环境。例如: ```plaintext 变量名: NLS_LANG 变量值: SIMPLIFIEDCHINESE_CHINA.ZHS16GBK ``` 这个设置将客户端...
- **注意事项**: 邮件通知对于备份和恢复过程非常重要。 #### 六、检查Oracle数据库性能 ##### 6.1 检查数据库的等待事件 - **命令**: `$ select event, total_waits, time_waited from v$system_event order by ...
所有变量都是局部变量,为了使得定义的函数中可以使用外部变量,使用global语句。而你要将该变量的作用范围限制在该函数之内,使用static语句。 $g_var = 1 ; // 全局范围 function test() { global $g_var; // 这样...