sysfile looks at the allocation size of the logfile file
You can see the space usage of data files in sysindexes, but where is the usage of logfile space?
Not found, thank you all
Here are the join relationships of the tables:
declare @object_id int
set @ object_id = object_id ('ta')
select name from syscolumns where id = @ object_id and colid in (
select colid from sysindexkeys where @ object_id = id and indid in (
select indid from sysindexes where @ object_id = id and name in (
select name from sysobjects where xtype = 'PK' and parent_obj = @ object_id
)))
No, to log space information, use DBCC SQLPERF (LOGSPACE)
Can be found out, but I want to know in which table the usage of this log space is placed. I haven't found it for a long time