Hi,
If I have tables like this:
ImportSet1.Users
ImportSet2.Users
ImportSet3.Users
Then in my sproc I do this:
CREATE PROCEDURE [ImportSet2].[UpdateUsers]
...
UPDATE Users
set blah = 234
WHERE id = 234
This seems to work, but why? Since when did that prefix [ImportSet2] signify part of the table name? (in this case ImportSet2)