Recordset with Primary Key

A

Adax

Hello! I have recordset r with about 50 000 records. There are about 50%
duplicate records. I have idea to guckly removing duplicats: Next recordset
r2 with Primary Key in field "x1". When I make update r2 from r, I think, I
automtically resive records without duplicates. Unfornately, I can't make
Primary Key for field. Is it possible? How make it and how make update r2
form r? Thanks!

Dim r As ADODB.Recordset
Set r = New Recordset

For i = 1 To 3
r.Fields.Append "X" & i, adDouble, , adFldUpdatable
Next i

How to set Primary Index field(1) ("X1")
 
U

UglyChicken

 Hello!  I have recordset r with about 50 000 records. There are about 50%
duplicate records. I have idea to guckly removing duplicats: Next recordset
r2 with Primary Key in field "x1". When I make update r2 from r, I think,I
automtically resive records without duplicates. Unfornately, I can't make
Primary Key for field. Is it possible? How make it and how make update r2
form r? Thanks!

        Dim r As ADODB.Recordset
        Set r = New Recordset

            For i = 1 To 3
                r.Fields.Append "X" & i, adDouble, , adFldUpdatable
            Next i

How to set Primary  Index  field(1) ("X1")

Can you modify to some like SELECT DISTINCT <field> FROM <table>
 
A

Adax

Uzytkownik "UglyChicken said:
Can you modify to some like SELECT DISTINCT <field> FROM <table>

Thanks! But I don't have the table, I have only recordset. Is it possible
without table get SELECT DISTINCT from Recordsetu?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top