Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The reason of the problem:

...

Paste code macro
java.sql.SQLException: The object 'U_AO_A406ED_SCHEDUL1453239299' is dependent on column 'NAME'. at net.sourceforge.jtds.jdbc.SQLDiagnostic.addDiagnostic(SQLDiagnostic.java:372) 


In newest version of TSP we had to remove one constraint from database. Your stack trace shows that for some reason this constraint was not removed from your database.


To resolve this issue you should run SQL query manually:

...

Paste code macro
ALTER TABLE [jiradbschema].[AO_A406ED_SCHEDULED_ISSUE] DROP CONSTRAINT [U_AO_A406ED_SCHEDUL1453239299]

...