Home Forums SQL Server 7,2000 Administration Error 15023: “User already exists in current database” RE: Error 15023: “User already exists in current database”

  • Run this query in the database:

    select u.name,o.name

    from sysobjects o, sysusers u

    where o.uid = u.uid

    order by u.name

    Greg

    Greg