Convert To Proper Date

Apr 16, 2007

I read some questions where questioners ask "Sometimes client gives data where dates are expressed as float or integer values.
How do I find maximum date?".

Ex
March 02, 2006 can be expressed as
02032006.0
020306
2032006
20306
020306.0000
2032006
Assuming the values are expressed in dmy format

The possible way is convert that value into proper date so that all types of date related calculations can be done
Create function proper_date (@date_val varchar(25))
returns datetime
as
Begin
Select @date_val=
case when @date_val like '%.0%' then substring(@date_val,1,charindex('.',@date_val)-1)
else @date_val
end
return
cast(
case
when @date_val like '%[a-zA-Z-/]%' then case when ISDATE(@date_val)=1 then @date_val else NULL end
when len(@date_val)=8 then right(@date_val,4)+'-'+substring(@date_val,3,2)+'-'+left(@date_val,2)
when len(@date_val)=7 then right(@date_val,4)+'-'+substring(@date_val,2,2)+'-0'+left(@date_val,1)
when len(@date_val)=6 then
case when right(@date_val,2)<50 then '20'
else '19'
end
+right(@date_val,2)+'-'+substring(@date_val,3,2)+'-'+left(@date_val,2)
when len(@date_val)=5 then
case when right(@date_val,2)<50 then '20'
else '19'
end
+right(@date_val,2)+'-'+substring(@date_val,2,2)+'-0'+left(@date_val,1)
else
case when ISDATE(@date_val)=1 then @date_val else NULL end
end
as datetime
)
End

This function will convert them into proper date
select
dbo.proper_date('02032006.0') as proper_date,
dbo.proper_date('020306.000') as proper_date,
dbo.proper_date('02032006') as proper_date,
dbo.proper_date('020306') as proper_date,
dbo.proper_date('20306') as proper_date,
dbo.proper_date('020306') as proper_date

Apart from converting integer or float values to date, it will also convert date strings to date
Select
dbo.proper_date('March 2, 2006') as proper_date,
dbo.proper_date('2 Mar, 2006') as proper_date,
dbo.proper_date('2006 Mar 2') as proper_date,
dbo.proper_date('2-Mar-2006') as proper_date,
dbo.proper_date('3/02/2006') as proper_date,
dbo.proper_date('02-03-2006') as proper_date,
dbo.proper_date('2006/03/02') as proper_date,
dbo.proper_date('March 2006') as proper_date,
dbo.proper_date('2 Mar 2006') as proper_date


Madhivanan

Failing to plan is Planning to fail

View 8 Replies


ADVERTISEMENT

Getting Date Into Proper Format

May 22, 2007

Hi,



I have a .csv file that lists date like this: "20070522", no hyphens or spaces. In the file connection manager I have the column defined as string. The database column is a datetime.



When I attempt to load the file to the table, I get this error:



[OLE DB Destination [9]] Error: There was an error with input column "effective date" (155) on input "OLE DB Destination Input" (22). The column status returned was: "The value could not be converted because of a potential loss of data.".



My question is, what do I need to do to this column so that I can load it into the database?



Thanks much

View 6 Replies View Related

How To Convert A Table Containing Timetable Data Into A Proper Timetable Format

Mar 7, 2008

Using SQL Server 2005, I have set up a database for a school to provide timetables for students, teachers etc. The data is currently displayed in this form:

DAY LESSON YR SUBJ GRP STAFF ROOM
Mon 1 7 PE T Da Gym
Mon 2 7 PE T Da Gym
Mon 3 7 Ma A Pr 5
Mon 4 7 Ma A Pr 5
Mon 5 7 Ma A Pr 5
Mon 6 7 Dr T Fn 36
Mon 7 7 Dr T Fn 36
Mon 8 7 En T Bn 21
Mon 9 7 En T Bn 21
Tue 1 7 De T Df 27
Tue 2 7 De T Df 27

etc.

I would like to display this as timetable with DAYS as row headings and LESSON numbers as column headings, with the remaining column info. in the above table combined into one value:

1 2 3 4 etc

MON (7 PE T Da Gym) (7 PE T Da Gym) (7 Ma A Pr 5) (7 Ma A Pr 5)
TUE (7 De T Df 27) (7 De T Df 27) etc.
WED
THU
FRI
Should I be doing this with PIVOT (scares the life out of me ...) or is there some other solution? Many thanks.

