--start 10000 --stop 1
I want to store in reverse order...
but does not seem to support?
no!
I do not know where the control point is in the source code.
Do not need to reproduce.
[options] start > stop
@stamparm
--start 1 --stop 10000 --where="ORDER BY <some_id_column> DESC"
Problem in (general) implementation is that lots of DBMSes don't have regular LIMIT m, n functionality, like in (e.g.) MySQL. Therefore, something called "pivoted dumping" is used where to reach the offset m you have to know the first m values (which is straightforward in sequential dumping order). In reverse order, like you want, would require reading of all those m values before so sqlmap would read those rows once more in backwards
Done with latest revision, but consider it unstable (on non-MySQL DBMSes) because of already written reasons
thanks you!