Link to home
Start Free TrialLog in
Avatar of Sh M
Sh MFlag for United States of America

asked on

Converting column udt_fuzzydate to datetime in SQL

Hi,
I have a column in database that is of udt_fuzzydate type.

How can it be modified to date time in SQL query?

Thanks
Avatar of dsacker
dsacker
Flag of United States of America image

Udf_fuzzydate would be a local user type created on your SQL Server installation. It is not a standard type.

To help you, please let me know the following:

What is the true data type of that user type udf_fuzzydate (hover over it, and you should see something like varchar(size), varchar, nvarchar(size), nvarchar, text, etc)?
Please provide some distinct examples of what the values look like in that column.
Thanks.
post a sample data

selecttop 10 distinct udt_fuzzydate_col from mytable
I found this:

CRM comes with a user-defined type called “UDT_FUZZYDATE”. If you look at that datatype, you’ll notice that it’s just a CHAR(8) field

http://www.bbdevnetwork.com/blog-tags/udt_fuzzydate/
i guess this will work

declare @fuzzy as char(8) = '20141127'
SELECT convert(datetime, @fuzzy, 112)

2014-11-27 00:00:00.000

Open in new window

Chances are you can convert it to datetime with CONVERT(datetime, YourField).

If that doesn't work the values may not be recognizable by SQL Server, and may simply need some rearranging.
Avatar of Sh M

ASKER

It is data type varchar(8)

I tried this code in the query:
....
, Convert(date time, tbl1.col1,112)
....

Error: conversion of a bar char data type to a date time data type resulted in an out of range value.
Please take the space out between "date time". It's datetime (one word).

If that still causes an error, please provide distinct examples of your values:

SELECT TOP 50 DISTINCT tbl1.col1 FROM YourTable
Avatar of Sh M

ASKER

There wasn't any space in my code I tried. Just a typo here.
Please provide distinct examples of your values:

SELECT TOP 50 DISTINCT tbl1.col1 FROM YourTable
IF the char(8) is in a format that SQL Server can directly convert to a datetime, such as 'YYYYMMDD', then just issue this command:

ALTER TABLE table_name
ALTER COLUMN column_name fuzzydate1 datetime { NULL | NOT NULL } --specify NULL or NOT NULL to match what the column already has
Avatar of Sh M

ASKER

Select to 50 startdate from table1

20130613
20140829
00000000
.....
20130613 and 20140829 would convert easily. It's values like 00000000 that are causing a problem. Do you have any other values outside of 00000000 that do not look like dates?

Please list them if so.

And, what would you want 00000000  to default to as a real date? 1900-01-01? 2000-01-01?
if thats the only exception:

SELECT (case @fuzzy when '00000000' then null else convert(datetime, @fuzzy, 112) end) as fuzzy2date
from mytable
Since that's no known date, most accurate is probably to NULL them out:

UPDATE table_name
SET fuzzy1 = NULL
WHERE fuzzy1 = '00000000'

You have to make sure code using the table will handle NULLs properly.  But you'd have to make sure the code treated' 19000101' of whatever other "non-value" you used too, so might as well use NULL since it's available.
ASKER CERTIFIED SOLUTION
Avatar of dsacker
dsacker
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Sh M

ASKER

Thanks all. It is working fine for now.
Avatar of Sh M

ASKER

Thank you