Kbase P57744: proutil dump with output directory errors 6133, 6128, 6253
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  03/08/2007 |
|
Status: Verified
FACT(s) (Environment):
Progress 8.X
Progress 9.X
OpenEdge 10.X
SYMPTOM(s):
proutil dump with output directory fails with errors 6133 6128 6253
Invalid directory or device name [Directory path], errno = 2. (6133) when doing binary dump
Failed to write out section header. (6128) when doing binary dump
Binary Dump failed. (6253)
CAUSE:
The output directory does not exist or is not included in the command.
FIX:
The general syntax to perform a binary dump of a table is:
proutil db-name -C dump [ owner-name.]table-name directory [ -index num ]
Attempting to execute the following command would generate the above error if the C:\TargetDirectory does not exist:
proutil sports2000 -C dump Customer C:\TargetDirectory
Also, attempting to execute the following command would generate the above error because the target directory is not specified:
proutil sports2000 -C dump Customer
Therefore, make sure to specify the target directory and to ensure that the target directory exists and is not write protected. For example, the following command would binary dump the Customer data into a file named Customer.bd in the current directory:
proutil sports2000 -C dump Customer .