salut à tous

j'ai créé une vue. mais quant je l'execute tantot c'est bon tantot j'ai le message delai d'attente dépassé.

voici ma vue
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
 
CREATE VIEW dbo.vue
AS
SELECT    Prescription.Npresc, Prescription.DatPresc, Prescription.NumAy, ProduitPH.Desig, [User].CodeUser, [User].NomUser, ProduitPH.PUVente, 
                      Lign_Presc.QteP, ProduitPH.PUVente * Lign_Presc.QteP AS mont
FROM         Prescription INNER JOIN
                      Lign_Presc ON Prescription.Npresc = Lign_Presc.Npresc INNER JOIN
                      ProduitPH ON Lign_Presc.CdPd = ProduitPH.CdPd INNER JOIN
                      [User] ON Prescription.CodeUser = [User].CodeUser INNER JOIN
                      Detail_Vte ON ProduitPH.RefProd = Detail_Vte.RefProd
Que dois je faire?
merci d'avance.