如何在表中查找未使用的字段



I要删除未使用字段的表,以提高清晰度并可能提高性能。但首先我必须找出未使用的字段。有什么更优雅的解决方案的建议吗?也许在SQL中?

这是linqpad中的C#程序。

void Main()
{
    // Row count of non null fields in a table
    var l = Mapping.MappingSource.GetModel(typeof(DataContext)).GetMetaType(typeof(Briefing)).DataMembers;
    var list = new List<xfield>();
    object[] xparams = new object[0];
    foreach( var field in l.Where (x => x.DbType != null) ) {
        var sql = string.Format("SELECT count({0}) from table_name where {0} is not null", field.Name.ToLower());
        var result = ExecuteQuery<int>( sql, xparams );
        var count = result.First();
        list.Add( new xfield { name = field.Name, rows = count } );
    }   
    list.Where( e => e.rows == 0 ).Dump();
}
public class xfield
{
    public string name;
    public int rows; 
}

除非您知道对数据库执行的所有可能的查询,否则没有100%确定的方法可以发现未使用的列。

以下是您需要涵盖的两个一般事项:

  • 在数据库中查找对该表的所有引用(引用该表的函数、存储过程、触发器和其他)。

  • 检查所有正在执行的应用程序代码,看看是否可以找到对该表的引用。

尝试使用ApexSQL搜索数据库引用,因为它是一个免费工具。

相关内容

  • 没有找到相关文章

最新更新