Telefonino.net network
 
| HOMEPAGE | INDICE FORUM | REGOLAMENTO | ::. NEI PREFERITI .:: | RSS Forum | RSS News | NEWS web | NEWS software |
| PUBBLICITA' | | ARTICOLI | WIN XP | VISTA | WIN 7 | REGISTRI | SOFTWARE | MANUALI | RECENSIONI | LINUX | HUMOR | HARDWARE | DOWNLOAD | | CERCA nel FORUM » |

Torna indietro   WinTricks Forum > Software > Programmazione

Notices

Rispondi
 
Strumenti discussione
Vecchio 27-02-2009, 01.42.07   #1
Fast-M
Senior Member
 
Registrato: 02-08-2003
Loc.: Lamezia Terme
Messaggi: 344
Fast-M promette bene
Stored Procedure SqlServer

Salve, ho dei problemi con una stored procedure in t-sql di sql-server.
Ho bisogno di eseguire una query che mi selezioni un campo 'IDUser' di una tabella in base alla presenza di questo in un gruppo di valori interi.
Questa è la stored procerure:

USE [BSPF_GLOB]
GO
/****** Object: StoredProcedure [dbo].[spLeaveRequestListSub1] Script Date: 02/27/2009 00:28:56 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
ALTER PROC [dbo].[spLeaveRequestListSub1]
-- Add the parameters for the stored procedure here
@IdUser int,
@IdResponsible int,
@IdLeaveType int,
@LeaFromDate varchar(14),
@LeaToDate varchar(14),
@IdStatus int,
@IdApprovalManager int,
@idGroupUsers varchar(1000)
AS
BEGIN

SET NOCOUNT ON;
Declare @DateStart datetime
Declare @DateEnd datetime

IF @IdUser = -1
SET @IdUser = 0

IF @IdResponsible = -1
SET @IdResponsible = 0

IF @IdLeaveType = -1
SET @IdLeaveType = 0

IF @LeaFromDate = ''
SET @LeaFromDate = '19000202000000'

IF @LeaToDate = ''
SET @LeaToDate = '21001231000000'

IF @IdStatus = -1
SET @IdStatus = 0

IF @IdApprovalManager = -1

SET @IdApprovalManager = 0
SET @DateStart = dbo.StringToData(@LeaFromDate)
SET @DateEnd = dbo.StringToData(@LeaToDate)

SELECT Ler.IDLeaveRequest,
Ler.IDUser,
Ler.IDLeaveType,
dbo.DataToString(Ler.leaFromDate) as leaFromDate,
dbo.DataToString(Ler.leaTODate) as leaToDate,
Ler.leaAmount,
Ler.leaAmountBaseUnit,
Ler.leaReason,
Ler.leaContactAddress,
Ler.leaContactPhone,
Ler.leaApproval,
isnull(Ler.IDApprovalManager, -1) as IDApprovalManager,
Ler.IDStatus,
Ler.leaManagerNote
FROM leaveRequest Ler

WHERE Ler.IDUser = ISNULL(@IdUser, Ler.IDUser)
AND Ler.IDLeaveType = ISNULL(@IdLeaveType, Ler.IDLeaveType)
AND Ler.leaFromDate >= @DateStart
AND Ler.leaTODate <= @DateEnd
AND Ler.IDStatus = ISNULL(@IdStatus, Ler.IDStatus)
AND ((Ler.IDApprovalManager = ISNULL(@IdApprovalManager, Ler.IDApprovalManager))
or (@IdApprovalManager is null and Ler.IDApprovalManager is null))
AND Ler.IDUser IN (@idGroupUsers)
END

Se eseguo questa stored procedure con un exec nel seguente modo mi da errore di conversione:

GO

DECLARE @return_value int

EXEC @return_value = [dbo].[spLeaveRequestListSub1]
@IdUser = 19,
@IdResponsible = 19,
@IdLeaveType = 4,
@LeaFromDate = NULL,
@LeaToDate = NULL,
@IdStatus = 50,
@IdApprovalManager = 18,
@idGroupUsers = N'72,73,69'

SELECT 'Return Value' = @return_value

GO

Questo è l'errore:

Conversion failed when converting the varchar value '72,73,69' to data type int.
Fast-M non è collegato   Rispondi citando
Vecchio 27-02-2009, 10.57.39   #2
miciomao
Hero Member
 
L'avatar di miciomao
 
Registrato: 14-01-2005
Loc.: Rome, Italy
Messaggi: 1.132
miciomao promette bene
@idGroupUsers
che tipo di campo interroga ?
qual'è il suo formato?


Ciao
Alex
___________________________________

♫ m u s i c ♪ i s ♫ t h e ♪ a n s w e r ♫
"Il più piccolo dei piccoli felini è già lui stesso un vero capolavoro". (Leonardo da Vinci)
Namasté!
miciomao non è collegato   Rispondi citando
Rispondi


Utenti attualmente attivi che stanno leggendo questa discussione: 1 (0 utenti e 1 ospiti)
 
Strumenti discussione

Regole di scrittura
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is ON
Gli smilies sono ON
[IMG] è ON
Il codice HTML è OFF

Vai al forum

Discussioni simili
Discussione Autore discussione Forum Risposte Ultimo messaggio
XNAME PROCEDURE - CHANGE MOTHERBOARD WITHOUT REINSTALL XP XNAME Windows 7/Vista/XP/ 2003 0 28-08-2008 01.20.58
Aiuto procedure guidate in vista dyd666 Windows 7/Vista/XP/ 2003 7 29-05-2007 11.28.03
Automatizzare procedure ripetitive il_gi Software applicativo 2 19-12-2006 00.52.56
ADSL Alice Flat 4Mega in Fast ( Petizione + Opinioni e Procedure ) pazzokramaz Internet e Reti locali 27 07-10-2005 23.55.37
scrivere procedure nei file .reg ed .inf keanu76 Programmazione 1 13-11-2003 11.33.46

Orario GMT +2. Ora sono le: 21.41.59.


E' vietata la riproduzione, anche solo in parte, di contenuti e grafica.
Copyright © 1999-2017 Edizioni Master S.p.A. p.iva: 02105820787 • Tutti i diritti sono riservati
L'editore NON si assume nessuna responsabilità dei contenuti pubblicati sul forum in quanto redatti direttamente dagli utenti.
Questi ultimi sono responsabili dei contenuti da loro riportati nelle discussioni del forum
Powered by vBulletin - 2010 Copyright © Jelsoft Enterprises Limited.