Srini, Thanks for the response. I think some combination of Schema/DB Connection/Synonym manipulation might do the trick. I can imagine using a separate DB Connection to connect as a user with their own schema. In their schema I could create synonyms for any tables I wish to re-direct. Note that you can not create synonyms within a schema with the same name as another object in the schema, thus the separate schema. Also important to note is that stored procedures automatically run in the schema of their owner. Therefore, if I wanted to employ this technique for a stored proc, I'd have to make sure its owner used a schema in which I could create the necessary synonyms. This opens up some interesting possibilities. I can imagine creating all users with their own schemas so I would have a place to put this override-type stuff when I didn't want to automatically fall through to the dbo schema. Additionally, making sure stored procs don't automatically run in the dbo schema would open up the same possiblities there. That might allow me to get rid of the additional DB Connection altogether. This might (or might not) be a common practice, but I've still not quite gotten used to the concept of schemas as they are now used in SQL Server (as of 2005). Between the responses from both you and Chris, I think I'll be able to put together something that will suit my needs. Thanks a bunch,John