Subject | RE: [firebird-support] Re: Firebird on Windows |
---|---|
Author | Thomas Steinmaurer |
Post date | 2004-03-22T12:19:51Z |
> Yes, I commit the inserts regularly.Use gfix in combination with the -w switch, whereas
> How can I set "forced writes = ON" on database level ?
sync = FORCED WRITES ON
async = FORCED WRITES OFF
For example:
gfix w sync user SYSDBA password masterkey <your_database_path>
To check whether forced writes is on or off, check the database
header page by using gstat -h.
For example:
gstat h user SYSDBA password masterkey <your_database_path>
If there is a line
Attributes force write
in the output stream, then forced writes is ON, otherwise it's OFF.
HTH,
Thomas