Hi @meyerovb ,
> What's the default sort of a bcp export?
Quote from an old thread, use "queryout" rather than "out" with a query ordering by the clustered index. Then, if you don't change the indexed values, you can load using the ORDER hint.
bcp "SELECT * FROM <table> ORDER BY <clustered index column(s)>" queryout <filename> -T –N
Please also check if this old thread Does bcp out maintain row order while exporting into a data file could help you.
If the response is helpful, please click "Accept Answer" and upvote it, thank you.