Oracle EXECUTE IMMEDIATE statement implements Dynamic SQL in Oracle.Before Oracle 11g, EXECUTE IMMEDIATE supported SQL string statements.
Oracle 11g allows the usage of CLOB datatypes as an argument which eradicates the constraint we faced on the length of strings when passed as an argument to Execute immediate.
But a PLSQL block written on Oracle 11g with CLOB datatypes as an argument to EXECUTE IMMEDIATE will not be executed on Oracle 10g.
Oracle 11g allows the usage of CLOB datatypes as an argument which eradicates the constraint we faced on the length of strings when passed as an argument to Execute immediate.
But a PLSQL block written on Oracle 11g with CLOB datatypes as an argument to EXECUTE IMMEDIATE will not be executed on Oracle 10g.
Comments
Post a Comment