Viewing 15 posts - 121 through 135 (of 304 total)
Jeff Moden (3/16/2009)
Heh... well try mine. 😛
I did. Mine was faster 😉
March 16, 2009 at 7:27 pm
Jeff Moden (3/16/2009)
Goldie Graber (3/16/2009)
I can't seem to get better performance than my original function.I'm pasting it here for future reference.
Do you have the code for the new function... I...
March 16, 2009 at 3:16 pm
I can't seem to get better performance than my original function.
I'm pasting it here for future reference.
[font="Courier New"]SET ANSI_NULLS ON
SET QUOTED_IDENTIFIER ON
GO
ALTER FUNCTION [dbo].[GetWordCount]
(@HTMLText VARCHAR(MAX))
RETURNS INT
AS
BEGIN
DECLARE @Start INT
DECLARE @End INT
DECLARE @Length...
March 16, 2009 at 2:58 pm
Jeff Moden (3/16/2009)
One of your requirements was to ....
4. Replace all entity codes (“&xxx;”) with X
If you "smear" that requirement across all the...
March 16, 2009 at 9:08 am
RBarryYoung (3/15/2009)
Just the tags or everything that they contain also?
For script & style tags I need to remove everything they contain.
For other HTML tags I can just remove the tags...
March 15, 2009 at 9:06 pm
RBarryYoung (3/15/2009)
Goldie:What are the start and end search strings that you are using for the Script Tags (step 3)? I just have spaces...?
I have to remove script tags...
March 15, 2009 at 5:40 pm
Jeff, that looks awesome.
I'm going to test it out at work tomorrow.
One part I don't quite understand is this:
--===== Replace all EntityCodes with the actual ascii character (Just to...
March 15, 2009 at 9:40 am
RBarryYoung (3/15/2009)
March 15, 2009 at 9:37 am
Download the file and save as text.
If you try to view it in your browser it will translate the HTML tags.
March 14, 2009 at 8:11 pm
Jeff Moden (3/14/2009)
Hi Goldie...
Not sure I can help but it would make it easier to try if you attached a file that has an example HTML that you're trying...
March 14, 2009 at 7:39 pm
Bob Hovious (3/13/2009)
First, I see you know how to use tally tables, so use them ... over and over again... get rid...
March 14, 2009 at 7:34 pm
Jack Corbett (3/13/2009)
March 13, 2009 at 9:23 am
If you post some sample DDL & DATA we would be happy to help you solve your problem.
Please read this article for more information on how to get the best...
February 12, 2009 at 8:20 am
Jeff Moden (1/31/2009)
February 5, 2009 at 10:39 am
You could also try a dynamic cross-tab, as mentioned in the following article:
January 26, 2009 at 11:27 am
Viewing 15 posts - 121 through 135 (of 304 total)