I am defining a variable in “userdata.sql”,its contents are
SET DEFINE ON;
DEFINE name = Gaurav
DEFINE today =10/10/2011 --variable that contain date value.
==================================================================================
I am creating another file called xyz.sql
@userdata.sql
DECLARE
v_date DATE;
v_name varchar2(10);
BEGIN
v_date:='&today';
v_name:='&name';
dbms_output.put_line('name is '||v_name);
dbms_output.put_line('date is '||v_date);
end;
On execution of xyz.sql its throwing an error
ora-01840 input value not long enough for date format.
Please suggest the solution to it.
The RDBMS i am using is ORACLE
Change this line:
to:
i.e. specify the date format (it could be ‘MM/DD/YYYY’ instead).