Viewing 15 posts - 136 through 150 (of 173 total)
Jeff,
What I really need is a solution that deletes the duplicate records. As I explained the dups are occurring because of uniqueness in the rows caused by any number...
December 6, 2009 at 7:02 am
Works perfectly. Jason, bitbucket, Lynn thanks for all of your inputs - really appreciated.
costa
December 4, 2009 at 2:31 pm
Jason,
Thanks for your assistance. I get an error message as below:
WITH dedupeCTE (ID, COUNT(*) AS DuplicateCount)
AS
(
SELECT ID, DuplicateCount,
ROW_NUMBER() OVER(PARTITION BY ID, DuplicateCount ORDER BY ID) AS DuplicateCount
FROM DupsDueToUniqueRows
)
DELETE
FROM dedupeCTE
WHERE DuplicateCount...
December 4, 2009 at 9:51 am
absolutely a front end issue but it can't be addressed asap. we just have to resolve it on the extract.
December 3, 2009 at 3:36 pm
for starters the front end is a mess and doesn't do a check but also I have spot checked a few.
December 3, 2009 at 3:21 pm
Thanks Gail and GSquared. You have answered my question. Your help is appreciated.
costa
November 17, 2009 at 1:55 pm
That is correct but I am trying to advoid using distinct count query. My hope is that sql server has it in system table / views that I can just...
November 17, 2009 at 12:24 pm
Jeff, Vicky, Carolyn, Rudy and Manu thanks for your input; it is very much appreciated.
set columnname = replace(replace(substring(columnname,1,datalength(columnname)), char(13),''), char(10), ' ') works however I am still having issues for...
September 2, 2009 at 12:22 pm
I tried and it doesnt work. The extract still has inbedded carriage returns like before with attempts in some records to remove it.
Thanks
August 31, 2009 at 11:40 am
Jeff,
The attempt is to just handle the text or nvarchar datatype.
Thanks,
August 30, 2009 at 2:54 pm
Jeff,
IT WORKS!!!!!! Thanks a million for your assistance; it is very much appreciated. Also my apology for giving Lutz credit for your articles and I want you to know...
August 19, 2009 at 7:56 am
Lutz,
My apology for posting in the wrong forum and thanks for pointing that out...rookie mistake :-). Also thanks for pointing out that I credited you for Jeff's article; really appreciated...
August 19, 2009 at 7:49 am
Gah,
Great point and I raised this in a meeting this afternoon. Everyone just wants a solution at this point.
Thanks,
August 18, 2009 at 3:35 pm
I certainly do. The dataset here is an example ofcourse however it closely maps to the actual:
1) There are only 3 products types
2) The business reasoning I guess is to...
August 18, 2009 at 3:32 pm
Jeff,
Thanks for pointing that out. The layout should look like:
cusid name product1 status ...
August 18, 2009 at 10:31 am
Viewing 15 posts - 136 through 150 (of 173 total)