I have access right now only to the Run SQL in the admin console and would like to add quite a large shipping weight table rather than typing it in manually. I have not been able to find the database name that I need to add this.
Additionally, I would need to know the correct way to format the rest.
1) Low Weight Name
2) High Weight Name
3) Shipping Methods (do I use the ID or the text value name??)
4) Values (are they contained like '1.99' or just 1.99)
Some examples:
INSERT [dbo].ShippingWeight(LowWeight,HighWeight,ShippingMetho d1,ShippingMethod2,) values(0.0000,0.1000,1.99,8.99);
INSERT [dbo].ShippingWeight(LowWeight,HighWeight,15,16,) values('0.0000','0.1000','1.99','8.99');