I just created an Access 2000 Database schema and would like to know if it looks efficient and need any advise that you can give me on this.
Here is how I have my tables now:
Project Table
Requester Table
Management Table
The Front end GUI is a Web Form that asks for Requester information (just the first and last name to start) then leads the user to another page to enter the rest of Requester info and the Management information and the Project information.
If the requester first and last name is already in the database then he will have all his requester info already showing on the next page but will have to enter new management info and project info because that always changes.
Please advise because everything works but was hoping to find out if I did this schema correctly and efficient?
Here is how I have my tables now:
Project Table
Code:
projectID - Primary Key
requesterID - Foreign Key
managementID - Foreign Key
priority
projectInfo
Requester Table
Code:
requesterID - Primary Key
requesterFirstName
requesterLastName
requesterPhone
requesterOffice
Management Table
Code:
managementID - Primary Key
managementFirstName
managementLastName
managementInfo
managementPhone
The Front end GUI is a Web Form that asks for Requester information (just the first and last name to start) then leads the user to another page to enter the rest of Requester info and the Management information and the Project information.
If the requester first and last name is already in the database then he will have all his requester info already showing on the next page but will have to enter new management info and project info because that always changes.
Please advise because everything works but was hoping to find out if I did this schema correctly and efficient?