Hello All:
What is the maximum field and variable length in PL/SQL? I have the following code that I suspect may be giving me a problem:
vSqlStatement varchar2(8000) ;
vSelect varchar2(1000) ;
vFrom1 varchar2(2000) ;
vFrom2 varchar2(2000) ;
vFrom3 varchar2(2000) ;
vWhere varchar2(500) ;
vOrderBy varchar2(500) ;
where vSqlStatement is the concatenation of all of the other statements as follows:
vSqlStatement := vSelect || vFrom1 || vFrom2 || vFrom3 || vWhere || vOrderBy;
Thanks!
What is the maximum field and variable length in PL/SQL? I have the following code that I suspect may be giving me a problem:
vSqlStatement varchar2(8000) ;
vSelect varchar2(1000) ;
vFrom1 varchar2(2000) ;
vFrom2 varchar2(2000) ;
vFrom3 varchar2(2000) ;
vWhere varchar2(500) ;
vOrderBy varchar2(500) ;
where vSqlStatement is the concatenation of all of the other statements as follows:
vSqlStatement := vSelect || vFrom1 || vFrom2 || vFrom3 || vWhere || vOrderBy;
Thanks!