SQL server command to remove 2 from column

 2 Replies
 0 Subscribed to this topic
 17 Subscribed to this forum
Sort:
Author
Messages
bgodwin
New Member Send Private Message
Posts: 0
New Member
I tried

update lawson.PRMONITOR set LP140_RUN_FLG = null

but it does not allow nulls...we need to get prmonitor reset to take the 2 out of the column

any ideas?

I was not about to do the pgmdef changes that gsc requested since I do not have c access.
Ben Coonfield
Veteran Member Send Private Message
Posts: 146
Veteran Member
How about update lawson.PRMONITOR set LP140_RUN_FLG = ' ' to set it to space?
bgodwin
New Member Send Private Message
Posts: 0
New Member
I suppose that I was nervous about putting a space in there...for the other columns that are showing as blank..there is not a space in there. Not sure how the system would react if it encounterd a space when it was not expecting it.