Export data - SQL Inserts

Bert Gombos

Member²
These options should be useful:
- 'order by option'
- set deferrable foreign key constraints to dereffed. (when this option selected, commit after delete command should be removed.)

Thanks.
 
I have added this to the list of enhancement requests. The "order by" option is already available as a trick:

In the "Where clause" field, add the order by clause after the actual where clause expression. If you don't use a where clause, specify a dummy expression. For example:

Code:
1 = 1 order by deptno desc
 
Back
Top