I am very new to Access and SQL so apologies.
The database is in SQL Server Management and I am able to use this query just fine to join all the tables:
I created an Access file which links to the SQL Server database using the ODBC option and I am able to view the 3 tables in separate tabs but the query no longer works. I get an error "Cannot find file ...FracFocusRegistry.dbo" when I run this query:
Hopefuly someone can help me with my problem, thanks in advance.
The database is in SQL Server Management and I am able to use this query just fine to join all the tables:
Code:
SELECT *
FROM FracFocusRegistry.dbo.RegistryUpload
INNER JOIN FracFocusRegistry.dbo.RegistryUploadPurpose on RegistryUpload.pKey = RegistryUploadPurpose.pKeyRegistryUpload
INNER JOIN FracFocusRegistry.dbo.RegistryUploadIngredients on RegistryUploadPurpose.pKey = RegistryUploadIngredients.pKeyPurpose
I created an Access file which links to the SQL Server database using the ODBC option and I am able to view the 3 tables in separate tabs but the query no longer works. I get an error "Cannot find file ...FracFocusRegistry.dbo" when I run this query:
Code:
SELECT *
FROM (FracFocusRegistry.dbo.RegistryUpload
INNER JOIN FracFocusRegistry.dbo.RegistryUploadPurpose on RegistryUpload.pKey = RegistryUploadPurpose.pKeyRegistryUpload)
INNER JOIN FracFocusRegistry.dbo.RegistryUploadIngredients on RegistryUploadPurpose.pKey = RegistryUploadIngredients.pKeyPurpose
Hopefuly someone can help me with my problem, thanks in advance.