Hi DBA guru's iam unable to back up the transaction log, because it is in disable state,how to enable the transaction log? Koteswar rao.Y
Hi, How do you mean disabled? What does the following queries return: SELECT type, name, state, state_desc FROM sys.database_files GOSELECT name, database_id, state, state_desc, recovery_model FROM sys.databasesWHERE database_id = db_id() /Elisabeth
Can you cross check whether you db is in full or bulk logged recovery mode. As you cannot take transaction log backups in simple recovery mode.
Hi, XLA monitors log records. A log record describes an insert, update or delete on a row in a table.