Search Results

0
votes
0answers
16 views

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 ques …
-1
votes

Oracle SQL Optimization: SQL Query taking very long time

Get rid of the DISTINCT. …
1
vote

Using SQL to search for a set in a one-to-many relationship

This is an old sql trick (works in Oracle, at least): SELECT roleid FROM role_permission t1 WHERE NOT EXISTS ( (SELECT permissionid FROM role_permission t2 WHERE t2.roleid = t1.role …