Hello,
Check your declarations and delete reiterated declaration one.
If you get this error, there are some multiple declarations for the identifications like below code.
DECLARE
zip_code INTEGER;
Zip_Code INTEGER; -- duplicate identifier, despite Z/z case difference
BEGIN
zip_code := 90120; -- raises error here because of duplicate identifiers
END;
/
DECLARE
zip_code INTEGER;
Zip_Code INTEGER; -- duplicate identifier, despite Z/z case difference
BEGIN
zip_code := 90120; -- raises error here because of duplicate identifiers
END;
/
Check your declarations and delete reiterated declaration one.
Loves,
Comments
Post a Comment