Informix Error -810
-810 Cannot open file for save.
The SQL command file could not be saved. Check that your account has operating-system permission to write in the current directory and that the disk is not full.
Oninit® Troubleshooting Guidance
Reasons / Common Causes
-810 fires when a SQL command file can't be saved — per the official guidance, either the account lacks OS-level write permission in the current directory, or the disk is full.
- No write permission in the current directory, per the official guidance.
- A full disk, per the official guidance.
Solutions / Resolution
- Check operating-system permission to write in the current directory, per the official
guidance:
ls -ld . - Check that the disk isn't full, per the official guidance:
df -h .
Examples
Checking permission and disk space
$ ls -ld .
drwxr-xr-x ... someuser someuser ... .
$ df -h .
Filesystem Size Used Avail Use% Mounted on
...
Diagnostic Checks
- Check current-directory write permission and disk space, the two specific causes named by the official guidance.
Related Errors / Related Topics
- -807 — "Cannot open file for output." A closely related file-save error, in a slightly different interactive-tool context, sharing the same underlying permission/disk-space checks.
Two specific named causes — no write permission in the current directory, or a full disk.