Well, you can substring starting just past the "_" then convert the
String to an int and then you will get what you are looking for
so something like, but I don't remember the exact syntax
to_number(substr(field,CHAR_AT(field,'_')+1))
So it find where the "_" is then gets the rest of the string past that number, so then you are left with just the number part. Then you convert that to a number and that equation would be in your order by.
Mark