Jonny, вы спасли мне день.
Мой вариант для всех таблиц:
X++:
static void Job14(Args _args)
{
SqldataDictionary dict = new SqldataDictionary();
Dictionary dictionary = new Dictionary();
TableId tableId;
SysOperationProgress progress;
;
progress = new SysOperationProgress();
progress.setTotal(dictionary.tableCnt());
tableId = dictionary.tableNext(0);
while (tableId)
{
progress.setText(dictionary.tableName(tableId));
dict.tableSynchronize(tableId, true, true);
tableId = dictionary.tableNext(tableId);
progress.incCount();
}
}