Applications
Installed applications in the current environment, Update / Commit applications definitions

Error!

Last operation concluded with erros, consult application log for further details.

Tracking changes

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

manage_history Tracking changes


Database tracking changes is currently enabled.

Disable tracking ?
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
do_not_disturb_on Triggers on system tables

Insert triggers on system tables

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