Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6702115
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T07:00:53+00:00 2026-05-26T07:00:53+00:00

I have developed a data entry website that allow staffs to add records on

  • 0

I have developed a data entry website that allow staffs to add records on to our system. Staffs can add thousands of records into our database, however I need a way to keep track which staff are inserting data in a record, when they have finished a record, and who are proof reading the records. (Note: Its not audit system)

I need a good management technique, how can it be done?

Here a number of Teams I could think of:

  1. Data Entry Team

  2. Proof Reading Team

  3. Admin Team

When staff (Data Entry Team) completed a record – he/she will then click on the Complete button. Then somehow it should assign to ‘Proof Reading Team’ automatically.

A record need to be checked twice from a Proof Reading Team. If StaffB finish proof reading then another member from Proof Reading Team need to check it again.

When Proof reading is done, Admin Team will then assign “Record Completed” or something like that.

In a few months later record might need to be updated (spelling mistake, price change, etc) – Admin might to assign record to Data entry team.

Here what I tried:

mysql> select * from records;
+----+------------+----------------------+
| id | name       | address              |
+----+------------+----------------------+
|  1 | Bill Gates | Text 1 Text  Text 1  |
|  2 | Jobs Steve | Text 2 Text 2 Text 2 |
+----+------------+----------------------+


mysql> select * from staffs;
+----+-----------+-----------+---------------+
| id | username  | password  | group         |
+----+-----------+-----------+---------------+
|  1 | admin1    | admin1    | admin         |
|  2 | DEntryA   | DEntryA   | data_entry    |
|  3 | DEntryB   | DEntryB   | data_entry    |
|  4 | PReadingA | PReadingA | proof_reading |
|  5 | PReadingB | PReadingB | proof_reading |
+----+-----------+-----------+---------------+


mysql> select * from data_entry;
+----+------------+-----------+------------------------+
| id | records_id | staffs_id | record_status          |
+----+------------+-----------+------------------------+
|  1 |          2 |         3 | data_entry_processiing |
|  2 |          2 |         3 | data_entry_completed   |
|  3 |          2 |         4 | proof_read_processing  |
|  4 |          2 |         4 | proof_read_completed   |
|  5 |          2 |         5 | proof_read_processing  |
|  6 |          2 |         5 | proof_read_completed   |
+----+------------+-----------+------------------------+

Is this how it should be done for managing records? or what is the alternative better solution?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T07:00:54+00:00Added an answer on May 26, 2026 at 7:00 am

    You could do something like the structure below.

    The records & staffs tables are from your question (pretty much). I have added in the following based on what you described:

    team –> holds all of the teams

    teamStaff –> holds which staff members are in which team

    recordStatusType –> holds all of the statuses that a record can be in

    teamRecordStatusType –> holds which teams (and by relation which staff members) are allowed to process records in which status i.e Data Entry Team are allowed to process records in Data Entry Processing & Data Entry Complete statuses but nothing else. An Admin team could be set up here with all status types so that they can ‘see’ all records irrespective of what status they are in.

    recordCurrentStatus –> the current status of a given record along with who made the last change and when that change was made. This should allow you to disallow any user in the same team e.g. Proof Reading Team, who has already completed the first proof reading and needs to pass it onto another member of the team. This table will also allow a given record’s status to be changed by an admin and assigned a status ad hoc.

    Hope this helps!

    mysql> select * from records;
    +----+------------+----------------------+
    | id | name       | address              |
    +----+------------+----------------------+
    |  1 | Bill Gates | Text 1 Text  Text 1  |
    |  2 | Jobs Steve | Text 2 Text 2 Text 2 |
    +----+------------+----------------------+
    
    mysql> select * from team;
    +----+---------------------+
    | id | team                |
    +----+---------------------+
    |  1 | Data Entry Team     |
    |  2 | Proof Reading Team  | 
    |  3 | Admin Team          | 
    +----+---------------------+
    
    mysql> select * from staffs;
    +----+-----------+-----------+
    | id | username  | password  |
    +----+-----------+-----------+
    |  1 | admin1    | admin1    |
    |  2 | DEntryA   | DEntryA   |
    |  3 | DEntryB   | DEntryB   |
    |  4 | PReadingA | PReadingA |
    |  5 | PReadingB | PReadingB |
    +----+-----------+-----------+
    
    mysql> select * from teamStaff;
    +----+---------+--------+
    | id | staffId | teamId |
    +----+---------+--------+
    |  1 |    1    |   3    |
    |  2 |    2    |   1    |
    +----+------------------+
    
    mysql> select * from recordStatusType;
    +----+---------------------------+
    | id | statusType                |
    +----+---------------------------+
    |  1 | Data Entry Processing     |
    |  2 | Data Entry Complete       |
    |  3 | Ready for Proof Reading 1 | 
    |  4 | Proof Reading 1 Complete  |   
    |  5 | Ready for Proof Reading 2 | 
    |  6 | Proof Reading 2 Complete  | 
    +----+---------------------------+
    
    mysql> select * from teamRecordStatusType;
    +----+---------+-------------+
    | id | teamId | statusTypeId |
    +----+---------+-------------+
    |  1 |    1    |     1       |
    |  2 |    1    |     2       |
    |  3 |    2    |     3       | 
    |  4 |    2    |     4       | 
    |  5 |    2    |     5       |
    |  6 |    2    |     6       |
    +----+-----------------------+
    
    mysql> select * from recordCurrentStatus;
    +----+-----------+--------------+---------------------+-----------------------+
    | id | recordsId | statusTypeId | lastModified        | lastModifiedByStaffId |
    +----+-----------+--------------+---------------------+-----------------------+
    |  1 |    1      |     1        | 2011-10-17 10:24:12 |          1            |
    |  2 |    1      |     2        | 2011-10-17 08:24:12 |          1            |
    +----+--------------------------+---------------------+-----------------------+
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have developed a website (PHP) that allow staffs to add records on to
I have developed a python C-extension that receives data from python and compute some
As a new entry into mobile devices development, I have a question: Can one
Can anyone please help me. I have developed macro that keeps track of huge
I have developed my app using core data. It works fine in the simulator.
I have developed a VB.Net code for retrieving data from excel file .I load
We have developed map base application. We have implemented multi-threading for display data on
I have a web application developed in ASP.NET 2.0, deployed in a data center.
I have an IP camera which can give me media-data by RTSP. I develop
I have a huge database that has several tables that hold several million records.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.