bonjour,
j'arrive pas à executer ma procedure stockée
ALTER PROCEDURE [dbo].[InsertAppel]
@poste BIGINT,
@destination BIGINT,
@tel BIGINT,
@debut DATETIME,
@fin DATETIME,
@typeDebut BIGINT,
@typeFin BIGINT,
@duree BIGINT
AS
BEGIN
BEGIN Tran
INSERT INTO appel
(
id_Poste,
id_Telephone,
id_Destinataire,
date_debut,
date_fin,
type_jour_debut,
type_jour_fin,
duree
)
VALUES(
@poste,
@tel,
@destination,
@debut,
@fin,
@typeDebut,
@typeFin,
@duree
)
Select identifiant from appel
where id_Poste=@poste
and id_Telephone=@tel
and id_Destinataire=@destination
and date_debut=@debut
and date_fin=@fin
COMMIT TRAN

quand je click sur ctrl+F5 le resultat est Commande(s) réussie(s).
et quand je click sur F5 le resultat est requete terminée avec erreur voici l'erreur:
Msg 208, Niveau 16, État 6, Procédure InsertAppel, Ligne 40
Nom d'objet 'dbo.InsertAppel' non valide.

merci