Add to Favorites    Make Home Page 9511 Online  
 Language Categories  
 Our Services  

Home » ASP Home » SQL Home » Remove Duplicate Records

A D V E R T I S E M E N T

Search Projects & Source Codes:

Title Remove Duplicate Records
Description This code removes duplicate records from a database.
Category ASP » SQL
Hits 363093
Code Select and Copy the Code
'************************************** ' Name: Remove duplicate records ' Description:This code removes duplicat ' e records from a database. ' ' Returns:All duplicate records of the s ' elected database table will be removed a ' nd a report will be shown. ' ' Assumes:It is as easy as browsing thro ' ugh the Internet. No coding is required, ' just only forms to fill in. ' ' Side Effects:The script uses the recor ' dset object and is very fast even if tho ' usands of records. the removement cannot ' be undone after it is once started. ' <%@Language="vbscript" %> <!DOCTYPE HTML Public "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE>Remove Duplicate Records</TITLE> <STYLE Type="text/css"> BODY { background-color: #336699; font-family: Verdana; font-size: 10pt; color: #FFFFFF } TD { font-family: Verdana; font-size: 10pt; color: #000000 } </STYLE> </HEAD> <BODY> <% Const adOpenForwardOnly = 0 Const adLockReadOnly = 1 Const adCmdTableDirect = &H0200 Const adCmdText = &H0001 sPassword = "admin" ' fill in your desired password here If Request("password") <> "" Then Session("Password") = Request("password") End If If Session("Password") <> sPassword Then Response.Write "<HTML><BODY><FORM ACTION=""removeduplicates.asp"" METHOD=""post"">Password: (CaSe SeNsiTivE) <INPUT TYPE=""password"" NAME=""password""><INPUT TYPE=""submit""></FORM>" Else Dim sdbPath Dim sdbTable Dim spriKey Dim sdbField Dim strSQL Dim strConn Dim rs Dim ttCount Dim i Dim totalFound Dim lookFor Dim tempVal Dim foundDups Dim tempArr Dim prCount Dim File Dim Posi Dim delDub delDub = False File = Request.ServerVariables("SCRIPT_NAME") File = StrReverse(File) Posi = InStr(File, "/") File = Left(File, Posi - 1) File = StrReverse(File) If Request.Form("db") <> "" Then On Error Resume Next DSNName = Request.Form("db") sdbTable = Request.Form("tb") spriKey = Request.Form("pk") sdbField = Request.Form("fn") sdbPath = "DBQ=" & Server.MapPath(DSNName) & ";Driver={Microsoft Access Driver (*.mdb)};" strSQL = "SELECT COUNT(*) AS ttCount FROM " & sdbTable Set strConn = Server.CreateObject("ADODB.Connection") strConn.Open sdbPath Set rs = Server.CreateObject("ADODB.Recordset") rs.CursorLocation = adUseClient rs.Open(strSQL), strConn, adOpenForwardOnly, adLockReadOnly, adCmdText Set rs = strConn.Execute(strSQL) tempArr = "" totalFound = rs("ttCount") rs.Close Set rs = Nothing totalFound = CInt(totalFound) Response.Write totalFound Response.Write " records" & vbCrLf Response.Write "<HR>" & vbCrLf strSQL = "SELECT " & sdbField & "," & spriKey & " FROM " & sdbTable & " ORDER BY " & sdbField Set rs = Server.CreateObject("ADODB.Recordset") rs.CursorLocation = adUseClient rs.Open(strSQL), strConn, adOpenForwardOnly, adLockReadOnly, adCmdText If Err = 0 Then For i = 0 To (totalFound - 1) rs.MoveFirst rs.Move(i) lookFor = rs.fields(sdbField) If lookFor = tempVal Then foundDups = rs.fields(spriKey) tempArr = tempArr & foundDups & "," End If tempVal = lookFor Next rs.Close Set rs = Nothing If tempArr <> "" Then Response.Write "Primary Key ID containing duplicate data in the selected field:" & vbCrLf Response.Write "<BR>" & vbCrLf End If If tempArr = "" Then Response.Write "No duplicate records found." & vbCrLf Else tempArr = Left(tempArr, Len(tempArr) - 1) Response.Write tempArr tempArr = Split(tempArr, ",", -1, 1) prCount = UBound(tempArr) prCount = prCount + 1 Response.Write "<BR>" & vbCrLf For i = 0 To (prCount - 1) strSQL = "DELETE FROM " & sdbTable & " WHERE " & spriKey & " = " & tempArr(i) strConn.Execute(strSQL) Next End If delDub = True Else Response.Write Err.description End If strConn.Close Set strConn = Nothing If Err = 0 And delDub = True And tempArr <> "" Then Response.Write "<BR><B>" & prCount & "</B> duplicate record" If prCount <> 1 Then Response.Write "s" End If Response.Write " deleted successfully." & vbCrLf End If End If %> <HR><BR><DIV ALIGN="center"><B>Remove duplicate database records</B></DIV> <FORM ACTION="<%=File %>" METHOD="post"> <TABLE CELLPADDING="4" CELLSPACING="1" ALIGN="center" WIDTH="50%" STYLE="border: 1px outset" BGCOLOR="#FFFFFF"> <TR> <TD WIDTH="50%" BGCOLOR="#E9E9E9">Database:</TD> <TD WIDTH="50%" BGCOLOR="#E9E9E9"> <Input Type="text" SIZE="25" NAME="db" STYLE="text-align: right"><B>.mdb</B></TD></TR> <TR> <TD WIDTH="50%" BGCOLOR="#E9E9E9">Table Name:</TD> <TD WIDTH="50%" BGCOLOR="#E9E9E9"> <Input Type="text" SIZE="25" NAME="tb"></TD></TR> <TR> <TD WIDTH="50%" BGCOLOR="#E9E9E9">Field Name:</TD> <TD WIDTH="50%" BGCOLOR="#E9E9E9"> <Input Type="text" SIZE="25" NAME="fn"></TD></TR> <TR> <TD WIDTH="50%" BGCOLOR="#E9E9E9">Primary Key:</TD> <TD WIDTH="50%" BGCOLOR="#E9E9E9"> <Input Type="text" SIZE="25" NAME="pk"></TD></TR> <TR> <TD WIDTH="50%" BGCOLOR="#E9E9E9"> </TD> <TD WIDTH="50%" BGCOLOR="#E9E9E9"> <Input Type="submit" VALUE="Remove Duplicates"></TD></TR></TABLE></FORM> <HR> <% End If %> </BODY> </HTML>

