Getting ORA-01861 - Literal does not match format string on SQLPlus Only
问题 I have a PL/SQL procedure that takes the following arguments/parameters Procedure create_test(mode_in in number, value1_in in number, value2_in in number, value3_in in varchar2); I am using the following pl/sql block to call and execute the procedure DECLARE lv_mode NUMBER; lv_value1_in NUMBER; lv_value2_in NUMBER; lv_value3 VARCHAR2(3); BEGIN lv_mode := 1; lv_value1_in := 1; lv_value2_in := 1; lv_value3_in := 'ES'; CREATE_TEST( mode_in => lv_mode , value1_in => lv_value1_in, value2_in => lv