Click here to Skip to main content
15,887,776 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I have never written triggers before, so would apprecite any helpor suggestion on this.

In my database I have 2 tables:

Master table (Orders)
OrderId
Department
Status

Table: Priority
OrderId
OrderPriority

What I want is:

1) Insert new priority:
when a status of an order is changed to "In Progress" in the master table, a new record should be added to the priority with a defualt low priority based on the department. Ex.if Priority table has 5 orders for department 001,then the order should be added with priority 6

2)Remove Priority:
when a status of an order is changed from "In Progress" to something else in the master table, then delete its priority in the Priority table and readjust the priorities for the related department. Ex.if Priority table has 5 orders for department 001,and the order for which the status got changed has priority of 3, then, delete this record and readjust the priority for the subsequent orders in that department.

Currently I am doing this through code, but hope that this can be managed within the database without putting extra coding load as I have many department and orders that needs to be maintained in such a way.

Thanks,
Navin
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900