View 1 Replies View Related

Query Not Returning Proper Data (date Related) In 2005 After Upgrade From 2000...

Jun 7, 2007

I am sending out an SOS.

Here is the situation:

We recently upgrade to 2005(sp). We have one report that ran fine in 2000 but leaves out data from certain columns (date related) in the results, so we chalked it up to being a non compatiable issue. So, I decided to try and switch the DB back to 2000 compatibility (in our test env) and then back to 2005. After that the report started returning the proper data. We can€™t really explain why it worked but it did. So we thought we would try it in prod (we knew it was a long shot) and it didn€™t work. So the business needs this report so we thought we would refresh the test system from prod, but now we are back to square one. I was wondering if anyone else has heard or seen anything like this. I am open to any idea€™s, no matter how crazy. J The systems are configured identically. Let me know if you need more information.

Thank you. Scott

View 4 Replies View Related

How To Use Convert Date Statement In CmdInsert.Parameters.Add(Date,SqlDbType.DateTime).Value = Date

Sep 21, 2006

HiI am using SQL 2005, VB 2005I am trying to insert a record using parameters using the following code as per MotLey suggestion and it works finestring insertSQL; insertSQL = "INSERT INTO Issue(ProjectID, TypeofEntryID, PriorityID ,Title, Area) VALUES (@ProjectID, @TypeofEntryID, @PriorityID ,@Title, @Area)"; cmdInsert SqlCommand; cmdInsert=new SqlCommand(insertSQL,conn); cmdInsert.Parameters.Add("@ProjectID",SqlDbType.Varchar).Value=ProjectID.Text; My query is how to detail with dates my previous code wasinsertSQL += "convert(datetime,'" + DateTime.Now.ToString("dd/MM/yy") + "',3), '";I tried the code below but the record doesn't save?string date = DateTime.Now.ToString("dd/MM/yy"); insertSQL = "INSERT INTO WorkFlow(IssueID, TaskID, TaskDone, Date ,StaffID) VALUES (@IDIssue, @IDTask, @TaskDone, convert(DateTime,@Date,3),@IDStaff)"; cmdInsert.Parameters.Add("IDIssue", SqlDbType.Int).Value = IDIssue.ToString();cmdInsert.Parameters.Add("IDTask",SqlDbType.Int).Value = IDTask.Text;cmdInsert.Parameters.Add("TaskDone",SqlDbType.VarChar).Value = TaskDoneTxtbox.Text;cmdInsert.Parameters.Add("Date",SqlDbType.DateTime).Value = date;cmdInsert.Parameters.Add("IDStaff",SqlDbType.Int).Value = IDStaff.Text;Could someone point to me in the right direction?Thanks in advance

View 3 Replies View Related

How To Convert A Date (date/time) To A Julian Date

Jun 13, 2002

In SQL Server 2000:

How do I convert a Julian date to a Gregorian date?

How do I convert a Gregorian date to Julian?

Examples please.

Many thanks in advance.

Gary Andrews

View 2 Replies View Related

Transact SQL :: Convert Server Date MM/DD/CCYY To Oracle Date Formatted As NUMBER (8,0)

Apr 30, 2015

So I have to build dynamic T-SQL because of a date parameter that will be provided. The Date Parameter will be provided in SSRS in normal MM/DD/CCYY format. So how do I then convert that date to my Oracle format

NUMERIC(8,0) CCYYMMDD?

I tried this...

SET@SQLQuery=@SQLQuery+'ANDMEMBER_SPAN.YMDEFF<='''''+CAST(@AsOfDateASVARCHAR)+''''''+@NewLineChar;
SET@SQLQuery=@SQLQuery+'ANDMEMBER_SPAN.YMDEFF>='''''+CAST(@AsOfDateASVARCHAR)+''''''+@NewLineChar;

but that put it in the format of...

AND
MEMBER_SPAN.YMDEFF<=''2015-04-01''
AND
MEMBER_SPAN.YMDEFF>=''2015-04-01''

Which is close...I think I just need to lose the "-"

View 5 Replies View Related

Help Needed Little Urgent---how To Convert The String Date To Standard Date Format In SQL Table

Sep 28, 2007

Using DTS package in 2000 version, I am dumping TXT file contents into SQL Table,

