Viewing 3 posts - 1 through 3 (of 3 total)
I did a test using a string parser, which returned 512 records, the XML parser took cosistantly 2 ms and my string parser bounced between 0 and 1 ms.
However, I'd...
August 14, 2013 at 8:17 am
This is the function that I am currently using, is it more efficient than the CTE ?
create FUNCTION [dbo].[func_CreateClientTableOrdered]
(
@item_list as varchar(4000)
)
RETURNS @Items Table(OrderNo int, Item varchar(60))
AS
BEGIN
declare...
November 20, 2009 at 10:11 am
I like your function, because you use a CTE.:-D
I've been learning how and when to use CTE's and this is just another item that has helped me to better understand...
November 19, 2009 at 10:04 am
Viewing 3 posts - 1 through 3 (of 3 total)