A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Unique table value: distinctrow



 
 
Thread Tools Display Modes
  #1  
Old August 24th, 2004, 02:37 AM
Dale
external usenet poster
 
Posts: n/a
Default Unique table value: distinctrow

I'll preface by saying I'm not sure where to best post this, queries or
tabledesign. For a study that is being conducted, I have a test table that
holds 4 million records, patient demograpic information with "test result",
one record for each "test result" for each date and time the test was
performed. For every "test result" for the same date and time the patient
demographic information is duplicated.

Each patient has a unique identifier. I am wanting to build an encounters
table having a unique record for each encounter date and time a time a test
was done. If 10 tests were ordered for one date and time I only want to
capture one instance of the visit. My encounters table is PatId, Date,
Time, Location where PatId, Date and Time are primary keys.

I had to do a "double filter" of the 4 million records to get the end result
of a table of encounters w/o duplicates. I could not append directly into
the encounters from the test table due to key violations...which was the my
rationale for doing the append in the first place. I had to do a 2-step
process using a make table query based on a distinctrow clause, then append
into the encounters table from table created in this intermediate step.

Why didn't an append directly into the encounters table from the test table
work? Was it because there were just too many records for access to manage?
Thus my workaround?

I'm working in Access 2000 as I need the 2G capacity, the database is 1.2G
at this moment.

I appologize if this isn't clear.


  #2  
Old August 24th, 2004, 06:11 PM
Tim Ferguson
external usenet poster
 
Posts: n/a
Default

"Dale" wrote in
:

Each patient has a unique identifier. I am wanting to build an
encounters table having a unique record for each encounter date and
time a time a test was done. If 10 tests were ordered for one date
and time I only want to capture one instance of the visit. My
encounters table is PatId, Date, Time, Location where PatId, Date and
Time are primary keys.


INSERT INTO Visits (PtID, VisitDate, VisitTime, Location)
SELECT DISTINCT PatID, TestDate, TestTime, Location
FROM Tests


Note that this will fail if you have records that have different Locations
for the same (PatID, Date, Time) so you may have some cleaning to do first.
That's normal theory for you! I would suggest inserting the records into a
temp table first in order to check and clean.

Oh, and don't forget the usual copious backups...


Hope that helps


Tim F

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
"automatically resize to fit contents" grayed out T Tables 5 July 26th, 2004 12:44 PM
Name not showing ID is René Setting Up & Running Reports 11 June 29th, 2004 01:40 AM
COMPARE THE TWO TABLES Stefanie General Discussion 0 June 4th, 2004 04:36 PM
Cannot join 1:M table into M:M tables Tom Database Design 4 May 19th, 2004 10:16 PM


All times are GMT +1. The time now is 04:22 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.