I have one column having date in format YYYYMMDD(20070929) and corresponding column in SQL is datetime, but it fails on data type mismatch.

I have no choice of making date column in SQL to string or Varchar etc,

is there any way to make that date column in SQL to convert the value upon transformation from format (YYYYMMDD) to M/DD/YYYY (9/29/2007).

many many thanks,

View 2 Replies View Related

How Do I Convert A Unix Date/Time Field To A Date When The The SQL DB Stores That Data As Char 11?

Nov 13, 2007

Hi there.
I'm trying to extract data from my SQL server & everything in the script I've got is working (extracting correct data) except for one field - which is for the most part it's off by +2 days (on a few occasions - I see it off by just +1 day or even +3, but it's usually the +2 days).

I'm told that it's due to the conversion formula - but - since SQL is not my native language, I'm at a bit of a loss.

The DB table has the date field stored as a type: CHAR (as opposed to 'DATE')
Can anyone out there help?

Please advise. Thanks.

Best.
K7

View 1 Replies View Related

How To Convert Date-field To Date With Time Zone

Jul 4, 2014

I have passed createdDate from UI to Stored procedure.createdDate field declared with DateTime.it is having value 2014-07-01.I need to fetch records from the database based upon the created field.but Create_TM in database having value Date with timestamp.so how would i change the createdfield in stored procedure.

ALTER PROCEDURE [dbo].[ByDateRange]

@Feed VARCHAR(50),

@CreatedDate DATETIME

select * from Date_table where Create_TM = @CreatedDate

View 1 Replies View Related

Convert String To Date Independent Of Date Format

Feb 15, 2008

Hi,

I Have this simple convertion in a Script component


Dts.Variables("dateOfProcess").Value = CDate(lineMCF.Substring(30, 2) + "/" + lineMCF.Substring(28, 2) + "/" + lineMCF.Substring(24, 4))



this works fin in my development environment which has a spanish version of SQL Server and uses "DD/MM/YYYY" as date format.

but the production environment has an english version of SQL Server and "MM/DD/YYYY" date format, so the package crashes in this server.


How do I convert the string to date not depending on the SQL server language.

thanks.

View 2 Replies View Related

How To Convert Date String To Date Time

Jan 8, 2013

I have a table in which a date value is stored as varchar.some of these values are stored ina dd/mm/yyyy format and other values are stored in a yyyy-mm-dd format..Now I wish to retrieve some data by querying between two dates. However I need to convert the varchar date value to datetime in order to do this but since the date value is in two different formats, the following doesn't work.

select date_value
from my_table
where CONVERT(DATETIME, date_value, 103) between @date1 and @date2

How can you convert the date value to datetime when its stored in mutiple formats. I can't change the table itself as I dont have admin privelages.

View 14 Replies View Related

Convert A Date Specified As An Integer (e.g. 20070101) To A Date

May 28, 2007

My source database stores dates as integers (e.g. 20070101). I need to convert to a "real" date for my target system.



I'm guessing I need to create a derived column - could someone help me out with the appropriate expression?



Thanks,



JG

View 12 Replies View Related

How To Convert Long Date Format To Short Date Format In Store Procedure.

Feb 1, 2008

E.g, i have a store procedure. The start date is long date (4/15/2007 3:00pm). i want to select the start date with a particular date (short date format 4/15/2006). Thanks in advance.

View 1 Replies View Related

Date Convert

Feb 21, 2001

hello everyone,
I have a date field and and to covert to char type in the format like mmddyy, anyone has any suggestion, i'm a newbie
thanks

View 2 Replies View Related

Convert Date

Sep 22, 2005

I have a situation where my data has been scrambled due to a date setting on my local PC. I now need to create a script to fix the data.

2005-12-01 06:39:00.000 is the incorrect date (time is OK)
2005-01-12 16:52:19.000 is the date I can use to correct the problem.

My end result must be 2005-01-12 06:39:00.000

View 1 Replies View Related

Convert Date With T-SQL

Apr 26, 2004

Hi,

