Viewing 8 posts - 1 through 8 (of 8 total)
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...
August 25, 2005 at 7:56 am
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...
August 24, 2005 at 8:52 am
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...
May 30, 2003 at 11:36 am
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...
May 20, 2003 at 12:17 pm
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...
May 16, 2003 at 6:55 am
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...
May 15, 2003 at 12:04 pm
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...
May 15, 2003 at 11:48 am
Viewing 8 posts - 1 through 8 (of 8 total)