Home Forums SQL Server 7,2000 T-SQL Could not complete cursor operation 16958 RE: Could not complete cursor operation 16958

  • declare calendar_cursor insensitive cursor for

    select calendar, descr

    from otherDatabase.otherUser.cclcald with (nolock)

    Looks like your using a dynamic cursor - getting data from another database. Check the compatibility levels of the databases (Db Properties / Options). They should be the same.