For example, if I go to the master databse and put:
select *
from product
it changes it to:
select *
from [dbo].[product]
Neither of which will work. Also, in adventureWorks, if I say qualify names, it removes the dbo and changes to Production.
select *
from [Production].[Product]
I would prefer it to not remove existing values (though I would like the underlining thing to tell me it is wrong though, and if that was right clickable, that would rock!)
select *
from product
it changes it to:
select *
from [dbo].[product]
Neither of which will work. Also, in adventureWorks, if I say qualify names, it removes the dbo and changes to Production.
select *
from [Production].[Product]
I would prefer it to not remove existing values (though I would like the underlining thing to tell me it is wrong though, and if that was right clickable, that would rock!)