Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Error: Function argument value, type, or count is invali
Message
 
 
À
16/07/2004 12:32:26
Information générale
Forum:
Visual FoxPro
Catégorie:
Problèmes
Divers
Thread ID:
00925243
Message ID:
00925248
Vues:
14
If this is VFP 8, did you SET ENGINEBEHAVIOR 70 before running the query? Your GROUP BY must be on every non-aggregated field in the SELECT list in VFP 8 unless you drop the SQL engine back to VFP 7 behavior.

>I'm having this error: function argument value, type, or count is invalid, when i'm trying to do this query:
>
>
select 	llamadas.numero				as numero		,;
>		llamadas.fllamada 			as fllamada		,;
>		llamadas.fatencion			as fatencion	,;
>		llamadas.fcierre			as fcierre		,;
>		llamadas.estado				as estado		,;
>		llamadas.host	 			as host			,;
>		llamadas.modelo 			as modelo		,;
>		llamadas.undhard 			as hardware		,;
>		llamadas.usuario			as usuario		,;
>		llamadas.reporta   			as usunombre	,;
>		oficina.nombre				as ofinombre	,;
>		llamadas.piso				as piso			,;
>		llamadas.ingeniero			as ingeniero    ,;
>		ingeniero.nombre			as ingnombre	,;
>		llamadas.servicio			as codservicio  ,;
>		sub_unidades.descripcion 	as categoria	,;
>		dispositivo.descripcion 	as disnombre	,;
>	    "1"							as temporal		;
>	  FROM  helpdesk!llamadas ;
>		    FULL JOIN helpdesk!sub_unidades ON  Llamadas.servicio = Sub_unidades.codigo;
>		    FULL JOIN helpdesk!ingeniero    ON  Llamadas.ingeniero = Ingeniero.codigo ;
>		    FULL JOIN helpdesk!dispositivo  ON  Llamadas.dispositivo = Dispositivo.codigo ;
>		    FULL JOIN helpdesk!oficina      ON  Llamadas.oficina = Oficina.codigo ;
>		    FULL JOIN helpdesk!usuarios_cia ON  Llamadas.usuario = Usuarios_cia.codigo ;
>	 where 	Sys(11,Llamadas.fllamada) >= sys(11,m.ini) and;
>            Sys(11,Llamadas.fllamada) <= Sys(11,m.fin) ;
>order by numero ;
>group by numero
>
>What's wrong with the query?
Mark McCasland
Midlothian, TX USA
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform