Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecpp
themeConfluence
EdmiError edmiRemoteGetBackupStatus(SdaiServerContext serverContextId,
                                      SdaiString        *resultString, 
                                      SdaiInvocationId  *edmiInvocationId); 

This function gives information about the current running backup process. The information is:

  • State of backup database thread
  • Directory and startup time of next backup (if backup is active)
  • Backup interval (if backup is active)
  • Directory, startup time and finished time of last backup finished.

Arguments

...

Return Value

...

Insert excerpt
US:_r_EDMInterface
US:_r_EDMInterface
nopaneltrue

 

Options

...

  

OptionComment
Option nameComment

 

Example

...

 

Code Block
languagecpp
 

 

See also

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
cqllabel = "model" and parent = "6062220"

 

 
Related functions: edmiRemoteBackupDatabase, edmiRemoteRestoreBackup, edmiRemoteStopBackup, edmiRemoteDeleteBackup, edmiRemoteReadBackupResults
 
Header:
#include "sdai.h"
Prototype:
EdmiError edmiRemoteGetBackupStatus(SdaiServerContext serverContextId,
                                     SdaiString        *resultString, 
                                     SdaiInvocationId  *edmiInvocationId); 
 
Arguments:
 
Arguments:

TypeNameComment
SdaiServerContext

serverContextId

A context identification, from edmiDefineServerContext

SdaiString

resultString

The result string with information about the backup thread and latest backup.

SdaiInvocationId

edmiInvocationId

Not yet used. When the <edmiInvocationId> is specified unequal NULL, the actual operation will be asynchronous and a handle (identifier) of the call will be returned in the <edmiInvocationId> argument.
This handle can be used in later operations for requesting the status (waiting, running, finished ..) and the result of the actual operation.

...