I need to modify a field in one of my tables to always be 0 instead of NULL. Basically, when a record is created in our application, it populates a table called Credit. There is a field in the Credit table called PortType. It always populates this field with NULL and I want it to always put a 0 in that field. Can I do this by modifying the properties of the field or do I have to create a stored procedure or what? Right now, I have to run an update statment once a week to change all values from NULL to 0. Thanks in advance!
-J
-J