摘要: --开启操作,无法跨服务器查询用一下解锁方法 exec sp_configure 'show advanced options',1 reconfigure exec sp_configure 'Ad Hoc Distributed Queries',1 reconfigure --关闭操作 exe 阅读全文
posted @ 2025-01-24 16:15 SDdemon 阅读(100) 评论(0) 推荐(0)
摘要: select distinct name from sysobjects o, syscomments s where o.id = s.id and text like '%m_mrp_srm_base_His%' and o.xtype = 'P' select OBJECT_NAME(id) 阅读全文
posted @ 2025-01-24 16:13 SDdemon 阅读(148) 评论(0) 推荐(0)
摘要: DataTable 过滤、求和、去重 //多个多个重复去除 //去掉factoryCode,recWeek,materialNo,quantity,recDate,uploadDate相同的重复数据 DataView dv = new DataView(dt); // dt = dv.ToTable 阅读全文
posted @ 2025-01-24 16:11 SDdemon 阅读(316) 评论(0) 推荐(0)