I have a table Part_Location which has Part_ID, Location_ID and Warehouse_ID as primary keys.
Because of barcoding, I would like to change the Location_ID from LOW VOLUME to LV. When I run the Update statement, Update Part_Location
Set Location_ID = 'LV'
Where Location_ID = 'LOW VOLUME'; I get an Oracle error,
^
Error: ERROR 24537 NOT FOUND IN ERROR.SQL (transaction rolled back).
So what I think I need to do is to create a Part_Location LV for every Part_ID that has a Part Location of LOW VOLUME.
Is there a way to do that???
Thanks,
Hillary
Because of barcoding, I would like to change the Location_ID from LOW VOLUME to LV. When I run the Update statement, Update Part_Location
Set Location_ID = 'LV'
Where Location_ID = 'LOW VOLUME'; I get an Oracle error,
^
Error: ERROR 24537 NOT FOUND IN ERROR.SQL (transaction rolled back).
So what I think I need to do is to create a Part_Location LV for every Part_ID that has a Part Location of LOW VOLUME.
Is there a way to do that???
Thanks,
Hillary