oracle - Columns displayed in incorrect order when select * from table in sql developer -
when use select * statement in sql developer, order of columns returned not order defined in table. if view table in connections pane, under columns tab columns in correct order , have correct column id assigned. when else runs query on table using different pc, columns displayed in correct order. leads me believe setting in sql developer. if i'm correct, how can change this.
ex. columns in order according column id in columns tab. left right order displayed when select * performed on table other pc:
1. message_id 2. source_id 3. event_id 4. when_created 5. container_id 6. container_type 7. wave_number 8. location 9. dest_location 10. item_name 11. batch_number 12. barcode 13. container_quantity 14. cube_volume 15. order_id 16. pick_status 17. pick_put_location 18. item_quantity 19. picked_quantity 20. required_quantity 21. mod_date 22. user_id however, when select * table in sql developer on pc, order appear left right:
1. wave_number 2. location 3. item_name 4. batch_number 5. barcode 6. container_id 7. container_quantity 8. cube_volume 9. order_id 10. pick_status 11. pick_put_location 12. item_quantity 13. picked_quantity 14. required_quantity 15. mod_date 16. user_id 17. message_id 18. source_id 19. event_id 20. when_created 21. container_type 22. dest_location
right-click on column header , select 'delete persisted settings'
i'm guessing @ point or else on machine re-ordered columns.
this reset stored order in sql developer.

Comments
Post a Comment