I'm trying to load a table dump exported with fastexport, but i get the following error:
The length of: PREFIX in row: 1 was greater than defined.
Defined: 3, Received: 3072
Here are my fastexport and fastload scripts:
.LOGTABLE dbase.some;
.LOGON some/some,some;
.BEGIN EXPORT;
.EXPORT OUTFILE "fexp.data" FORMAT FASTLOAD;
SELECT * from dbase.tablename;
.END EXPORT;
.LOGOFF;and the fastload script:
↧