Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Photos, BLOBs and Images

    Use textcopy. Textcopy utility is not described in SQL Server Books Online, but you

    can get its description by typing textcopy /? from the command prompt.

    The field that the photo is...

  • RE: When's Your Anniversary

    Another solution using OR

    declare @today datetime

    declare @lastday datetime

    select @today = '11/01/2001'

    select @lastday = DATEADD(m,4,@today)

    select person,birthday

    from myTest

    WHERE (dateadd( year, datediff( year, birthday, @today), birthday) >= @today and

    dateadd( year, datediff(...

Viewing 2 posts - 1 through 2 (of 2 total)