What does *= mean in a Select statement?

  • 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

  • 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

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • 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