惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Security Archives - TechRepublic
Security Archives - TechRepublic
Forbes - Security
Forbes - Security
C
Cyber Attacks, Cyber Crime and Cyber Security
Latest news
Latest news
V2EX - 技术
V2EX - 技术
Google DeepMind News
Google DeepMind News
Cyberwarzone
Cyberwarzone
Vercel News
Vercel News
V
Vulnerabilities – Threatpost
I
InfoQ
GbyAI
GbyAI
有赞技术团队
有赞技术团队
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
A
Arctic Wolf
F
Full Disclosure
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
C
Check Point Blog
Hugging Face - Blog
Hugging Face - Blog
Simon Willison's Weblog
Simon Willison's Weblog
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
Engineering at Meta
Engineering at Meta
The Register - Security
The Register - Security
T
Tor Project blog
T
Troy Hunt's Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
S
Security Affairs
W
WeLiveSecurity
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Stack Overflow Blog
Stack Overflow Blog
Apple Machine Learning Research
Apple Machine Learning Research
H
Heimdal Security Blog
S
Secure Thoughts
Y
Y Combinator Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Security Latest
Security Latest
Martin Fowler
Martin Fowler
G
Google Developers Blog
宝玉的分享
宝玉的分享
腾讯CDC
TaoSecurity Blog
TaoSecurity Blog
T
Threatpost
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Project Zero
Project Zero
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
MongoDB | Blog
MongoDB | Blog

博客园 - edrp.cn

日期函数——来源网络,方便查阅 生成所有货品条码(货品颜色定义的颜色才有条码) SQL SERVER 更新某个表的某个字段的值为自动编号的SQL 修改所有Detail Table 字段为Not in 'D' Name 用D的老哥儿们,你们怎么处理移动端的?直接上Java?C#.net?要是没有好的方案,加Q群交流,有个低代码框架不错,移动端,PC端,小程序,H5,都可以,觉得很适合D转过来 是几个意思呢 SQL Server利用ROW_NUMBER()函数,指定多个字段查出重复保留一条,删除多余记录 截至目前最便宜的Delphi客户端框架OneFastClient——899元,不是美元,是人民币,关键还是全源码 sql server 2008 R2在查询分析器执行查询某个表时一直在运行没有返回结果的原因 sql server 查询所有表名,字段名,字段类型 加载包失败的解决方法 ABFramework数据字典设置下拉列项找不到自己定义的,需要指定字段提示作为区分不同连接 sql server 多字段查询重复记录并删除 Delphi 开源免费的三层中间件 OneDelphi 高手是这样排查问题的——两层使用存储过程批量生成单据和查询分析器生成单据都正确,使用三层方式却少了三条记录 组合批量更新sql 方法 比while not FDQuery.eof do更高效率的读取数据 设置数据的LoadTables中有货品表,或者是清空里面的内容,不指定表 AB 中预警显示窗体中双击打开对应单据窗体
批量插入数据字典的方法,做个记录吧
edrp.cn · 2022-12-13 · via 博客园 - edrp.cn

 declare @TableName varchar(20),

@TableField varchar(20),
@FieldType varchar(20),
@FieldId varchar(10),
@Des varchar(100)
declare AddDetail cursor for
SELECT d.name , a.name,b.name, CONVERT(varchar(100),g.[value])
FROM syscolumns a
left join systypes b on a.xusertype=b.xusertype
inner join sysobjects d on a.id=d.id and d.xtype='U' and d.name<>'dtproperties'
left join syscomments e on a.cdefault=e.id
left join sys.extended_properties g on a.id=g.major_id and a.colid=g.minor_id
left join sys.extended_properties f on d.id=f.major_id and f.minor_id=0
where d.name='T_ProductionPlan' --如果只查询指定表,加上此条件
order by a.id,a.colorder

open addDetail

fetch next from addDetail into @TableName,@TableField,@FieldType,@Des
while @@FETCH_STATUS=0
begin
insert into Tbl_Dic_CreateDetail(TableTag,TableName,FieldName,XTYpe,DisPlayCaption)
values(2130,@TableName,@TableField,@FieldType,@Des)
fetch next from addDetail into @TableName,@TableField,@FieldType,@Des
end
close addDetail
deallocate addDetail