If you mean that your code refers to something like:
Code:
SELECT name FROM master..sysdatabases
The "master" is a database, the "sysdatabases" is a table, and the ".." implies either your own user or more likely dbo.
SQL Server has never allowed the use of tablename..columname in any circumstances that I remember.
-PatP