Discussion:
Double Data Entry
(too old to reply)
Brandon Campbell
2004-10-22 14:03:01 UTC
Permalink
Hello,

I have recently taken over a double data entry database. I feel that the
design is not quite correct. The second data entry person has the right to
verify the input. I feel that both people should be entering the data and a
third person should be a verifier.

Therefore, I was thinking along the lines of having two identical databases
and merge the validated data into a production database. The other could be
to have a data entry database with identical copies of the tables (I feel
this would be a waste though).

Does anyone have an Idea! I have seen some examples on the internet, but I
would like to hear from others that use this method.

Thank you,
--
--------------------------------------------
Database Administrator
bkc5 AT CDC dot GOV
Mal <<removethis>
2004-10-22 14:11:03 UTC
Permalink
First idea would be to validate the data on the client side.

If you can't do that, create a mechanism that displays the status of your
data,
like , awaiting verification, and verified... On same DB same table, same
column different values.

Data still awaiting verification, exclude them in selects and vice-versa.

Hope this is a step towards what you were looking for.
Post by Brandon Campbell
Hello,
I have recently taken over a double data entry database. I feel that the
design is not quite correct. The second data entry person has the right to
verify the input. I feel that both people should be entering the data and a
third person should be a verifier.
Therefore, I was thinking along the lines of having two identical databases
and merge the validated data into a production database. The other could be
to have a data entry database with identical copies of the tables (I feel
this would be a waste though).
Does anyone have an Idea! I have seen some examples on the internet, but I
would like to hear from others that use this method.
Thank you,
--
--------------------------------------------
Database Administrator
bkc5 AT CDC dot GOV
Brandon Campbell
2004-10-22 14:33:09 UTC
Permalink
Mal,

My client will have validation on the fields.

This is my problem currently. We collect data from a clinic (paper forms)
and the data is entered by a person and re-entered and verified by the second
entry person. I feel that there is not enough degree of separation in the
second process.
Therefore, I think that we would need two separate databases that could be
compared and then update the production database.

Do you have any more suggestions?

Thank you,
Post by Mal <<removethis>
First idea would be to validate the data on the client side.
If you can't do that, create a mechanism that displays the status of your
data,
like , awaiting verification, and verified... On same DB same table, same
column different values.
Data still awaiting verification, exclude them in selects and vice-versa.
Hope this is a step towards what you were looking for.
Post by Brandon Campbell
Hello,
I have recently taken over a double data entry database. I feel that the
design is not quite correct. The second data entry person has the right to
verify the input. I feel that both people should be entering the data and a
third person should be a verifier.
Therefore, I was thinking along the lines of having two identical databases
and merge the validated data into a production database. The other could be
to have a data entry database with identical copies of the tables (I feel
this would be a waste though).
Does anyone have an Idea! I have seen some examples on the internet, but I
would like to hear from others that use this method.
Thank you,
--
--------------------------------------------
Database Administrator
bkc5 AT CDC dot GOV
Louis Davidson
2004-10-22 15:16:31 UTC
Permalink
I wouldn't suggest having two databases, just have a staging queue table. I
agree that you need to have (at least) two users doing heads down data
entry. Then have a third person resolving conflicts.

So you have two tables:

Transaction
transaction_key <-- the value that identifies the form
other columns

TransactionValidationQueue
transaction_key <-- whatever value you have on the physical form to
identify it
entered_by <-- the person who entered it
other columns


Now the users enter data into the validation queue, you can run a query to
find all rows with matching transaction_keys and all other important columns
matching and you can put them into the transaction table. Any that have
matching transaction_keys but unmatched other data could then be returned in
another query for the verification person to verify and correct.
--
----------------------------------------------------------------------------
Louis Davidson - ***@hotmail.com
SQL Server MVP

