Here's the basic insert statement I have (see below). I talked to a developer of the 3rd party application and he said "On to the ARITHABORT problem - "SET ARITHABORT ON" needs to be executed on the connection being used. I'm not familiar enough with Access, can that be done in your scenario?"
But now I'm really confused as I thought the default was "ON"??
insert into db

rders
(OrderNumber,StoreID,CustomerID,OrderDate,ShipFirstName,ShipLastName,
ShipCompany,ShipAddress1,ShipAddress2,ShipAddress3,ShipCity,
ShipStateProvinceCode,ShipPostalCode,ShipCountryCode,ShipEmail,ShipPhone,
ShipFax,BillFirstName,BillLastName,BillCompany,BillAddress1,BillAddress2,
BillAddress3,BillCity,
BillStateProvinceCode,BillPostalCode,BillCountryCode,BillEmail,BillPhone,
BillFax,CustomerComments,RequestedShipping,Total,Notes,Status,IsManual,
OrderNumberPrefix,OrderNumberPostfix,OnlineLastModified,eBayOrderID,
eBayOrderCreated,eBayBuyerID,eBayBuyerFeedbackScore,
eBayBuyerFeedbackPrivate,eBayPaymentStatus,
eBayPaymentMethod,eBayCheckoutStatus,eBayCompleteStatus,eBayLeftFeedback,
eBayLeftFeedbackType,eBayLeftFeedbackComments,eBayReceivedFeedbackType,
eBayReceivedFeedbackComments,eBayMyEbayStatus,eBaySellerPaidStatus,
eBayAllowEdit,eBaySellingManagerRecord,PayPalAddressStatus,
PayPalTransactionID,
MarketWorksUserNumber,MarketWorksInvoiceNumber,MarketWorksBuyerNumber,
MivaBatchID,MarketWorksParcelID,osCommerceCustomerID,osCommerceStatusCode,
YahooOrderID,ProStoresStatus,ProStoresConfirmation,ChannelAdvisorReportID,
ChannelAdvisorResellerID,ChannelAdvisorDistributionCenter,
InfopiaCustomerID,InfopiaStatus,AmazonOrderID,
AmazonStatusDocumentID,AmazonCommission,XCartStatus,OrderMotionShipmentID)
Values
(107299,4,82214,'01/06/2009',"Jane","Smith","","100 Main Street","","","Cranbrook","British Columbia","V1C6W1","CA","janesmith@hotmail.com","555-555-5555","","Jane",
"Smith","","500 Main Street","","","Cranbrook","British Columbia","V1C6W1","CA","janesmith@hotmail.com","555-555-5555","","",
"USPS Global Airmail",57.35,"","",0,"","",'01/06/2009',"0",'01/06/2009',"",0,0,0,0,0,0,0,0,"",0,"",0,-1,0,0,0,"",0,"",0,0,0,0,0,"","",
"",0,"","",0,"","","0",0,"",0)
I did a ton of copying and pasting of field names for the statement and triple counted all of the fields and values to make sure everything matched up. It shouldn't be a misspelling of one of the fields. Not sure what else it could be and I'm having a horrible time troubleshooting as all fields are required in order for the insert statement to be executed.