Hi indradeo,
This error means you have referenced table tblFiles that doesn't actually exist in database or the table exists, but in different schema.
So verify it. Use like below.
SELECT * FROM [DatabaseName].[SchemaName].[TableName]
Example:
SELECT * FROM [Northwind].[dbo].[Customers]