Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Cannot insert a row in a table
Message
From
18/05/2023 05:11:36
 
General information
Forum:
Visual FoxPro
Category:
Troubleshooting
Miscellaneous
Thread ID:
01686586
Message ID:
01686595
Views:
60
>>>>>Hi,
>>>>>
>>>>>Yesterday, a customer had to restore one table in the SQL Server DB. The reason was that they made a mistake, updated multiple rows and it was wrong. So, the DBA restored the table from the backup.
>>>>>
>>>>>Now, whenever they (any user) try to add a row/record to this table, an error comes up that the sql server cannot insert the value NULL into a column "so_and_so". And if I change the column to allow null, the error goes to the next column that does not allow NULLs. I checked that there are many columns that do not allow nulls and it worked before. Now it failed.
>>>>>The application is using CursorAdapter.
>>>>>The application has not been changed.
>>>>>
>>>>>Any suggestions?
>>>>>
>>>>>TIA
>>>>
>>>>You should have DEFAULT values for the columns that does not allow nulls (unless of course they should be filled by the application)
>>>>The other way is to set DEFAULT values in your CA CursorSchema property.
>>>
>>>You were right. Many columns have a default set to a value 0 (zero) or an empty string. But some others have default set to dbo.UW_ZeroDefault. This default was wiped out when the customer restored the table from the backup.
>>>Once I set the default of those columns back to dbo.UW_ZeroDefault, everything works again.
>>>I can't thank you enough!!!
>>
>>>>This default was wiped out when the customer restored the table from the backup.
>>
>>Which is why it's a good idea to explicitly set each value when inserting a row.
>
>I will consider adding this feature. Thank you.

This feature might protect your table against bumbling users inserting rows
via Odbc (think Excel or Vfp command or other tool)
as the null columns will error out.

No protection against willful bad hat, as even stupid ones will figure it out fast,
but better than nothing.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform