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

推荐订阅源

罗磊的独立博客
Cisco Talos Blog
Cisco Talos Blog
C
Check Point Blog
博客园_首页
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Martin Fowler
Martin Fowler
Recorded Future
Recorded Future
S
Security @ Cisco Blogs
L
LINUX DO - 最新话题
博客园 - 司徒正美
P
Privacy International News Feed
G
Google Developers Blog
I
Intezer
Hacker News - Newest:
Hacker News - Newest: "LLM"
博客园 - 聂微东
The GitHub Blog
The GitHub Blog
C
Cybersecurity and Infrastructure Security Agency CISA
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Scott Helme
Scott Helme
K
Kaspersky official blog
I
InfoQ
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
Webroot Blog
Webroot Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
大猫的无限游戏
大猫的无限游戏
D
Docker
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
W
WeLiveSecurity
Microsoft Azure Blog
Microsoft Azure Blog
Spread Privacy
Spread Privacy
量子位
H
Hacker News: Front Page
Simon Willison's Weblog
Simon Willison's Weblog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
SecWiki News
SecWiki News
S
Security Affairs
Latest news
Latest news
人人都是产品经理
人人都是产品经理
C
CERT Recently Published Vulnerability Notes
S
Security Archives - TechRepublic
V
Visual Studio Blog
T
Troy Hunt's Blog
S
Secure Thoughts
F
Fortinet All Blogs
V
V2EX
The Register - Security
The Register - Security
J
Java Code Geeks
MongoDB | Blog
MongoDB | Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO

博客园 - ok_008

解决GitHub加载和下载慢问题 mysql命令行爱好者必备工具mycli What is a Back Order mysql中实现字符串分割sp_split Down Payment 和 Deposit的差异 Select逻辑顺序图 排名趋势公式 批量备份数据库脚本(PowerShell版) 批量替换存储过程内容脚本sp_SqlReplace 生成建表脚本up_CreateTable Data Model for Certificate Implementation of Message Receiver Data Model for Message Receiver 修改hosts文件 PHP-问题处理验证码无法显示出来 PHP-问题处理Fatal error: Uncaught Error: Call to undefined function mb_strlen() PHP-问题处理Fatal error: Uncaught Error: Call to undefined function simplexml_load_file() 10进制转33进制 PHP-生成缩略图和添加水印图-学习笔记 SQLServer地址搜索性能优化例子
SQL SERVER 批量生成编号
ok_008 · 2017-02-21 · via 博客园 - ok_008

开始:

  在testing中,为了模拟orders,有个要求给数据库dba,如何通过后台数据库脚本快速批量生成orders。

分析

  站在数据库角度,批量生成orders,也就是批量生成表中的行数据。

  sql中,通过cross join 可以把两个table (如 A ,B )组合,形成一个笛卡尔积,如图1

  

            图1

  如果,对图1的组合结果,进行一次迭代组合,那么就可以得到一个16行的结果,如图2:

  

          图2

    在sql sever 中,通过下面的sql语句分析需要A, B表组合,迭代多少次可以能生成上百万行的记录,

use tempdb
go

declare @x bigint =2
declare @i int=1
while(1=1)
begin    
    set @x=square(@x)
    if @@ERROR<>0 break;
    print rtrim(@i)+' : '+rtrim(sqrt(@x))+' x '+rtrim(sqrt(@x))+' = '+rtrim(@x);    
    set @i+=1;
end

  从这可以看到A,B表组合,需要迭代5次就可以生成上百万行数据。

实现:

SQL SERVER 代码:

;With 
a0 As(Select id=1 Union All Select id=1),
a1 As(Select a.id From a0 a,a0 b),
a2 As(Select a.id From a1 a,a1 b),
a3 As(Select a.id From a2 a,a2 b),
a4 As(Select a.id From a3 a,a3 b),
t  As(Select id=Row_number() Over(Order By a.id) From a4 a,a4 b)
select top 1000000 id from t 

到这里,批量生成数据行,已能实现。根据实际的需要可以附加其他的条件或数据,即可满足开头部分的需求。