Compass Technology Management - www.compass.net
Pro SQL Server 2000 Database Design -
http://www.apress.com/book/bookDisplay.html?bID=266
Note: Please reply to the newsgroups only unless you are interested in
consulting services. All other replies may be ignored :)
Post by Brandon Campbell
Mal,
My client will have validation on the fields.
This is my problem currently. We collect data from a clinic (paper forms)
and the data is entered by a person and re-entered and verified by the second
entry person. I feel that there is not enough degree of separation in the
second process.
Therefore, I think that we would need two separate databases that could be
compared and then update the production database.
Do you have any more suggestions?
Thank you,
Post by Mal <<removethis>
First idea would be to validate the data on the client side.
If you can't do that, create a mechanism that displays the status of your
data,
like , awaiting verification, and verified... On same DB same table, same
column different values.
Data still awaiting verification, exclude them in selects and vice-versa.
Hope this is a step towards what you were looking for.
Post by Brandon Campbell
Hello,
I have recently taken over a double data entry database. I feel that the
design is not quite correct. The second data entry person has the right to
verify the input. I feel that both people should be entering the data and a
third person should be a verifier.
Therefore, I was thinking along the lines of having two identical databases
and merge the validated data into a production database. The other could be
to have a data entry database with identical copies of the tables (I feel
this would be a waste though).
Does anyone have an Idea! I have seen some examples on the internet, but I
would like to hear from others that use this method.
Thank you,
--
--------------------------------------------
Database Administrator
bkc5 AT CDC dot GOV
Brandon Campbell
2004-10-22 16:19:04 UTC
Permalink
Louis,

Are you suggesting that I have two tables in the database for each table?.
Unfortunately, the survey that is run a the clinic involves 14 forms and at
least 14 tables that the information is stored in. I have managed to combine
some tables as they were similiar in style and function, but then I also
normalised other tables. Therefore, I still have around 16 tables.

OR

Are you suggesting that I use the entry person as part of the key and
compare the other key values and then write the combined answer to a new
record?

Thank you,

Brandon
Post by Louis Davidson
I wouldn't suggest having two databases, just have a staging queue table. I
agree that you need to have (at least) two users doing heads down data
entry. Then have a third person resolving conflicts.
Transaction
transaction_key <-- the value that identifies the form
other columns
TransactionValidationQueue
transaction_key <-- whatever value you have on the physical form to
identify it
entered_by <-- the person who entered it
other columns
Now the users enter data into the validation queue, you can run a query to
find all rows with matching transaction_keys and all other important columns
matching and you can put them into the transaction table. Any that have
matching transaction_keys but unmatched other data could then be returned in
another query for the verification person to verify and correct.
--
----------------------------------------------------------------------------
SQL Server MVP
Compass Technology Management - www.compass.net
Pro SQL Server 2000 Database Design -
http://www.apress.com/book/bookDisplay.html?bID=266
Note: Please reply to the newsgroups only unless you are interested in
consulting services. All other replies may be ignored :)
Post by Brandon Campbell
Mal,
My client will have validation on the fields.
This is my problem currently. We collect data from a clinic (paper forms)
and the data is entered by a person and re-entered and verified by the
second
Post by Brandon Campbell
entry person. I feel that there is not enough degree of separation in the
second process.
Therefore, I think that we would need two separate databases that could be
compared and then update the production database.
Do you have any more suggestions?
Thank you,
Post by Mal <<removethis>
First idea would be to validate the data on the client side.
If you can't do that, create a mechanism that displays the status of
your
Post by Brandon Campbell
Post by Mal <<removethis>
data,
like , awaiting verification, and verified... On same DB same table,
same
Post by Brandon Campbell
Post by Mal <<removethis>
column different values.
Data still awaiting verification, exclude them in selects and
vice-versa.
Post by Brandon Campbell
Post by Mal <<removethis>
Hope this is a step towards what you were looking for.
Post by Brandon Campbell
Hello,
I have recently taken over a double data entry database. I feel that
the
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
design is not quite correct. The second data entry person has the
right to
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
verify the input. I feel that both people should be entering the data
and a
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
third person should be a verifier.
Therefore, I was thinking along the lines of having two identical
databases
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
and merge the validated data into a production database. The other
could be
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
to have a data entry database with identical copies of the tables (I
feel
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
this would be a waste though).
Does anyone have an Idea! I have seen some examples on the internet,
but I
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
would like to hear from others that use this method.
Thank you,
--
--------------------------------------------
Database Administrator
bkc5 AT CDC dot GOV
Louis Davidson
2004-10-23 06:10:30 UTC
Permalink
I was suggesting that you have two tables, one for data inprogress, and one
for actual live data. It would be easier to deal with, since you wouldn't
have to work with codes or have invalid data in your primary tables. It
would take more tables, but I am generally for more tables, and since they
would be copies of existing tables for the most part, they would be fine.

