I am new to Oracle and is facing an issue while inserting 240 characters using Stored procedure. Below is the stored procedure:
procedure add_user_note(p_user_seq in varchar2,
p_author in varchar2,
p_note_text in varchar2,
o_return_code out integer) IS
BEGIN
o_return_code := RC_SUCCESS;
INSERT INTO user_notes
(sss_user_object_id, note_date, note_text, note_author)
VALUES
(p_user_seq, SysDate, p_note_text, p_author);
commit;
exception
when others then
o_return_code := SQLCODE;
END;
Using this procedure i can insert 238 characters, but my requirement is to insert 240 characters to parameter p_note_text. Any help is appreciated.