vote up 0 vote down star

Scenario: I have 2 entities Employee and Asset
Employee table (EmployeeID -- PK)  Asset table (EmployeeID --FK)
On the asset definition page, I have a dropdown of Active Employees, User will assign asset to Employee and later on, user goes to Employee definition page and Inactive to that employee. Now user goes to asset page and want to edit that particular asset record, there will be problem in asset definition page when dropdown selected value does not exist, since in asset definition page dropdown have only Active Employee list.

Please note this employee dropdown and similar kind of situation have too much used in my application, given solution have to implement in lot of places in my application, so I need best solution with minimum changes in my application :)

Advance Thanks

flag

76% accept rate

1 Answer

vote up 1 vote down

You could deny the possibility to set an employee to "Inactive" as long as he has assets assigned to him.

link|flag
you are trying to say that if user want to inactive employee record, System check if this employee is used in anywhere. In this way I have to check where ever employeeID goes as Foriegn Key, I have too many tables. When user edit record performance will be effected, because I need to check that employeeID from too many tables.... Thanks for your solution – Muhammad Akhtar Jun 11 at 7:04
I presume that setting employees to "Inactive" is not an operation that occurs several times a second. Also, if all foreign key fields are indexed in your tables, I cannot imagine a performance problem. I don't know your exact situation, however. – balpha Jun 11 at 7:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.