You could simply have one table with a status code, let the first user enter
the data into the table with a code that says unchecked, then have the
second person key it in. If their data matches, you change the status (and
document the two persons who checked it somehow.) If they don't match, have
a single second table with exceptions that has the keyvalue and a list of
things that are incorrect.

A third alternative would be to use XML to store the forms. You could have
a raw form table that stores any type of form in XML. Then validate the XML
matches (probably an external program required) and then put the data into
the relational structures.
--
----------------------------------------------------------------------------
Louis Davidson - ***@hotmail.com
SQL Server MVP

Compass Technology Management - www.compass.net
Pro SQL Server 2000 Database Design -
http://www.apress.com/book/bookDisplay.html?bID=266
Note: Please reply to the newsgroups only unless you are interested in
consulting services. All other replies may be ignored :)
Post by Brandon Campbell
Louis,
Are you suggesting that I have two tables in the database for each table?.
Unfortunately, the survey that is run a the clinic involves 14 forms and at
least 14 tables that the information is stored in. I have managed to combine
some tables as they were similiar in style and function, but then I also
normalised other tables. Therefore, I still have around 16 tables.
OR
Are you suggesting that I use the entry person as part of the key and
compare the other key values and then write the combined answer to a new
record?
Thank you,
Brandon
Post by Louis Davidson
I wouldn't suggest having two databases, just have a staging queue table. I
agree that you need to have (at least) two users doing heads down data
entry. Then have a third person resolving conflicts.
Transaction
transaction_key <-- the value that identifies the form
other columns
TransactionValidationQueue
transaction_key <-- whatever value you have on the physical form to
identify it
entered_by <-- the person who entered it
other columns
Now the users enter data into the validation queue, you can run a query to
find all rows with matching transaction_keys and all other important columns
matching and you can put them into the transaction table. Any that have
matching transaction_keys but unmatched other data could then be returned in
another query for the verification person to verify and correct.
--
--------------------------------------------------------------------------
--
Post by Brandon Campbell
Post by Louis Davidson
SQL Server MVP
Compass Technology Management - www.compass.net
Pro SQL Server 2000 Database Design -
http://www.apress.com/book/bookDisplay.html?bID=266
Note: Please reply to the newsgroups only unless you are interested in
consulting services. All other replies may be ignored :)
Post by Brandon Campbell
Mal,
My client will have validation on the fields.
This is my problem currently. We collect data from a clinic (paper forms)
and the data is entered by a person and re-entered and verified by the
second
Post by Brandon Campbell
entry person. I feel that there is not enough degree of separation in the
second process.
Therefore, I think that we would need two separate databases that could be
compared and then update the production database.
Do you have any more suggestions?
Thank you,
Post by Mal <<removethis>
First idea would be to validate the data on the client side.
If you can't do that, create a mechanism that displays the status of
your
Post by Brandon Campbell
Post by Mal <<removethis>
data,
like , awaiting verification, and verified... On same DB same table,
same
Post by Brandon Campbell
Post by Mal <<removethis>
column different values.
Data still awaiting verification, exclude them in selects and
vice-versa.
Post by Brandon Campbell
Post by Mal <<removethis>
Hope this is a step towards what you were looking for.
Post by Brandon Campbell
Hello,
I have recently taken over a double data entry database. I feel that
the
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
design is not quite correct. The second data entry person has the
right to
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
verify the input. I feel that both people should be entering the data
and a
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
third person should be a verifier.
Therefore, I was thinking along the lines of having two identical
databases
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
and merge the validated data into a production database. The other
could be
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
to have a data entry database with identical copies of the tables (I
feel
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
this would be a waste though).
Does anyone have an Idea! I have seen some examples on the internet,
but I
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
would like to hear from others that use this method.
Thank you,
--
--------------------------------------------
Database Administrator
bkc5 AT CDC dot GOV
Brandon Campbell
2004-10-25 11:31:02 UTC
Permalink
Louis,

