📅  最后修改于: 2022-03-11 14:56:46.560000             🧑  作者: Mango
#error is due to the fact that you declare a string to be of a fixed length (say 20), and at some point in your code you assign it a value whose length exceeds what you declared.
#for example:
myString VARCHAR2(20);
myString :='abcdefghijklmnopqrstuvwxyz'; --length 26
#will fire such an error