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

推荐订阅源

T
The Blog of Author Tim Ferriss
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
云风的 BLOG
云风的 BLOG
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
P
Palo Alto Networks Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
Schneier on Security
Engineering at Meta
Engineering at Meta
I
InfoQ
L
LangChain Blog
Cyberwarzone
Cyberwarzone
T
Tenable Blog
WordPress大学
WordPress大学
P
Privacy & Cybersecurity Law Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Jina AI
Jina AI
C
CERT Recently Published Vulnerability Notes
Scott Helme
Scott Helme
博客园 - 三生石上(FineUI控件)
酷 壳 – CoolShell
酷 壳 – CoolShell
Know Your Adversary
Know Your Adversary
D
Darknet – Hacking Tools, Hacker News & Cyber Security
The Last Watchdog
The Last Watchdog
Last Week in AI
Last Week in AI
Cloudbric
Cloudbric
S
SegmentFault 最新的问题
爱范儿
爱范儿
Application and Cybersecurity Blog
Application and Cybersecurity Blog
博客园 - 叶小钗
AI
AI
T
Tor Project blog
I
Intezer
T
Threatpost
www.infosecurity-magazine.com
www.infosecurity-magazine.com
V
Visual Studio Blog
N
News and Events Feed by Topic
Latest news
Latest news
S
Security Affairs
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
B
Blog RSS Feed
C
Cybersecurity and Infrastructure Security Agency CISA
Hugging Face - Blog
Hugging Face - Blog
小众软件
小众软件
S
Securelist

博客园 - 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