I have a view to one table in SQL Server 7.0
I am developing in SQL Server 2000.
The view has two columns which are keys on the main table. I do not want the user to be
able to update the two columns which are keys but they can update the other columns in the view.
The users are connecting to the view with Access 2000. I have a last_updated_date field
that I would like to be updated automatically
when they make changes to the updateable columns on the view. I know triggers are expensive but there are about 166 thousand records on the database.
Please give me some advise on the best way to
approach this.
Thanks