sqlpeoplesoftpeoplesoft-app-engine

Is there a size limit for the SQL text in a PeopleSoft App Engine SQL Step/Action?


I'm getting the following error: AeSymResolveStatement [775] ... Meta-SQL error at or near position 34338 in statement (108,512). The SQL statement itself is over 40,000 chars long, hence the question.

The DB is oracle. Running on Tools 8.49.24.


Solution

  • There is no such limit.

    You can confirm this yourself by creating an SQL like:

    select 'x' from PS_INSTALLATION where 
          1 = 1 and 
          1 = 1 and
          1 = 1 and
          1 = 1 and
          /* ... copy paste '1 = 1 and' 90000 times or so times more */
          1 = 1
    

    Although it makes pside quite slow, It saves and validates just fine.