jestin1979
Programmer
There is a table on SQL Server that I'm trying to bring down to an FP table. The table doesn't allow nulls in a couple of numeric fields, but in SQL they are NULL. If I append a blank row, and fill this row out by hand, I could leave these non-nullable fields alone and the row would save, Even with 'nothing' in them. What I'd like to be able to do is fill these fields with 'nothing' instead of NULL. (As this is some very old legacy code I'm dealing with, I'm hesitant to allow nulls in these fields for fear of breaking something seemingly unrelated).
The only thing I can think of to do off the top of my head would be to append a blank row, then update only the fields I want. That sounds like a horrible way to do this.
Any suggestions?
The only thing I can think of to do off the top of my head would be to append a blank row, then update only the fields I want. That sounds like a horrible way to do this.
Any suggestions?