Error
Error Code:
735
SAP S/4HANA Error 735: SQL Disk Plan Recompilation
Description
Error 735, ERR_SQL_RECOMPILE_WITH_DISK, indicates that the underlying database requires a query recompilation to generate an optimal disk execution plan. This typically occurs when the database optimizer detects that an existing query plan is no longer efficient or valid, often due to changes in data, schema, or system statistics.
Error Message
ERR_SQL_RECOMPILE_WITH_DISK: Query recompilation is required for disk plan generation
Known Causes
3 known causesSchema or Table Structure Changes
Modifications to database tables, indexes, or views involved in the query can invalidate existing execution plans, necessitating a recompile.
Significant Data Volume Changes
Large inserts, updates, or deletions can drastically alter data distribution, making previously optimized query plans inefficient.
Stale Database Statistics
If database statistics are not regularly updated, the optimizer may base its decisions on outdated information, triggering recompilation.
Solutions
Coming SoonGeneral Troubleshooting Tips
- Check the error message carefully for specific details
- Review recent changes that might have caused the error
- Search for the exact error code in the official documentation
- Check log files for additional context
- Try restarting the application or service