problem with transact-SQL (SQL2k). I'm gathering informations from2 different tables and the column that interest me (the invoice date) have same format but not filled in the same. One is an old table and the format is "datetime" (but written like dd/mm/yyyy) and the new one "datetime" as well but "dd/mm/yyyy hh:mm:ss" (and it's not small datetime)
I'd like to convert the date format wich appears with the "hh:mm:ss" to a smaller format (just dd/mm/yyyy).
I'v tried with the conversion into text (the CONVERT function limits) wich works but I need to deal with a date format when I get the result. If I re convert to smalldatetime, I get the hh:mm:ss again.

Hope this clear.

Thanks

View 5 Replies View Related

Convert To Date

Apr 10, 2008

Hi,
I'm having problem trying to convert 'yyyymm' to just 'yyyy' and 'mm'.

this is what my data looks like:

rptmonth:
200706
200707
200708

I would like result to be separated by year and month
rptmonth:
2007 06
2007 07
2007 08

thanks.

View 11 Replies View Related

Convert Date

Jun 5, 2008

I want to keep the month name from Jan 2007(servicemonth), but can't seem to remember how. I only need the Jan, not the 2007 part. Please help.

View 3 Replies View Related

Convert Date

Aug 11, 2006

In a fix to resolve a y2k issue my date format within a table has been changed, and I would like to display it in more of a user friendly way.

Currently 1YYMMDD and i would like it to display as mm/dd/yyyy
1060811 -> 08/11/06

Thanks!

View 9 Replies View Related

Date And Convert()

Sep 29, 2006

Trying to making the move from MS Access to SQL 2000.

i'm importing a text file with a date format like:
06012006 -- always 10 char

and having mucho prob's

here's my code:
INSERT Auth_ICP
(
[ICP_ID],
[MemberID],
[MbrExtID],
[ICPMonth]
)
SELECT

[ICP_ID],
[MemberID],
[MbrExtID],
convert(datetime,SUBSTRING([ICPMonth],1,2) + "/" + SUBSTRING([ICPMonth],3,2) + "/" + SUBSTRING([ICPMonth],5,2))
FROM MN_Auth_ICP



currently i'm importing the data as is (varChar) then moving appending the data to a tbl with proper fields. Help, thanks in advance.

View 6 Replies View Related

Convert A Date

Jan 25, 2007

I have successfully converted datetime fields that hold the date and time to show just the date using CONVERT like this

CONVERT(DateTime,MyDateField,103)

However, in another table just the date is stored in the SQL table the sp below displays the date with time shown as 00:00:00

I am unable to display just the date, even if I use CONVERT on it as above.

CREATE Procedure [spRMU_CountRequests]

AS

SELECT DateRequested AS Date_Requested, COUNT(*) AS No_Requests
FROM tblFileRequests
WHERE DateRequested >= '01/01/07'
GROUP BY DateRequested
ORDER BY DateRequested DESC
GO

View 4 Replies View Related

Convert Date

Apr 10, 2007

I need to convert the date below to the SQL datetime. The single month dates do not start with a '0'.Can anyone please provide me with a script to do this? Thank you in advance!

ex:
90106
120106
10107

needs to be converted to:
2006-09-01
2006-12-01
2007-01-01

View 12 Replies View Related

Convert This To Date

Apr 13, 2007

i have a dynamic sort feature that works fine using CASE...but i need to convert the NVarChar to date time can anyone help me with it?

CASE WHEN @SortBy = '4up' Then Convert( VarChar( 100 ), dbo.Tbl_BaselineAppt.BaseDate ) END ASC

thanks

View 5 Replies View Related

Date Convert

Apr 18, 2007

Hi everyone. having a @date = '2007/04/01'.
How could I get the month 04? and my expected result is the actual 04.

Thanks.

-Ron-

"If you can only access one site on the Internet, make it SQLTeam!"

View 4 Replies View Related

Date Convert

Apr 26, 2007

Good Afternoon,
I have posted here before and have gotten excellent feed back from you SQL Gurus! I would have to say that date converts are my kryptonite! My problem is that I have multiple accounts that are tied to multiple dates on a server. I need to pull the MAX(date) of the account numbers; however, the date is formatted MMYY. For example;

Table
AccountDate
1234561206
123456507
987654107
9876541106
987654806
123456805
123456306

If I select the MAX date for Account 123456 it will give me '1206' when clearly '107’ is the most recent date. Can anyone provide me a script that will format the date so that SQL will understand what I am trying to accomplish? Also, the day is not important; it can be defaulted to 01. - Thank you very much

View 5 Replies View Related

