Last operation concluded with erros, consult application log for further details.
Database tracking changes is currently disabled or some newly created system tables are without tracking change enables.
Select name From sys.tables Where object_id in (SELECT major_id FROM sys.extended_properties WHERE NAME In ('System', 'TrackChanges') AND VALUE = 'True') And object_id not in (Select object_id From sys.change_tracking_tables)
Enable tracking
Database tracking changes is currently enabled.
EXEC sp_MSforeachtable @command1='ALTER TABLE ? DISABLE CHANGE_TRACKING;', @whereand='AND o.id in (Select object_id From sys.change_tracking_tables)' ALTER DATABASE [rent.sinapsi.biz] SET CHANGE_TRACKING = OFF
No triggers found on system tables.
Currently, insert triggers on system tables are enabled.
Disabling these triggers will permit ad-hoc SQL INSERT statements. Ensure you set the identity seed appropriately to align with the correct application range.
Disable deny insert triggers