Viewing 5 posts - 16 through 20 (of 20 total)
Guys, did somebody mention this 😉 (valid only in SQL Server 2012):
-- Current date
DECLARE @d DATETIME = GETDATE();
SELECT FORMAT( @d, 'dd MMM yyyy', 'en-US' ) AS 'DateTime Result'
July 19, 2013 at 12:38 am
JAMESC2003 (2/27/2013)
What would the XQuery option buy you as far as process a series offlat files ?
AFTER you pass XML into Stored Procedure. Plus XML native data type in SQL...
February 27, 2013 at 4:31 pm
I would personally use XQuery - a first class citizen in T-SQL
IMHO loading XML documents is quite memory-hungry.
Cheers
February 27, 2013 at 3:42 pm
IMHO this task would be better implemented in CLR UDF rather than in pure T-SQL.
CLR UDF easily allows to apply REGULAR EXPRESSIONS.
Just a thought.
November 29, 2012 at 9:36 pm
Guys,
I must be missing a WOW factor here, but why do we need to re-invent the wheel?
The most ROBUST solution wiould be a SINGLE strongly typed XML parameter...
November 1, 2012 at 10:58 pm
Viewing 5 posts - 16 through 20 (of 20 total)