I'm trying to sort a data table with a data view by a Int64 field. The result I am getting is sorted in chunks. Sort of like:

625
626
627
628
9876301
9876302
9876303
629
630
631

Each "Chunk" is usually at least a couple hundred records, not just two or three. Anybody have anyt thoughts?

Dim dvSortedView As DataView = New _
DataView(m_Dataset.Tables("PMXVendorInfo_AL"))

' Sort the DataView by CG_VEND_NBR
dvSortedView.Sort = "CG_VEND_NBR"