November 7, 2013 at 1:16 am
I'm no genius, and I've just taken over a System that has many more stored procedures than I like. Some of these stored procedures contain the following line in a SELECT statement, which SQL SERVER 2012 does NOT like - I have no idea what it means. Can anyone help?
And BgnDate *= ProcPer
November 7, 2013 at 1:18 am
Old style outer join, deprecated since SQL 2005 and not allowed at all in SQL 2012. You'll need to replace them with the appropriate LEFT OUTER/RIGHT OUTER join.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 7, 2013 at 1:23 am
Thank you so much! You are the master!
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply