If the table (or any SQL Server object, like a stored procedure or view) was created by someone OTHER than the DBO (database owner), you have to specify the dbo name if it's someone other than the person logged on.<br>
<br>
For our production environment, we always create the objects as the SA, who is also the dbo. With that method, you can disregard the second qualifier and access the object directly.<br>
<br>
Regards...