 |
 |
 |
Command line options |
Open file
dbview.exe file.dbf
Fix Dbf files with incorrect size
dbview.exe file.dbf /FIX | dbview.exe *.dbf /FIX
Pack Dbf files
dbview.exe file.dbf /PACK | dbview.exe *.dbf /PACK
Start without Open dialog
dbview.exe /NOOPEN
Run in read only mode:
dbview.exe file.dbf /RO
dbview.exe /RO
Run in shared mode
dbview.exe file.dbf /SHARED
dbview.exe /SHARED
Append/Import records from DBF or TXT files
append from dbf:
dbview.exe /APPEND:file1.dbf,file2.dbf
append from text file:
dbview.exe /APPEND:file1.dbf,file2.txt /SEP;
or dbview.exe /APPEND:file1.dbf,file2.txt /SEP; /ZAP
where /SEP: - use ';' as delimiter, /ZAP - remove all records before append.
Export records
dbview.exe file1.dbf /EXPORT:outfile.ext [options]
options:
/SEP set delimiter (txt/csv format only)
/SKIPD skip deleted records
/SKIPM skip memo fields
/FILTER - set filter
dbview.exe sample.dbf /EXPORT:sample.txt /FILTER:filter.txt
wher filter file format (each line):
field name:value
The command export records from file.dbf to file.ext, where ext - (txt, csv, sql, xml, xls, html, rtf)
examples:
export dbf to txt format:
dbview.exe file1.dbf /EXPORT:file2.txt /SEP:
where : delimiter
or
dbview.exe file1.dbf /EXPORT:file2.txt /SEP: /HDR
/HDR - for put the fields names in first line.
dbview.exe sample.dbf /EXPORT:sample.txt /COLUMNS:NAME,STREET /SEPTAB
where: export only columns NAME and STREET, TAB delimiter
export to dbf III
dbview.exe file1.dbf /EXPORT:file2.dbf /DBASE3
export to visual foxpro
dbview.exe file1.dbf /EXPORT:file2.dbf /VFP
export dbf to sql format:
dbview.exe file1.dbf /EXPORT:file2.sql
export dbf to xls format:
dbview.exe file1.dbf /EXPORT:file2.xls
Use OEM characters
dbview.exe file.dbf /OEM
dbview.exe /OEM
Use ANSI characters
dbview.exe file.dbf /ANSI
dbview.exe /ANSI
Auto open last file and show last record in Record View mode
dbview.exe /GOLASTRECORD
|