Date Convert

Nov 20, 2007

i'm using:
select
CONVERT(nvarchar(30), CAST('2007-11-24' as nvarchar(30)), 5)

and i want to convert entered format '2007-11-24' to '24-11-2007'.

what should be the fastes way? :)

thank you

View 3 Replies View Related

Date Convert

Dec 17, 2007

hi,

I have a one column for date.
it displys in following manner.

1952-12-05 00:00:00

and i want to convert in

12/05/1952

can anybody help me out with this....

View 11 Replies View Related

Convert To Date

Jul 20, 2005

I have a variable that I am passing to a stored procedure from apropritery software application. The variable it passes is the numberof days that have passed since 1/1/1900. I cannot seem to locate aconvert statement that is applicable. Any guidance would be greatlyappreciated.Thanks

View 1 Replies View Related

Convert To Date

Mar 13, 2008

How does one convert to a Date from this string that represents a Date?

'2007-02-28T01:11:12+10:00'

In fact what is the time stating? is it 11:12 or 10:00? But more importantly, how do you convert it to Datetime Datatype to Insert into SQL Server 2005?

View 6 Replies View Related

Convert Date

Jan 8, 2008

I am in SQL 2005 and trying to convert a date. The current format of the date is mm/dd/yyyy. I need the date to display mm/01/yyyy.

Here is my view:

CREATE VIEW vDailyBacklogEarlyShipTest
As
SELECT TOP 100 PERCENT PromiseMonth, DatePromised, EarlyShipDays, DatePromised - EarlyShipDays AS EarlyShipDate,
MonthEarlyShip = CASE WHEN DateDiff(d, getdate(), (DatePromised - EarlyShipDays)) < 0 THEN 'OVERDUE' ELSE
(DATENAME(mm, (DatePromised - EarlyShipDays)) + ' ' + CONVERT(nvarchar(4), (DatePart(yyyy, DatePromised - EarlyShipDays))))END,

SpecNumber, CatalogPN, Quantity, PartValue, ASP, Orders, OrderType, SalesType, PL FROM BacklogSummary
ORDER BY PL, EarlyShipDate


right now MonthEarlyShip displays mm yyyy (example January 2008). I need it to display 1/1/2008.

Thanks for your help!

View 5 Replies View Related

Convert Date

Jan 17, 2007

Hi !
I think I need your help... to convert the date (2006-09-09) to weekday, weeknumber, month number, month, year in OLE DB source editor ... created following sql, which is not working.
How about using derived Column transformation editor?

SELECT DATENAME (WEEKDAY, YYYYMMDD) AS weekday, DATEPART(WEEK,YYYYMMDD) AS weeknumber, MONTH(YYYYMMDD) AS month_number, DATENAME(MM,YYYYMMDD)AS Month, YEAR(YYYYMMDD) AS
year, DAY(YYYYMMDD) AS date FROM Purchase

thank you so much...

View 27 Replies View Related

Convert Date And Order By

Apr 26, 2007

Hi!I have a little problem. I’m trying to sort a date I have converted like thisConvert(datetime,LH.LoginDateTime,103) as RegistrationDateBut when I use Order by on RegistrationDate it only sort on days:01/11/200601/12/200602/11/200602/12/200603/11/200603/12/2006I’ll guess it’s because of the “varchar� convert, but I need the date to bee inn this format, since I only shall check the date and not the time. Is there a way around this, so I can order it like this? (Se under)01/11/200602/11/200603/11/200601/12/200602/12/200603/12/2006Sample SQL;select Convert(varchar,LH.LoginDateTime,103) as RegistrationDate,select count(*) from LoginHistory AS LH2 where datepart(hh,LH2.LoginDateTime)<7 ANDConvert(varchar,LH2.LoginDateTime,103)>=Convert(varchar,LH.LoginDateTime,103) AND Convert(varchar,LH2.LoginDateTime,103)<=Convert(varchar,LH.LoginDateTime,103)) As beforehour07from LoginHistory AS LHwhere LH.LoginDateTime >='''+ Convert(varchar,@FromDate,113) + ''' ' + 'and LH.LoginDateTime <='''+ Convert(varchar,@ToDate,113) + ''' ' + 'group by Convert(varchar,LH.LoginDateTime,103)'Order by RegistrationDate

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved