Forum Replies Created

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

  • RE: Problem uninstalling MS SQL Server

    To late, I already did what the microsoft article recommended. Scary. I have installed developer edition and all is well. It's only a personal laptop, not so much worry. Lesson...

  • RE: Problem uninstalling MS SQL Server

    Hi Newbie!

    I hope you got your problem resolved from your post from 2004...

    Do you remember how you got the SQL Server completed uninstalled? I am running into the same...

  • RE: crystal reports

    Don't forget to check out http://www.tek-tips.com !

  • RE: User Define Function error

    Used this function and it does not return errors.

    CREATE FUNCTION dbo.f_get_age (@DOB datetime, @toDate datetime)

    RETURNS int

    AS BEGIN

    DECLARE @iReturn int

    DECLARE @iYears int

    DECLARE @iMonths int...

  • RE: User Define Function error

    Have been doing some testing.

    Tried the select statement using only the udf and I provided the data:

    SELECT DBO.F_GET_AGE(10 aug 1970, GETDATE())

    **by the way, no that's not my REAL dob!!:D

    The...

  • RE: User Define Function error

    Hmm. Thought that would be it also, but no rows returned are null. Since I am new at UDFs is there a way to test the UDF? Can I...

  • RE: User Define Function error

    It actually does return data but gives me this error:

    Server: Msg 242, Level 16, State 3, Procedure f_get_age, Line 16

    The conversion of a char data type to a datetime data...

  • RE: User Define Function error

    Thanks for the replies. Here's what I've done:

    Per JPIPES recommendations:

    1.Changed datetime to smalldatetime - still recieve error.

    The conversion of a char data type to a datetime data type resulted...

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