As for the overhead, I have a whole server at my disposal. I was thinking of
replicating the database to ease in the production part. I think having a
data entry database and a production database will give me the flexibility to
validate and verify and have a solid database for research.

Thank you for your advise.

Brandon
Post by Louis Davidson
I was suggesting that you have two tables, one for data inprogress, and one
for actual live data. It would be easier to deal with, since you wouldn't
have to work with codes or have invalid data in your primary tables. It
would take more tables, but I am generally for more tables, and since they
would be copies of existing tables for the most part, they would be fine.
You could simply have one table with a status code, let the first user enter
the data into the table with a code that says unchecked, then have the
second person key it in. If their data matches, you change the status (and
document the two persons who checked it somehow.) If they don't match, have
a single second table with exceptions that has the keyvalue and a list of
things that are incorrect.
A third alternative would be to use XML to store the forms. You could have
a raw form table that stores any type of form in XML. Then validate the XML
matches (probably an external program required) and then put the data into
the relational structures.
--
----------------------------------------------------------------------------
SQL Server MVP
Compass Technology Management - www.compass.net
Pro SQL Server 2000 Database Design -
http://www.apress.com/book/bookDisplay.html?bID=266
Note: Please reply to the newsgroups only unless you are interested in
consulting services. All other replies may be ignored :)
Post by Brandon Campbell
Louis,
Are you suggesting that I have two tables in the database for each table?.
Unfortunately, the survey that is run a the clinic involves 14 forms and
at
Post by Brandon Campbell
least 14 tables that the information is stored in. I have managed to
combine
Post by Brandon Campbell
some tables as they were similiar in style and function, but then I also
normalised other tables. Therefore, I still have around 16 tables.
OR
Are you suggesting that I use the entry person as part of the key and
compare the other key values and then write the combined answer to a new
record?
Thank you,
Brandon
Post by Louis Davidson
I wouldn't suggest having two databases, just have a staging queue
table. I
Post by Brandon Campbell
Post by Louis Davidson
agree that you need to have (at least) two users doing heads down data
entry. Then have a third person resolving conflicts.
Transaction
transaction_key <-- the value that identifies the form
other columns
TransactionValidationQueue
transaction_key <-- whatever value you have on the physical form to
identify it
entered_by <-- the person who entered it
other columns
Now the users enter data into the validation queue, you can run a query
to
Post by Brandon Campbell
Post by Louis Davidson
find all rows with matching transaction_keys and all other important
columns
Post by Brandon Campbell
Post by Louis Davidson
matching and you can put them into the transaction table. Any that have
matching transaction_keys but unmatched other data could then be
returned in
Post by Brandon Campbell
Post by Louis Davidson
another query for the verification person to verify and correct.
--
--------------------------------------------------------------------------
--
Post by Brandon Campbell
Post by Louis Davidson
SQL Server MVP
Compass Technology Management - www.compass.net
Pro SQL Server 2000 Database Design -
http://www.apress.com/book/bookDisplay.html?bID=266
Note: Please reply to the newsgroups only unless you are interested in
consulting services. All other replies may be ignored :)
Post by Brandon Campbell
Mal,
My client will have validation on the fields.
This is my problem currently. We collect data from a clinic (paper
forms)
Post by Brandon Campbell
Post by Louis Davidson
Post by Brandon Campbell
and the data is entered by a person and re-entered and verified by the
second
Post by Brandon Campbell
entry person. I feel that there is not enough degree of separation in
the
Post by Brandon Campbell
Post by Louis Davidson
Post by Brandon Campbell
second process.
Therefore, I think that we would need two separate databases that
could be
Post by Brandon Campbell
Post by Louis Davidson
Post by Brandon Campbell
compared and then update the production database.
Do you have any more suggestions?
Thank you,
Post by Mal <<removethis>
First idea would be to validate the data on the client side.
If you can't do that, create a mechanism that displays the status of
your
Post by Brandon Campbell
Post by Mal <<removethis>
data,
like , awaiting verification, and verified... On same DB same table,
same
Post by Brandon Campbell
Post by Mal <<removethis>
column different values.
Data still awaiting verification, exclude them in selects and
vice-versa.
Post by Brandon Campbell
Post by Mal <<removethis>
Hope this is a step towards what you were looking for.
Post by Brandon Campbell
Hello,
I have recently taken over a double data entry database. I feel
that
Post by Brandon Campbell
Post by Louis Davidson
the
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
design is not quite correct. The second data entry person has the
right to
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
verify the input. I feel that both people should be entering the
data
Post by Brandon Campbell
Post by Louis Davidson
and a
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
third person should be a verifier.
Therefore, I was thinking along the lines of having two identical
databases
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
and merge the validated data into a production database. The other
could be
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
to have a data entry database with identical copies of the tables
(I
Post by Brandon Campbell
Post by Louis Davidson
feel
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
this would be a waste though).
Does anyone have an Idea! I have seen some examples on the
internet,
Post by Brandon Campbell
Post by Louis Davidson
but I
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
would like to hear from others that use this method.
Thank you,
--
--------------------------------------------
Database Administrator
bkc5 AT CDC dot GOV
Louis Davidson
2004-10-25 13:20:45 UTC
Permalink
Yeah, it just seems to me that the work involved in having two separate
databases would be greater than the engineering required to get a system
built to do it in a straightforward way.
--
----------------------------------------------------------------------------
Louis Davidson - ***@hotmail.com
SQL Server MVP

