TSQL Convert Xml DateTime (xs:datetime) to SQL DateTime


/ Published in: SQL
Save to your folder(s)

This is as small as this can go:
'xs:dateTime(sql:variable("@stringDate"))'
It needs to be a literal string for the Value() function.

Xml Datatype
http://msdn2.microsoft.com/en-us/library/ms189887.aspx

Sql:Variable() Function
http://msdn2.microsoft.com/en-us/library/ms188254.aspx

'xs:dateTime( val )'
http://www.w3schools.com/xpath/xpath_functions.asp#datetime

Xml Datatype Methods
http://msdn2.microsoft.com/en-us/library/ms190798.aspx


Copy this code and paste it in your HTML
  1. DECLARE @stringDate VARCHAR(30);
  2. DECLARE @myXmlDate xml
  3. DECLARE @serializedDate datetime
  4. DECLARE @xQuery VARCHAR(100)
  5. SET @stringDate = '2007-10-03T11:24:07.003+12:00'
  6. SET @myXmlDate = CAST('' AS xml) --Gets an empty Xml datatype
  7. SET @serializedDate = @myXmlDate.value('xs:dateTime(sql:variable("@stringDate"))', 'datetime')
  8. SELECT @serializedDate

URL: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1920108&SiteID=1

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.