B
Barry
The query below is set up as an Access view. When I run it from views, it
returns 77,155 records.
SELECT TOP 100 PERCENT CC.dbo.inv_mast.item_id,
CC.dbo.inv_mast.item_desc,
CC.dbo.inv_mast.delete_flag,
dbo.VBH.Item_Id AS VBH_Item_Id,
dbo.VBH.P21_Item_Desc AS VBH_Item_Desc
FROM CC.dbo.inv_mast WITH (NOLOCK) LEFT OUTER JOIN
dbo.VBH ON CC.dbo.inv_mast.item_id = dbo.VBH.Item_Id
WHERE (CC.dbo.inv_mast.delete_flag <> 'Y')
When I use this view as the record source for a drop=down box on a form, it
only returns a small portion of the records (~10%). What could be
restricting the returns on the form? Thank you for your help. Barry
returns 77,155 records.
SELECT TOP 100 PERCENT CC.dbo.inv_mast.item_id,
CC.dbo.inv_mast.item_desc,
CC.dbo.inv_mast.delete_flag,
dbo.VBH.Item_Id AS VBH_Item_Id,
dbo.VBH.P21_Item_Desc AS VBH_Item_Desc
FROM CC.dbo.inv_mast WITH (NOLOCK) LEFT OUTER JOIN
dbo.VBH ON CC.dbo.inv_mast.item_id = dbo.VBH.Item_Id
WHERE (CC.dbo.inv_mast.delete_flag <> 'Y')
When I use this view as the record source for a drop=down box on a form, it
only returns a small portion of the records (~10%). What could be
restricting the returns on the form? Thank you for your help. Barry