HiI have a simple insert query thru stored proc, but very confusing me is the query works if the insert item is 5. It failed without error message, just that no row is added.Working query:Insert SPC_DT16B_AllStatus(Plant,Process,Plating,Tank_Station_Id,Status)Values(@plant,@Process,@Plating,@Tank_Station_Id,@str_GlobalStatus)
If I add another field, it failesFailed query:Insert SPC_DT16B_AllStatus(Plant,Process,Plating,Tank_Station_Id,Status,Form_Factor)Values(@plant,@Process,@Plating,@Tank_Station_Id,@str_GlobalStatus,@Form_Factor)
I had check that it is not due to the data of newly added field 'Form_Factor', because the following query with Form_Factor, but 5 items only works.Working query:Insert SPC_DT16B_AllStatus(Plant,Process,Tank_Station_Id,Status,Form_Factor)Values(@plant,@Process,@Tank_Station_Id,@str_GlobalStatus,@Form_Factor)
Please advice.