Commit c041d673 authored by Kirill Smelkov's avatar Kirill Smelkov Committed by Kirill Smelkov

mdb-astextplain: list tables in alphabetical order

так при перевставе таблицы в access она останется на своём месте в
выводе.

Такая-же проблема есть и у строчек - при изменении строки, они пока
смещаются в выводе совсем в другое место.
parent 2ece0d3a
......@@ -4,8 +4,8 @@
mdbfile="$1"
tabfile=`mktemp -t mdb-astextplain.XXXXXX`
# list tables without temporary ones
mdb-tables -1 "$mdbfile" | grep -v "^~TMP" >$tabfile
# list tables without temporary ones in lex order
mdb-tables -1 "$mdbfile" | grep -v "^~TMP" | sort >$tabfile
# for each table dump its schema and content
for tab in `cat $tabfile` ; do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment