Viewing 7 posts - 16 through 22 (of 22 total)
Hi Tommy,
thank you very much, it works perfectly.
October 28, 2008 at 1:45 pm
now i remember why i use a cursor:
I execute the select CONVERT(datetime, FechaRecepcion, 103)
from Ejemplares
where ISDATE(FechaRecepcion) = 1
but then apear and error:
Mens. 241, Nivel 16, Estado 1, Línea...
October 3, 2008 at 2:27 pm
Hi, thank for your help ^^
alter PROCEDURE spTotalCompraIdiomaLibroDina @Idioma varchar(20), @año varchar(10)
AS
BEGIN
DECLARE @Some_Sql VARCHAR(8000)
SET @Some_Sql =
...
October 2, 2008 at 11:29 am
select L.Titulo, count(*) as NumeroPrestamos
from Servicios S, Ejemplares E, Libros L, Colecciones C
where E.CodigoAcceso = S.CodigoAcceso
and E.IDLibro = L.IDLibro
and E.IDColeccion = C.IDColeccion
and C.Coleccion = 'General'
and S.FechaPrestamo between '2005-01-01' and...
September 25, 2008 at 2:10 pm
thanks for all the help..
i have solute my problem now
bcp {[[database_name.][owner].]{table_name | view_name} | "query"}
{in | out | queryout | format} data_file
[-mmax_errors]...
June 12, 2008 at 8:27 am
Viewing 7 posts - 16 through 22 (of 22 total)