Ask a Question related to Macromedia ColdFusion, Design and Development.
-
Damnit Spock! #1
SQL compare question.. non-distincts
Hi, Im wondering is CF has an easy way of doing this, or if there is a way
using SQL:
I'm finding duplicated rows in the DB (SQL*SVR) and need to schedule a script
that runs and compares the contents of the first 7 or 8 columes per row to
determine if there is a duplicate item. The determining factors that identify
a unique item are these columns. Something like "Search through the db and
look for these NON-DISTINCT values for the columns in question"? (where all 7
column values are the same)
Many thanks
Damnit Spock! Guest
-
Compare 2 PDF
Hi, is there any way to automate the comparison of two PDFs from outside Acrobat? e.g. I mark 2 PDFs, right-click offers me COMPARE and after... -
Net::LDAP compare question
I am writing a perl script to query an ldap database and find users who do not belong to any mail distribution list. I can run the query just fine,... -
compare
How can I stop a function in PHP? When comparing data I want to stop the function on a hit. Function compare($data) { For... -
compare excel
I have an application needs to merge two excel files and remove duplicates, is there a custom tag that I can use or any suggestions how I should go... -
how do you compare two strings
Hi, I was wondering how do you compare variables that contain text strings in ASP. When I use the following If.. Then statement: If... -
jonwrob #2
Re: SQL compare question.. non-distincts
What do you want to know about them?
SELECT column1, ... column8, count(*)
FROM table
GROUP BY column1, ... column8
HAVING count(*) > 1
will show you the count of rows for each of the 8 values that appear more than
once.
A unique key on those 7 or 8 columns will prevent duplicates from being
entered, but any duplicates will have to be removed before you can apply the
constraint.
JR
jonwrob Guest



Reply With Quote

