Hi,
I recently put an Access database onto SQL Server. One of my forms, which has a query as its source, is not allowing any rows to be added on the SQL Server. It does allow row addition on my local server, and the table itself allows row addition on SQL Server.
I seem to remember reading that the Inner Join statement does not work on SQL Server, but can't find any info now.
In case it helps, my SQL is:
When I remove any reference to the 2nd table (tblVendor), the query allows rows to be added.
Is there anything I am doing that does not work on SQL Server?
Thanks,
Lori
I recently put an Access database onto SQL Server. One of my forms, which has a query as its source, is not allowing any rows to be added on the SQL Server. It does allow row addition on my local server, and the table itself allows row addition on SQL Server.
I seem to remember reading that the Inner Join statement does not work on SQL Server, but can't find any info now.
In case it helps, my SQL is:
Code:
SELECT tblInventory.Item, tblInventory.ItemNumber, tblInventory.ItemLongDesc, tblInventory.VendorNumber, tblInventory.VendorItemNumber, tblInventory.VendorColor, tblInventory.Source, tblInventory.NetPrice, tblVendor.VendorName
FROM tblVendor INNER JOIN tblInventory ON tblVendor.VendorNumber = tblInventory.VendorNumber
ORDER BY tblInventory.Item, tblInventory.ItemNumber, tblInventory.VendorNumber;
When I remove any reference to the 2nd table (tblVendor), the query allows rows to be added.
Is there anything I am doing that does not work on SQL Server?
Thanks,
Lori