I have searched far and wide, but I can\'t seem find a way to convert julian to yyyy-mm-dd.
yyyy-mm-dd
Here is the format of my julian:
The Julian format
Edit: leaving this answer for Oracle and MySQL users This will not work in T-SQL.
Use this:
MAKEDATE(1900 + d / 1000, d % 1000)
For example:
SELECT MAKEDATE(1900 + 95076 / 1000, 95076 % 1000)
This returns March, 17 1995 00:00:00.
March, 17 1995 00:00:00
SQLFiddle