Hey everyone. I've linke an access database and I am able to query the tables like so:SELECT *FROM QFinity...tblEmployees
I can do that to all the tables, however, I'd like to create a view to this linked database. Is this possible? I have a more complex query I'd like to run:SELECT dbo_evaluations.eval_id, dbo_evaluations.quality_date, dbo_eval_questions.statusFROM QFinity...dbo_evaluations INNER JOIN dbo_eval_questions ON dbo_evaluations.eval_id = dbo_eval_questions.eval_id;
I get the error "Msg 208, Level 16, State 1, Line 1Invalid object name 'dbo_evaluations'."I'm afraid I've reached the limit of my know how concerning sql server 2005... I think I read that I need to create a view? But I can't figure out how to do that.Thanks for any help!DaveWindows XP, Office XP