I have a SQL2000 server which has a FoxPro linked server named Fox_link. I am trying to execute queries against these foxpro tables from Query Analyzer but I can't seem to make them work. Books Online indicates that I need a fully qualified table name including the linked server name, catalog, schema and table name. The values of these are as follows:
ServerName: Fox_link
Catalog: h:\Data
Schema: NULL
TableName: TCDates
Can anyone help me with a simple update syntax that would work on this linked server? Here's a sample of something that obviously won't work:
Update Fox_link.h:\Data.NULL.TCDates
Set DateFrom = '01/01/01'
Thank you!
ServerName: Fox_link
Catalog: h:\Data
Schema: NULL
TableName: TCDates
Can anyone help me with a simple update syntax that would work on this linked server? Here's a sample of something that obviously won't work:
Update Fox_link.h:\Data.NULL.TCDates
Set DateFrom = '01/01/01'
Thank you!