bonjour,
j'ai conçu un MCD de ma BD à l'aide de PowerDesigner 9.
j'ai généré le scripte de création de ma base de donnée pour SQL Server 2000.
quand j l'execute sous SQL Server 2005 Express ( à l'aide de Microsoft SQL Server Management Studio Express) les erreur du genre :

"Msg 3728, Niveau 16, État 1, Ligne 8
'FK_COLLABOR_APPARTIEN_ENTITE' is not a constraint.
Msg 3727, Niveau 16, État 0, Ligne 8
Could not drop constraint. See previous errors.
Msg 3728, Niveau 16, État 1, Ligne 3
'FK_COURRIER_ARRIVEE_ORGANISM' is not a constraint.
Msg 3727, Niveau 16, État 0, Ligne 3
Could not drop constraint. See previous errors.
Msg 3728, Niveau 16, État 1, Ligne 3
'FK_COURRIER_ARRIVER_PERSONNE' is not a constraint.
Msg 3727, Niveau 16, État 0, Ligne 3
Could not drop constraint. See previous errors.
..."
se générent.

un bout du long script :
"alter table COLLABORATEUR
drop constraint FK_COLLABOR_APPARTIEN_ENTITE
go


alter table COURRIER
drop constraint FK_COURRIER_ARRIVEE_ORGANISM
go


alter table COURRIER
drop constraint FK_COURRIER_ARRIVER_PERSONNE
go


alter table COURRIER
drop constraint FK_COURRIER_CREER_COLLABOR
go
..."
c'est là où il m'indique l'erreur.
comment puis je la corriger, sachant qu'il s'agit d'un script généré automatiquement ( et sans erreurs) avec powerdesigner.?