473,473 Members | 1,419 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Help with Database Solution

I volunteer for a non-for profit group and they have alot of names in a
multiple databases. the problem is that some people are in multiple
databases. and if they send out a mailing from multiple databases some
people get 2 and 3 of the same thing. my idea was to either make or find a
program that has everyone is 1 database and then make the people part of
multiple groups. (ex: bill is part of group a and b and im doing a mailing
from both group i only want 1 piece of mail to go to him).

It can be a separate program or with access. that use access now but i cant
figure out how to make my idea work.

any question please ask.
tia
Stephen

Aug 4 '06 #1
4 1393
Try switching to Act! software. It's built for this type of situation.

Short of that, you're going to have to code it from the ground up.
Design it on paper first and think through the way the tables need to
join to get your data to work properly. It may take some time, but
proper database layouts will save you a mountain of headaches in the
future.

Stephen wrote:
I volunteer for a non-for profit group and they have alot of names in a
multiple databases. the problem is that some people are in multiple
databases. and if they send out a mailing from multiple databases some
people get 2 and 3 of the same thing. my idea was to either make or find a
program that has everyone is 1 database and then make the people part of
multiple groups. (ex: bill is part of group a and b and im doing a mailing
from both group i only want 1 piece of mail to go to him).

It can be a separate program or with access. that use access now but i cant
figure out how to make my idea work.

any question please ask.
tia
Stephen
Aug 4 '06 #2
Stephen,
I have done something similar where I work. The difficult part is
putting the multiple databases together into one. What I did is I took
one database as my starting point. Then I took a second database and
designed a routine that looped though each record of the second
database to see if that individual was already in my first db. I check
for the person's first name and last name. If it was not found, I then
check to see if there were any records in the first db that had a
variation of the person's first name and matching last name. For
example, Bill and William, John and Jonathan, Sue and Susan, etc. If a
duplicate was found, I saved a record to a table called Duplicates that
contained the data from the record I was checking as well as the
possible duplicate from the database. I then went back and checked the
possible duplicates. If I found a match, I deleted it. If the
possible duplicate was not a match, I then inserted it into the
database.

I hope that gives you a little direction at least.

Aug 4 '06 #3

Jeff L wrote:
Stephen,
I have done something similar where I work. The difficult part is
putting the multiple databases together into one. What I did is I took
one database as my starting point. Then I took a second database and
designed a routine that looped though each record of the second
database to see if that individual was already in my first db. I check
for the person's first name and last name. If it was not found, I then
check to see if there were any records in the first db that had a
variation of the person's first name and matching last name. For
example, Bill and William, John and Jonathan, Sue and Susan, etc. If a
duplicate was found, I saved a record to a table called Duplicates that
contained the data from the record I was checking as well as the
possible duplicate from the database. I then went back and checked the
possible duplicates. If I found a match, I deleted it. If the
possible duplicate was not a match, I then inserted it into the
database.

I hope that gives you a little direction at least.
I've done something similar for a customer DB on a project a few years
ago. A couple things to consider:
* validating the addresses
* matching name AND address.

There are some software products you can buy (not cheap) that validate
your addresses against the US Postal Service address database. They
used to have a place on their website (usps.com) where you could
manually validate an address against thier DB. Looks like you need
special permission to use that service now. You'll find the link for it
under the Zipcode look up.

When matching names and addresses, it is sometimes easier to match last
first. If you have a potential duplicate based on name, then try
matching on the address. It might be that Bill Jones is the son of
William Jones. And while they live in the same city, they on different
parts of town (different street addresses) Or Bill Jones moved when he
was promoted to VP and now lists his name more formally to go along
with his new job.

For a club you might make a report of potential dups and get some human
input into what is the real situation.

HTH,
Ed

Aug 4 '06 #4
Ted

ManningFan wrote:
Try switching to Act! software. It's built for this type of situation.
Act! is an impressive peice of software, but I didn't much like writing
code to interface with it. I encountered a number of bugs in the SDK
for it (but that was long enough ago that the bugs I encountered should
be long fixed).

OTOH, isn't SQL Server Integration Services also designed for this kind
of problem? It was recommended to me, and I have only begun to study
it, but as I recall from what I read about it, I would think it could
be useful here.

Cheers,

Ted

Aug 4 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Rajesh Garg | last post by:
I have actually extended my request I have a scenario like this....... update esan set tes_address_city = 'TEST1' --at some time update esan set tes_address_city = 'TEST12' --at some time...
7
by: Phin | last post by:
I need your HELP! I've seen all the posts on using Crystal Reports within vs.net (vb.net) and changing a SQL query at runtime. When I tried to pass in a dataset into the crystal report at...
9
by: Dom Boyce | last post by:
Hi First up, I am using MS Access 2002. I have a database which records analyst rating changes for a list of companies on a daily basis. Unfortunately, the database has been set up (by my...
9
by: Edward S | last post by:
I budget for a Project in an Excel sheet as illustrated below. The months below are usually a 2 year period i.e. 24 months, though it could be over 24 months depending upon a Project. I then...
0
by: Rob Cheshire | last post by:
Hi to all, I need some help deciding on the best database system for our specific application. OPTIONAL INFO: We currently have 2 separate projects that need to be updated from dos-based dBase. ...
1
by: MyndPhlyp | last post by:
I am about to completely lose what is left of my poor mynd! The historical dissertation gets rather verbose, so I hope you can wade through it all. I really need some help on this one or I'm...
16
by: Rex | last post by:
Hi All - I have a question that I think MIGHT be of interest to a number of us developers. I am somewhat new to VIsual Studio 2005 but not new to VB. I am looking for ideas about quick and...
15
by: Jay | last post by:
I have a multi threaded VB.NET application (4 threads) that I use to send text messages to many, many employees via system.timer at a 5 second interval. Basically, I look in a SQL table (queue) to...
1
by: warezguy05 | last post by:
Hi I'm developing a database driven website (my first one..) but i've run into a problem. My vision: The website should contain a database of DJ's that have played SETS at EVENTS (or raves...
9
by: O | last post by:
I need to do some lookups and updates on some legacy Access 2.0 files (they've from another vendor and I'm not in a position to update them). I was successful using VB6, but I've moved on to VS...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.