Investigating errors

The FSDATALAKEERRORLOG table can be queried to investigate active errors:
SELECT SET_TYPE,  
 OBJECT_CODE,  
 ERROR_DATE,  
 ERROR  
FROM FSDATALAKEERRORLOG  
WHERE LOGICAL_DELETE = 0  
ORDER BY ERROR_DATE DESC

The records with LOGICAL_DELETE = 0 represent active errors.

Note:  A successful Data Lake push operation marks the associated error entries as logically deleted.