Will inserting null or the string literal “null” into Oracle number datatype be sufficient to cause ORA-01401: inserted value too large for column?
Will inserting null or the string literal null into Oracle number datatype be sufficient
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Inserting null will not cause it, but “null” may cause it if you e.g. have defined the column to be of
varchar(2)as in this case the column has be defined to hold at most 2 characters.[ Update ] I did miss the “number data type” in the question. In this case if you insert “null” you should get an error about it nor being a number.