The defintion about the Deprecated features (More than two-part column name) is that
A query used a 3-part or 4-part name in the column list. Change the query to use the standard-compliant 2-part names. Occurs once per compilation.
May I ask for some example for this feature?
And since I have some code that use some function of sql server, for example:
Select xml.Item.value('[something]', 'varchar(20)') AS something from xml
Do the part xml.Item.value(...) regard as 3-part or 4-part name in the column list ??
And since i just look through the store procedures in my database manually to search for this deprecated feature, are there any other way (such as query) to find out those things in my database?
Thanks a lot