KevinSlater
Registered User.
- Local time
- Today, 02:13
- Joined
- Aug 5, 2005
- Messages
- 249
Hi,
I have the below SQL code in an append query to update a linked access table. The data is coming from a linked SQL table view (dbo_View_Prices). The problem is access pops up a message saying: "Microsoft office access cant append all records in the append query" - See attached screenshot but when I click the "yes" button it still seems to copy all the records fine, but i do not want the message promt to display. Is this possible? (another delete query is run before this table to clear the table first which runs fine)
INSERT INTO [PB-DATA-CURRENT_PRICES]
(itemcode,
cardcode,
price)
SELECT dbo_view_prices.itemcode,
dbo_view_prices.cardcode,
dbo_view_prices.price
FROM dbo_view_prices;
I have the below SQL code in an append query to update a linked access table. The data is coming from a linked SQL table view (dbo_View_Prices). The problem is access pops up a message saying: "Microsoft office access cant append all records in the append query" - See attached screenshot but when I click the "yes" button it still seems to copy all the records fine, but i do not want the message promt to display. Is this possible? (another delete query is run before this table to clear the table first which runs fine)
INSERT INTO [PB-DATA-CURRENT_PRICES]
(itemcode,
cardcode,
price)
SELECT dbo_view_prices.itemcode,
dbo_view_prices.cardcode,
dbo_view_prices.price
FROM dbo_view_prices;