- October 17, 2007
- 764
- 59
- Home Country
- Germany
- Thread starter
- #21
AW: Latest SVN - TVServer DB exceptions
ok... i get it now a bit... it is deleting the "notify" column... then it tries this again -> 1st fail... then tries to drop "pcrPid" but there is a dependency on "IX_TuningDetail_idChannel" -> 2nd fail... and on deleting "name" there is a dependency on IX_Channel_IsTV -> 3rd fail...
why is this just happening on my installations? should fail on all or none
Code:
[SetupTv(1)]: Exec SQL: ALTER TABLE Program DROP COLUMN notify
.
.
.
Exec SQL: ALTER TABLE Program DROP COLUMN notify
[SetupTv(1)]: ********* SQL statement failed! *********
[SetupTv(1)]: ********* Error reason: Fehler bei ALTER TABLE DROP COLUMN, da die 'notify'-Spalte in der 'Program'-Tabelle nicht vorhanden ist.
[SetupTv(1)]: ********* Error code: 4924, Line: 1 *********
[SetupTv(1)]: Exec SQL: ALTER TABLE TuningDetail DROP COLUMN pcrPid
[SetupTv(1)]: ********* SQL statement failed! *********
[SetupTv(1)]: ********* Error reason: Das Index-Objekt 'IX_TuningDetail_idChannel' ist vom Spalte-Objekt 'pcrPid' abhängig.
Fehler bei ALTER TABLE DROP COLUMN pcrPid, da mindestens ein Objekt auf diese Spalte zugreift.
[SetupTv(1)]: ********* Error code: 5074, Line: 1 *********
[SetupTv(1)]: Exec SQL: ALTER TABLE TuningDetail DROP COLUMN videoPid
[SetupTv(1)]: Exec SQL: ALTER TABLE TuningDetail DROP COLUMN audioPid
[SetupTv(1)]: Exec SQL: UPDATE Version SET versionNumber=56
.
.
.
[SetupTv(1)]: Exec SQL: ALTER TABLE channel DROP COLUMN "name"
[SetupTv(1)]: ********* SQL statement failed! *********
[SetupTv(1)]: ********* Error reason: Das Index-Objekt 'IX_Channel_IsTV' ist vom Spalte-Objekt 'name' abhängig.
Fehler bei ALTER TABLE DROP COLUMN name, da mindestens ein Objekt auf diese Spalte zugreift.
[SetupTv(1)]: ********* Error code: 5074, Line: 1 *********
[SetupTv(1)]: Exec SQL: ALTER TABLE channel DROP COLUMN "freetoair"
[SetupTv(1)]: Exec SQL: UPDATE Version SET versionNumber=57
ok... i get it now a bit... it is deleting the "notify" column... then it tries this again -> 1st fail... then tries to drop "pcrPid" but there is a dependency on "IX_TuningDetail_idChannel" -> 2nd fail... and on deleting "name" there is a dependency on IX_Channel_IsTV -> 3rd fail...
why is this just happening on my installations? should fail on all or none