Compass Technology Management - www.compass.net
Pro SQL Server 2000 Database Design -
http://www.apress.com/book/bookDisplay.html?bID=266
Note: Please reply to the newsgroups only unless you are interested in
consulting services. All other replies may be ignored :)
Post by Brandon Campbell
Louis,
As for the overhead, I have a whole server at my disposal. I was thinking of
replicating the database to ease in the production part. I think having a
data entry database and a production database will give me the flexibility to
validate and verify and have a solid database for research.
Thank you for your advise.
Brandon
Post by Louis Davidson
I was suggesting that you have two tables, one for data inprogress, and one
for actual live data. It would be easier to deal with, since you wouldn't
have to work with codes or have invalid data in your primary tables. It
would take more tables, but I am generally for more tables, and since they
would be copies of existing tables for the most part, they would be fine.
You could simply have one table with a status code, let the first user enter
the data into the table with a code that says unchecked, then have the
second person key it in. If their data matches, you change the status (and
document the two persons who checked it somehow.) If they don't match, have
a single second table with exceptions that has the keyvalue and a list of
things that are incorrect.
A third alternative would be to use XML to store the forms. You could have
a raw form table that stores any type of form in XML. Then validate the XML
matches (probably an external program required) and then put the data into
the relational structures.
--
--------------------------------------------------------------------------
--
Post by Brandon Campbell
Post by Louis Davidson
SQL Server MVP
Compass Technology Management - www.compass.net
Pro SQL Server 2000 Database Design -
http://www.apress.com/book/bookDisplay.html?bID=266
Note: Please reply to the newsgroups only unless you are interested in
consulting services. All other replies may be ignored :)
Post by Brandon Campbell
Louis,
Are you suggesting that I have two tables in the database for each table?.
Unfortunately, the survey that is run a the clinic involves 14 forms and
at
Post by Brandon Campbell
least 14 tables that the information is stored in. I have managed to
combine
Post by Brandon Campbell
some tables as they were similiar in style and function, but then I also
normalised other tables. Therefore, I still have around 16 tables.
OR
Are you suggesting that I use the entry person as part of the key and
compare the other key values and then write the combined answer to a new
record?
Thank you,
Brandon
Post by Louis Davidson
I wouldn't suggest having two databases, just have a staging queue
table. I
Post by Brandon Campbell
Post by Louis Davidson
agree that you need to have (at least) two users doing heads down data
entry. Then have a third person resolving conflicts.
Transaction
transaction_key <-- the value that identifies the form
other columns
TransactionValidationQueue
transaction_key <-- whatever value you have on the physical form to
identify it
entered_by <-- the person who entered it
other columns
Now the users enter data into the validation queue, you can run a query
to
Post by Brandon Campbell
Post by Louis Davidson
find all rows with matching transaction_keys and all other important
columns
Post by Brandon Campbell
Post by Louis Davidson
matching and you can put them into the transaction table. Any that have
matching transaction_keys but unmatched other data could then be
returned in
Post by Brandon Campbell
Post by Louis Davidson
another query for the verification person to verify and correct.
--
--------------------------------------------------------------------------
Post by Louis Davidson
--
Post by Brandon Campbell
Post by Louis Davidson
SQL Server MVP
Compass Technology Management - www.compass.net
Pro SQL Server 2000 Database Design -
http://www.apress.com/book/bookDisplay.html?bID=266
Note: Please reply to the newsgroups only unless you are interested in
consulting services. All other replies may be ignored :)
Post by Brandon Campbell
Mal,
My client will have validation on the fields.
This is my problem currently. We collect data from a clinic (paper
forms)
Post by Brandon Campbell
Post by Louis Davidson
Post by Brandon Campbell
and the data is entered by a person and re-entered and verified by the
second
Post by Brandon Campbell
entry person. I feel that there is not enough degree of separation in
the
Post by Brandon Campbell
Post by Louis Davidson
Post by Brandon Campbell
second process.
Therefore, I think that we would need two separate databases that
could be
Post by Brandon Campbell
Post by Louis Davidson
Post by Brandon Campbell
compared and then update the production database.
Do you have any more suggestions?
Thank you,
Post by Mal <<removethis>
First idea would be to validate the data on the client side.
If you can't do that, create a mechanism that displays the status of
your
Post by Brandon Campbell
Post by Mal <<removethis>
data,
like , awaiting verification, and verified... On same DB same table,
same
Post by Brandon Campbell
Post by Mal <<removethis>
column different values.
Data still awaiting verification, exclude them in selects and
vice-versa.
Post by Brandon Campbell
Post by Mal <<removethis>
Hope this is a step towards what you were looking for.
Post by Brandon Campbell
Hello,
I have recently taken over a double data entry database. I feel
that
Post by Brandon Campbell
Post by Louis Davidson
the
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
design is not quite correct. The second data entry person has the
right to
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
verify the input. I feel that both people should be entering the
data
Post by Brandon Campbell
Post by Louis Davidson
and a
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
third person should be a verifier.
Therefore, I was thinking along the lines of having two identical
databases
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
and merge the validated data into a production database. The other
could be
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
to have a data entry database with identical copies of the tables
(I
Post by Brandon Campbell
Post by Louis Davidson
feel
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
this would be a waste though).
Does anyone have an Idea! I have seen some examples on the
internet,
Post by Brandon Campbell
Post by Louis Davidson
but I
Post by Brandon Campbell
Post by Mal <<removethis>
Post by Brandon Campbell
would like to hear from others that use this method.
Thank you,
--
--------------------------------------------
Database Administrator
bkc5 AT CDC dot GOV
k***@gmail.com
2012-10-17 05:00:24 UTC
Permalink
Two pass verification, also called double data entry, it is nothing but data entry quality control method that was originally employed when data records were entered onto sequential 80 column Hollerith cards with a keypunch. In the first pass through a set of records, the data keystrokes were entered onto each card as the data entry operator typed them. On the second pass through the batch, an operator at a separate machine, called a verifier, entered the same data. The verifier compared the second operator's keystrokes with the contents of the original card. If there were no differences, a verification notch was punched on the right edge of the card.

Informatics Outsourcing is an Offshore Data Management service company. Data Management Service includes all types of Data Entry Services like Text Data Entry, Numerical Data Entry, Double Key Data Entry, Image Data Entry with affordable price. Our team to give the solution quickly and given requirements.
rpresser
2012-10-21 06:48:21 UTC
Permalink
So now spammers are replying to eight year old threads?

Loading...