Hello,
I need to update the Description Column in the Item table on my server from the Futura table.
I have written the below code and it continues to fail. from what I can see it should all be good but it is not.
Here is the code.
I get several failures in the query but they should all be good.
tblimItem.Description is a Invalid column name as is Futura.Description
also get an error of incalid object name 'futura' "On tblimItem.Item" comes out as Invalid Column Name and finally futura.item says the multipart Inentifier could not be found.
Can you help.
I need to update the Description Column in the Item table on my server from the Futura table.
I have written the below code and it continues to fail. from what I can see it should all be good but it is not.
Here is the code.
SQL:
UPDATE tblimItem
SET [tblimItem.Description] = [Futura.Description]
FROM tblimItem
INNER JOIN Futura
ON (tblimItem.Item = Futura.Item)
I get several failures in the query but they should all be good.
tblimItem.Description is a Invalid column name as is Futura.Description
also get an error of incalid object name 'futura' "On tblimItem.Item" comes out as Invalid Column Name and finally futura.item says the multipart Inentifier could not be found.
Can you help.