What table replace Sysxlogins

  • In SQL 2005 what table have replace sysxlogins in the previous version of SQL?  Is it sys.syslogins? I had a script which perform a function base on the column xstatus & srvid in sysxlogins But sys.syslogins doesn't have those columns unless status(sys.syslogins) is the same as xstatus(sysxlogins)

  • sysxlogins has always been undocumented. you get compatibility views only on on documented catalog tables ( and sometimes not even that).

    you should change your code to use "sys.server_principals"


    * Noel

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply