Skip to main content
Version: Next

New log file

New log file -> Function result

ParameterTypeDescription
Function resultText🡐Full pathname of closed log file

Description

Preliminary note: This command only works with 4D Server. It can only be executed via the Execute on server command or in a stored procedure.

The New log file command closes the current log file, renames it and creates a new one with the same name in the same location as the previous one. This command is meant to be used for setting up a backup system using a logical mirror (see the section “Setting up a logical mirror” in the 4D Server Reference Manual).

The command returns the full pathname (access path + name) of the log file being closed (called the “segment”). This file is stored in the same location as the current log file (specified on the Configuration page in the Backup theme of the Preferences). The command does not carry out any processing (compression, segmentation) on the saved file. No dialog box appears.

The file is renamed with the current backup numbers of the database and of the log file, as shown in the following example: DatabaseName[BackupNum-LogBackupNum].journal. For instance:

  • If the MyDatabase.4DD database has been saved 4 times, the last backup file will be named MyDatabase[0004].4BK. The name of the first “segment” of the log file will therefore be MyDatabase[0004-0001].journal.
  • If the MyDatabase.4DD database has been saved 3 times and the log file has been saved 5 times since, the name of the 6th backup of the log file will be MyDatabase[0003-0006].journal.

Error management

In the event of an error, the command generates a code that can be intercepted using the ON ERR CALL command.

See also

_o_INTEGRATE LOG FILE