
Resync method using Oracle OLEDB provider
(already posted once in microsoft.public.data.ado)
Hi all,
Any clues on how to make the Resync method work against Oracle?
When using the Resync command, I am getting the error "Multiple-step
operation generated errors. Check each status value." with the msdaora
provider, and the error "Data provider or other service returned and E_FAIL
status" with the oraOLEDB.Oracle provider.
The initial query is something like
SELECT a.Asset_Key, a.Customer_Key, a.Seq_No, c.Customer_Name
FROM asset_access a, customers c
WHERE a.Customer_Key = c.Customer_Key
AND a.Asset_Key = 3033
The "Resync Command" property of the recordset I am using is like
SELECT a.Asset_Key, a.Customer_Key, a.Seq_No, c.Customer_Name
FROM asset_access a, customers c
WHERE a.Customer_Key = c.Customer_Key
AND a.Asset_Key = ? AND a.Customer_Key = ? AND a.Seq_No = ?
where Asset_Key, Customer_Key, and Seq_No are the primary keys of the
asset_access table.
The "Unique Table" property of the recordset is set to "asset_access"
Any help is appreciated.
Rob M