SQL error 2714

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ddtpmyra
    Contributor
    • Jun 2008
    • 333

    SQL error 2714

    I have job scheduler inside the MS SQL the job sometimes and sometimes fail. How can I avoid this?

    ERROR MSG:
    There is object name 'run_job' in the database. SQL STATE: 42S01 ERROR 2714.
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    The error is that the object you're trying to create already exists in the database. Either don't recreate it or check for its existence and drop it before creating it again.

    Comment

    • ddtpmyra
      Contributor
      • Jun 2008
      • 333

      #3
      thanks Rabbit, what I found there's another procedure that runs that using the same table name.

      Comment

      Working...