vote up 0 vote down star

I'm working with an old SQL 2000 database and I don't have a whole lot of SQL experience under my belt. When a new row is added to one of my tables I need to assign a default time value based off of a column for work category.

For example, work category A would assign a time value of 1 hour, category B would be 2 hours, etc...

It should only set the value if the user does not manually enter the time it took them to do the work. I thought about doing this with a default constraint but I don't think that will work if the default value has a dependency.

What would be the best way to do this?

flag

5 Answers

vote up 3 vote down check

I would use a trigger on Insert.

Just check to see if a value has been assigned, and if not, go grab the correct one and use it.

link|flag
vote up 0 vote down

So, for example, in a TAG table (where tags are applied to posts) if you want to count one tag as another...but default to counting new tags as themselves, you would have a trigger like this:

CREATE TRIGGER [dbo].[TR_Tag_Insert]
   ON  [dbo].[Tag]
   AFTER INSERT
AS 
BEGIN
   SET NOCOUNT ON;

   UPDATE dbo.Tag 
   SET [CountAs] = I.[ID]
   FROM INSERTED AS I
   WHERE I.[CountAs] IS NULL
   AND dbo.Tag.ID = I.ID
END
link|flag
vote up 0 vote down

Be sure to write the trigger so it will handle multi-row inserts. Do not process one row at a time in a trigger or assume only one row will be inteh inserted table.

link|flag
vote up 1 vote down

Generally I steer away from triggers. Almost all dbms have some sort of support for constraints.

I find them easier to understand , debug and maintain.

link|flag
If, as I understand the request, you only want to alter this value at insert, use a constraint. If you want to change it at any to the row, use a trigger. – Karl Apr 2 at 20:01
vote up 0 vote down

Yeah, trigger.

Naturally, instead of hard-coding the defaults, you'll look them up from a table.

Expanding on this, your new table then becomes the work_category table (id, name, default_hours), and you original table maintains a foreign key to it, transforming fom (id, work_category, hours) to (id, work_category_id, hours).

link|flag

Your Answer

Get an OpenID
or

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