Viewing 11 posts - 1 through 11 (of 11 total)
Thank you Eugene and GSquared.
Eugene, the NOT IN looks like a much better/easier/readable join.
GSquared i love your signature ROFL,LOL,ETC .... 😀
I don't think it can get any better.
September 12, 2012 at 8:23 am
This is a nice solution. However when we have hundred other files for similar process it will eventually lock a considerable memory forever.
I was thinking of having split the task...
July 2, 2012 at 3:13 am
I have tried the below query but it does not cover all the cases, especially when the pattern is like #[number][string]
The output of query is attached to this post.
SELECT
DataID
,Data
,LEN(Data) AS...
May 11, 2012 at 3:22 am
Thanks for the link, but i was looking for a non-clr solution.
May 11, 2012 at 2:49 am
I am trying hard but am not able to go further.
To start with i am first trying to get the below output, will drill down for more later
<Customers>
<Customer...
December 8, 2010 at 1:04 am
George thanks for the first link, it will help me in querying for xml datatypes.
Also thanks for the second link, will try it out and post my query here.
December 7, 2010 at 11:53 pm
Thanks Gianluca for the quick reply.
this is good.
wish it had also given list of distinct matching words found in the object definition.
😀
February 22, 2010 at 5:14 am
still awaiting for a solution.
anybody out there please help...
November 25, 2009 at 2:07 am
Thanks Ken. Your solution worked perfect 🙂
October 1, 2009 at 1:12 am
Hi All,
I wonder if there is an option somewhere to consolidate each notification in a single mail rather than having one mail per job. Something like a digest mail.
July 14, 2009 at 12:37 am
Thanks Jack, Jeff and Jacob 🙂
I implemented it this way.
http://www.sqlservercentral.com/Forums/Topic465522-338-1.aspx?Highlight=split
http://www.sqlservercentral.com/articles/Datetime+Manipulation/61822/
[Code]
DECLARE @Delim CHAR(1)
SET @Delim = ','
;WITH L0 AS (SELECT 1 AS C UNION ALL SELECT 1), --2 rows
L1 AS (SELECT 1...
May 18, 2009 at 8:51 am
Viewing 11 posts - 1 through 11 (of 11 total)