Posts
                          
                            Sort by recent activity
                          
                          
                        
                      
                      
                        "Expand Wildcards" doesn't work when selecting from synonyms
                        
                        
                        
                        
                      
                      
                      
                  
                  
                In my "Data" database I have a table:
CREATE TABLE tblXXXX
(
...
)
In my other database I have:
CREATE SYNONYM tblXXXX for Data..tblXXXX
GO
And then in this other database I try to do:
SELECT *
FRO...