Related Source Codes

Script Name Author
ııııııııııııııııııııı VyomWorld
Resistor color code reader A.Chermarajan.
Telephone Directory dhivya
card swapping game (Mini Project) nityanand
simple hangman-pascalsource Seabert
college dirtectory (Mini Project) msridhar
Poll Application John van Meter
ASP Daily Hit Counter. Tejaskumar Gandhi
To avoid null in asp environment using sql Sami
Maklumbalas webmaster
poll John van Meter
EasyASP Template Engine. TjoekBezoer
Basic Calculator using HTML & Javascript. Patrick M. D Souza
What servers support ASP ? VyomWorld
What is ASP? VyomWorld

A D V E R T I S E M E N T




Google Groups Subscribe to SourceCodesWorld - Techies Talk
Email:

Free eBook - Interview Questions: Get over 1,000 Interview Questions in an eBook for free when you join JobsAssist. Just click on the button below to join JobsAssist and you will immediately receive the Free eBook with thousands of Interview Questions in an ebook when you join.

New! Click here to Add your Code!


ASP Home | C Home | C++ Home | COBOL Home | Java Home | Pascal Home
Source Codes Home Page

 Advertisements  

Google Search

Google

Source Codes World.com is a part of Vyom Network.

Vyom Network : Web Hosting | Dedicated Server | Free SMS, GRE, GMAT, MBA | Online Exams | Freshers Jobs | Software Downloads | Interview Questions | Jobs, Discussions | Placement Papers | Free eBooks | Free eBooks | Free Business Info | Interview Questions | Free Tutorials | Arabic, French, German | IAS Preparation | Jokes, Songs, Fun | Free Classifieds | Free Recipes | Free Downloads | Bangalore Info | Tech Solutions | Project Outsourcing, Web Hosting | GATE Preparation | MBA Preparation | SAP Info | Software Testing | Google Logo Maker | Freshers Jobs

Sitemap | Privacy Policy | Terms and Conditions | Important Websites
Copyright ©2003-2024 SourceCodesWorld.com, All Rights Reserved.
Page URL: http://www.sourcecodesworld.com/source/show.asp?ScriptID=212


Download Yahoo Messenger | Placement Papers | Free SMS | C Interview Questions | C++ Interview Questions | Quick2Host Review