v_products_barcode
7.34995E+11
7.34995E+11
7.34995E+11
7.34995E+11
7.34995E+11
7.34995E+11
7.34995E+11
7.34995E+11
Jimme,

I had the same issue with UPC codes, it's a pain.

Here is how I solved it.

I added UPC before every code in the database, so instead of this -> 697666007421 in the db it was this -> UPC697666007421

Then i used php to remove the UPC when it's displayed on the front end.

PHP Code:
str_replace("UPC","",$upc['products_upc']) 
It's a workaround but solves that issue.