AskTOMmorow 于 2016-12-24 15:12:00 发布
阅读量137 收藏
点赞数
Click here to Skip to main content

Tip/Trick
Browse Code
Stats
Revisions (6)
Alternatives
Comments (37)
Add your own
alternative version
Tagged as
SQL DBA Dev QA Architect
Stats
129.4K views
29 bookmarked
Posted 12 Oct 2013

SQL Server 2012 Auto Identity Column Value Jump Issue

S. M. Ahasan Habib, 14 Oct 2013 CPOL
  4.87 (43 votes)
123
7 votes, 16.3%
4
36 votes, 83.7%
5
4.87/5 - 43 votes
μ 4.87, σ a 0.97 [ ?]
loading...
Rate this:
Please Sign up or sign in to vote.
From SQL Server 2012 version, when SQL Server instance is restarted then its auto Identity column value is jumped based on identity column datatype.

Introduction

From SQL Server 2012 version, when SQL Server instance is restarted, then table's Identity value is jumped and the actual jumped value depends on identity column data type. If it is integer (int) data type, then jump value is 1000 and if big integer (bigint), then jump value is 10000. From our application point of view, this increment is not acceptable for all the business cases specially when the value shows to the client. This is the special case/issue ships with only SQL Server 2012 and older versions have no such issue.

Background

A few days ago, our QA Engineer claims that one of our table's identity column jumped 10000. That means the last identity value of that table was 2200 now it is 12001. In our business logic is like that the value shows to the client and it will not be accepted by the client. So we must solve the issue.

Using the Code

The first time, we all are surprised and confused as to how it is possible? We usually do not insert any value in identity column (insert value to identity column is possible). The identity value is maintained by SQL Server itself. One of our core team members started investigation the issue and found out the solution. Now, I want to elaborate the issue and solution that was found out by my colleague.

How to Reproduce That?

You need to setup SQL Server 2012 and create a test database. Then create a table with auto identity column:

create table MyTestTable(Id int Identity(1,1), Name varchar(255));

Now insert 2 rows there:

insert into MyTestTable(Name) values ('Mr.Tom');
insert into MyTestTable(Name) values ('Mr.Jackson'); 

You see the result:

SELECT Id, Name FROM MyTestTable; 

The result is as expected. Now just restart your SQL Server service. There are various ways in which you can do it. We did it from SQL Server management studio.

Now, insert another 2 rows to the same table again:

insert into MyTestTable(Name) values ('Mr.Tom2');
insert into MyTestTable(Name) values ('Mr.Jackson2');

Now see the result:

SELECT Id, Name FROM MyTestTable;

Now you see that after restarting the SQL Server 2012 instance, then identity value starts with 1002. It means it jumped 1000. Previously, I said that we also see if the data type of that identity column is bigint, then it will jump 10000.

Is it really a bug?

Microsoft declares it is a feature rather than a bug and in many scenarios it would be helpful. But in our case, it would not be acceptable because that number is shown to the client and the client will be surprised to see that new number after jump and the new number depends on how many times SQL Server is restarted. If it is not visible to the client, then it might be acceptable so that the number is used internally.

Solutions

If we are not interested in this so called feature, then we can do two things to stop that jump.

  • Using Sequence
  • Register -t272 to SQL Server Startup Parameter

Using Sequence

First, we need to remove Identity column from tables. Then create a sequence without cache feature and insert number from that sequence. The following is the code sample:

CREATE SEQUENCE Id_Sequence
    AS INT
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
   NO CACHE
insert into MyTestTable values(NEXT VALUE FOR Id_Sequence, 'Mr.Tom'); 
insert into MyTestTable values(NEXT VALUE FOR Id_Sequence, 'Mr.Jackson'); 

Register -t272 to SQL Server Startup Parameter

Open SQLServer configuration manager from your server. Select SQL Server 2012 instance there right client and select Properties menu. You will find a tabbed dialog window. You select start up parameters tab from there and register -t272. Then restart SQL Server 2012 instance again and see the difference:

Startup Parater

Points of Interest

If too many tables contain identity column to your database and all contain existing values, then it is better to go for solution 2. Because it is a very simple solution and its scope is server wise. This means if you add SQL Server 2012 parameter -t272 there, then it will affect all your databases there. If you want to create a new database and you need auto generated number field, then you can use solution 1, that means use sequence value to a column instead of auto Identity value. There are so many articles you can find online about when you will use auto identity column when using sequence and advantages/disadvantages of each other. I hope you will read all those and take the appropriate decision.

<a href="https://pubads.g.doubleclick.net/gampad/jump?iu=/6839/lqm.codeproject.site/Database/Database/General&sz=300x250&c=876172" _xhe_href="https://pubads.g.doubleclick.net/gampad/jump?iu=/6839/lqm.codeproject.site/Database/Database/General&sz=300x250&c=876172"><img src="https://pubads.g.doubleclick.net/gampad/jump?iu=/6839/lqm.codeproject.site/Database/Database/General&sz=300x250&c=876172" _xhe_src="https://pubads.g.doubleclick.net/gampad/jump?iu=/6839/lqm.codeproject.site/Database/Database/General&sz=300x250&c=876172" width="300px" height="250px" target="_blank"/></a>

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

Share

About the Author

S. M. Ahasan Habib
LinkedIn
Program Manager IXORA Solution Ltd.
Bangladesh Bangladesh
Mostly I work with MS technologies (ASP.NET MVC, WPF, C#, SQL Server, SSRS, SharePoint, Entity Framework, MSTest, Enterprise Library, MEF, WCF, WebAPI, MS Excel, IIS).
Non MS technologies which I love and use (Resharper, NHiberNet, JQuery, AngularJS, KnockoutJS, NodeJS, Python, MSpec, RihnoMock, Crystal Report, Subversion, Crome)

<a href="https://pubads.g.doubleclick.net/gampad/jump?iu=/6839/lqm.codeproject.site/Database/Database/General&sz=728x90&c=876172" _xhe_href="https://pubads.g.doubleclick.net/gampad/jump?iu=/6839/lqm.codeproject.site/Database/Database/General&sz=728x90&c=876172"><img src="https://pubads.g.doubleclick.net/gampad/jump?iu=/6839/lqm.codeproject.site/Database/Database/General&sz=728x90&c=876172" _xhe_src="https://pubads.g.doubleclick.net/gampad/jump?iu=/6839/lqm.codeproject.site/Database/Database/General&sz=728x90&c=876172" width="728px" height="90px" target="_blank"/></a>

You may also be interested in...

Pro
Reduce Your Open Source Security Risk: Strategies, Tactics, and Tools
Pro
Challenging Some of the Myths About Static Code Analysis
Using the Intel® Edison Module to Control Robots
Building a Robotic Platform Using the Intel® Edison Module
10 Ways to Boost COBOL Application Development
SAPrefs - Netscape-like Preferences Dialog

Comments and Discussions

 
You must Sign In to use this message board.
Search Comments  
 
Spacing   Layout   Per page    
 First Prev Next
GeneralMy vote of 4 Pin
Umesh AP 7-Dec-16 0:51
memberUmesh AP7-Dec-16 0:51 
Nice & Simple Explanation. Also I am suggesting other solution for this problem is using 'sp_procoption' system SP. Refer this link http://stackoverflow.com/questions/14146148/identity-increment-is-jumping-in-sql-server-database for complete solution.
Sign In·View Thread·Permalink
QuestionNice article! Thx. You meant 12201 not 12001 right? Pin
Bartosh 7-Apr-16 0:22
memberBartosh7-Apr-16 0:22 
You meant 12201 not 12001 right?
Sign In·View Thread·Permalink
Suggestion-T272 not -t272 Pin
Member 8414263 11-Feb-16 9:22
memberMember 841426311-Feb-16 9:22 
It appears to be case sensitive. Lower case t did not work for me, but upper case T did.
Sign In·View Thread·Permalink
QuestionThanks, Pin
Shail Mishra 28-Oct-15 0:46
memberShail Mishra28-Oct-15 0:46 
It was useful.
Sign In·View Thread·Permalink
QuestionLocalDB with no access to SQL Server Startup Parameter Pin
Member 10127849 7-Sep-15 22:49
memberMember 101278497-Sep-15 22:49 
Can anyone help with LocalDB with the same issue?
Sign In·View Thread·Permalink
QuestionThanks Pin
Reivaj810 20-Aug-15 8:31
memberReivaj81020-Aug-15 8:31 
This Information was Increible !! Thanks Smile | :) Big Grin | :-D
Sign In·View Thread·Permalink
QuestionThankx Pin
manish_kumar_gupta 21-Jul-15 20:14
membermanish_kumar_gupta21-Jul-15 20:14 
Big Grin | :-D Thankx
Sign In·View Thread·Permalink
QuestionThanks Pin
elsonms 27-Apr-15 7:53
memberelsonms27-Apr-15 7:53 
Thank you for your help. It worked perfectly. After application of -t272 restarted the service and took another leap , again I restarted the service and not much happened the jump.
Sign In·View Thread·Permalink
QuestionNothing changed. Pin
mtmutlu 11-Mar-15 1:07
membermtmutlu11-Mar-15 1:07 
Hello thanks for article. I had the same situation and went with the second solution(-t272) after i restarted sql server service nothing changed id jumped 1000 again. Do you have anny suggestions? Thanks.
Sign In·View Thread·Permalink
AnswerRe: Nothing changed. Pin
mtmutlu 11-Mar-15 1:17
membermtmutlu11-Mar-15 1:17 
I used lower case character "t" this was the case, it must be upper "T".

From msdn:

When specifying a trace flag with the -T option, use an uppercase "T" to pass the trace flag number. A lowercase "t" is accepted by SQL Server, but this sets other internal trace flags that are required only by SQL Server support engineers. (Parameters specified in the Control Panel startup window are not read.)
Sign In·View Thread·Permalink
QuestionJump not found is table is not in use at restart. Pin
Member 9800187 29-Oct-14 20:37
memberMember 980018729-Oct-14 20:37 
The jump in Id is noticed if the particular table is in use when the restart / crash of the database occurs.
When i inserted single record and restarted then PK donot jumped the sequence but when i used
Declare @i int = 100000

While @i > 0
BEGIN
    Insert into MytestTable (Name) values ('Test2')
    Set @i = @i-1
END

and restarted while the query was running it did jumped.


However it does stops the jumping if -t272 is added in startup parameters.
Can you give details that how much it would cause the performance.
Sign In·View Thread·Permalink
AnswerRe: Jump not found is table is not in use at restart. Pin
S. M. Ahasan Habib 2-Nov-14 19:55
memberS. M. Ahasan Habib2-Nov-14 19:55 
I thing there is no performance related issue. Just increase the auto generated number based on certain algorithms.
Sign In·View Thread·Permalink
QuestionThanks! Pin
Member 9336809 28-Oct-14 12:15
memberMember 933680928-Oct-14 12:15 
Thanks for the article. Honestly it freaked us out first time when it happened. Really don't like the idea of series jumping. It really breaks the correlation between the actual number of records in the table and the ID#.
Sign In·View Thread·Permalink
AnswerRe: Thanks! Pin
S. M. Ahasan Habib 28-Oct-14 17:44
memberS. M. Ahasan Habib28-Oct-14 17:44 
wecome
Sign In·View Thread·Permalink
GeneralMy vote of 5 Pin
Vihang Shah 17-Sep-14 1:12
memberVihang Shah17-Sep-14 1:12 
5 for superb solution Smile | :)
Sign In·View Thread·Permalink
Questionwhere this is helpful Pin
Member 11053350 2-Sep-14 5:57
memberMember 110533502-Sep-14 5:57 
We bit confuse on statement "Microsoft declares it is a feature rather than a bug and in many scenarios it would be helpful. " ,In what scenarios it will help? I think it big problem ...
Sign In·View Thread·Permalink
AnswerRe: where this is helpful Pin
S. M. Ahasan Habib 28-Oct-14 17:46
memberS. M. Ahasan Habib28-Oct-14 17:46 
I have no idea where it will be helpful but guess it might be helpful for replication environment.
Sign In·View Thread·Permalink
General+5 Pin
Amol_B 13-Aug-14 3:01
professionalAmol_B13-Aug-14 3:01 
Many thanks... i was searching for the same
Sign In·View Thread·Permalink
GeneralMy vote of 5 Pin
Humayun Kabir Mamun 8-Jul-14 23:48
memberHumayun Kabir Mamun8-Jul-14 23:48 
Great...
Sign In·View Thread·Permalink
Question-T272 or -t272, are there differences? Pin
mikele1959 7-Jul-14 4:58
membermikele19597-Jul-14 4:58 
When specifying a trace flag with the -T option, use an uppercase "T" to pass the trace flag number. A lowercase "t" is accepted by SQL Server, but this sets other internal trace flags that are required only by SQL Server support engineers. (Parameters specified in the Control Panel startup window are not read.)
Sign In·View Thread·Permalink
AnswerRe: -T272 or -t272, are there differences? Pin
S. M. Ahasan Habib 28-Oct-14 17:45
memberS. M. Ahasan Habib28-Oct-14 17:45 
May be case sensitive.
Sign In·View Thread·Permalink
GeneralMy vote of 5 Pin
Halil ibrahim Kalkan 25-Jun-14 21:00
memberHalil ibrahim Kalkan25-Jun-14 21:00 
Thank you for sharing.
Sign In·View Thread·Permalink
QuestionUseful scenarios Pin
James Portelli 17-Jun-14 3:06
memberJames Portelli17-Jun-14 3:06 
"Microsoft declares it is a feature rather than a bug and in many scenarios it would be helpful."

Do you have any documentation to explain how in "many" scenarios it would be helpful ? Also when you mention that with the workaround there is performance degradation, is the performance worse than sql server pre-2012 ?

Do you have any idea whether it also affects sql server localdb databases ?
Sign In·View Thread·Permalink
AnswerRe: Useful scenarios Pin
S. M. Ahasan Habib 28-Oct-14 17:47
memberS. M. Ahasan Habib28-Oct-14 17:47 
sorry no documentation. But i guess it might be helpful for replication environment.
Sign In·View Thread·Permalink
QuestionThanks Pin
Ali Ahmadi Kousha 11-May-14 20:58
memberAli Ahmadi Kousha11-May-14 20:58 
S. M. Ahasan Habib
HI
Very Thanks.
Sign In·View Thread·Permalink
AnswerRe: Thanks Pin
S. M. Ahasan Habib 11-May-14 21:18
memberS. M. Ahasan Habib11-May-14 21:18 
Welcome!
Sign In·View Thread·Permalink
Questionhow about sql azure? Pin
Member 8211984 23-Apr-14 22:41
memberMember 821198423-Apr-14 22:41 
do you have a solution for sql azure? t272 and sequence dont work on azure
Sign In·View Thread·Permalink
AnswerRe: how about sql azure? Pin
S. M. Ahasan Habib 24-Apr-14 0:55
memberS. M. Ahasan Habib24-Apr-14 0:55 
sorry! I have no experience about sql azure.
Sign In·View Thread·Permalink
Questionthis article is interested Pin
sankmahesh 14-Oct-13 19:54
membersankmahesh14-Oct-13 19:54 
Your article is good.
Sign In·View Thread·Permalink
AnswerRe: this article is interested Pin
S. M. Ahasan Habib 14-Oct-13 22:08
memberS. M. Ahasan Habib14-Oct-13 22:08 
Thanks! If you really like it please vote it.
Sign In·View Thread·Permalink
GeneralRe: this article is interested Pin
sankmahesh 15-Oct-13 23:30
membersankmahesh15-Oct-13 23:30 
I already voted it.
Sign In·View Thread·Permalink
GeneralRe: this article is interested Pin
S. M. Ahasan Habib 16-Oct-13 7:02
memberS. M. Ahasan Habib16-Oct-13 7:02 
Smile | :)
Sign In·View Thread·Permalink
AnswerRe: this article is interested Pin
mohadeseh01 4-Dec-13 0:30
membermohadeseh014-Dec-13 0:30 
solved my problem,Thanks Thumbs Up | :thumbsup:
Sign In·View Thread·Permalink
GeneralRe: this article is interested Pin
S. M. Ahasan Habib 4-Dec-13 0:33
professionalS. M. Ahasan Habib4-Dec-13 0:33 
do not forget to vote Smile | :)
Sign In·View Thread·Permalink
SuggestionBug report link Pin
Richard Deeming 14-Oct-13 7:51
professionalRichard Deeming14-Oct-13 7:51 
It might be a good idea to include a link to the bug report:
https://connect.microsoft.com/SQLServer/feedback/details/739013/failover-or-restart-results-in-reseed-of-identity[^]



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer

Sign In·View Thread·Permalink
GeneralRe: Bug report link Pin
S. M. Ahasan Habib 14-Oct-13 8:02
memberS. M. Ahasan Habib14-Oct-13 8:02 
thanks
Sign In·View Thread·Permalink
Last Visit: 31-Dec-99 19:00     Last Update: 23-Dec-16 16:07Refresh1

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

<a href="https://pubads.g.doubleclick.net/gampad/jump?iu=/6839/lqm.codeproject.site/Database/Database/General&sz=160x600&c=157500" _xhe_href="https://pubads.g.doubleclick.net/gampad/jump?iu=/6839/lqm.codeproject.site/Database/Database/General&sz=160x600&c=157500"><img src="https://pubads.g.doubleclick.net/gampad/jump?iu=/6839/lqm.codeproject.site/Database/Database/General&sz=160x600&c=157500" _xhe_src="https://pubads.g.doubleclick.net/gampad/jump?iu=/6839/lqm.codeproject.site/Database/Database/General&sz=160x600&c=157500" width="160px" height="600px" target="_blank"/></a>
Go to top
Permalink | Advertise | Privacy | Terms of Use | Mobile
Web01 |2.8.161222.1 |Last Updated 14 Oct 2013
Article Copyright 2013 by S. M. Ahasan Habib
Everything elseCopyright © CodeProject, 1999-2016
Layout: fixed| fluid

确定要放弃本次机会?
福利倒计时
: :

立减 ¥

普通VIP年卡可用
立即使用
AskTOMmorow
关注 关注
  • 0
    点赞
  • 踩
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
  • 分享
    复制链接
    分享到 QQ
    分享到新浪微博
    扫一扫
  • 举报
    举报
tika-parser-font-module-3.1.0.jar中文-英文对照文档.zip
09-07
1、压缩文件中包含: 中文-英文对照文档、jar包下载地址、Maven依赖、Gradle依赖、源代码下载地址。 2、使用方法: 解压最外层zip,再解压其中的zip包,双击 【index.html】 文件,即可用浏览器打开、进行查看。 3、特殊说明: (1)本文档为人性化翻译,精心制作,请放心使用; (2)只翻译了该翻译的内容,如:注释、说明、描述、用法讲解 等; (3)不该翻译的内容保持原样,如:类名、方法名、包名、类型、关键字、代码 等。 4、温馨提示: (1)为了防止解压后路径太长导致浏览器无法打开,推荐在解压时选择“解压到当前文件夹”(放心,自带文件夹,文件不会散落一地); (2)有时,一套Java组件会有多个jar,所以在下载前,请仔细阅读本篇描述,以确保这就是你需要的文件。 5、本文件关键字: jar中文-英文对照文档.zip,java,jar包,Maven,第三方jar包,组件,开源组件,第三方组件,Gradle,中文API文档,手册,开发手册,使用手册,参考手册。
perl-SelfLoader-1.23-420.el8.tar.gz
09-07
# 适用操作系统:Centos8 #Step1、解压 tar -zxvf xxx.el8.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm
参与评论 您还未登录,请先 登录 后发表或查看评论
tika-parser-audiovideo-module-3.1.0.jar中文-英文对照文档.zip
09-07
1、压缩文件中包含: 中文-英文对照文档、jar包下载地址、Maven依赖、Gradle依赖、源代码下载地址。 2、使用方法: 解压最外层zip,再解压其中的zip包,双击 【index.html】 文件,即可用浏览器打开、进行查看。 3、特殊说明: (1)本文档为人性化翻译,精心制作,请放心使用; (2)只翻译了该翻译的内容,如:注释、说明、描述、用法讲解 等; (3)不该翻译的内容保持原样,如:类名、方法名、包名、类型、关键字、代码 等。 4、温馨提示: (1)为了防止解压后路径太长导致浏览器无法打开,推荐在解压时选择“解压到当前文件夹”(放心,自带文件夹,文件不会散落一地); (2)有时,一套Java组件会有多个jar,所以在下载前,请仔细阅读本篇描述,以确保这就是你需要的文件。 5、本文件关键字: jar中文-英文对照文档.zip,java,jar包,Maven,第三方jar包,组件,开源组件,第三方组件,Gradle,中文API文档,手册,开发手册,使用手册,参考手册。
【故障诊断】基于matlab空气数据传感器在存在大气湍流的情况下故障检测和诊断【含Matlab源码 14132期】.zip
09-07
Matlab领域上传的视频是由对应的完整代码运行得来的,完整代码皆可运行,亲测可用,适合小白; 1、从视频里可见完整代码的目录内容 主函数:main.m; 调用函数:其他m文件;无需运行 运行结果效果图; 2、代码运行版本 Matlab 2019b;若运行有误,根据提示修改;若不会,私信博主; 3、运行操作步骤 步骤一:将所有文件放到Matlab的当前文件夹中; 步骤二:双击打开main.m文件; 步骤三:点击运行,等程序运行完得到结果; 4、仿真咨询 如需其他服务,可私信博主; 4.1 博客或资源的完整代码提供 4.2 期刊或参考文献复现 4.3 Matlab程序定制 4.4 科研合作
perl-Scalar-String-0.003-8.el8.tar.gz
09-07
# 适用操作系统:Centos8 #Step1、解压 tar -zxvf xxx.el8.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm
chromedriver-win64-142.0.7399.0(Canary).zip
09-07
chromedriver-win64-142.0.7399.0(Canary).zip
libphonenumber-8.11.1.jar中文-英文对照文档.zip
09-07
1、压缩文件中包含: 中文-英文对照文档、jar包下载地址、Maven依赖、Gradle依赖、源代码下载地址。 2、使用方法: 解压最外层zip,再解压其中的zip包,双击 【index.html】 文件,即可用浏览器打开、进行查看。 3、特殊说明: (1)本文档为人性化翻译,精心制作,请放心使用; (2)只翻译了该翻译的内容,如:注释、说明、描述、用法讲解 等; (3)不该翻译的内容保持原样,如:类名、方法名、包名、类型、关键字、代码 等。 4、温馨提示: (1)为了防止解压后路径太长导致浏览器无法打开,推荐在解压时选择“解压到当前文件夹”(放心,自带文件夹,文件不会散落一地); (2)有时,一套Java组件会有多个jar,所以在下载前,请仔细阅读本篇描述,以确保这就是你需要的文件。 5、本文件关键字: jar中文-英文对照文档.zip,java,jar包,Maven,第三方jar包,组件,开源组件,第三方组件,Gradle,中文API文档,手册,开发手册,使用手册,参考手册。
perl-Tk-804.034-2.el8.tar.gz
09-07
# 适用操作系统:Centos8 #Step1、解压 tar -zxvf xxx.el8.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm
jsoup-1.18.3.jar中文-英文对照文档.zip
09-07
1、压缩文件中包含: 中文-英文对照文档、jar包下载地址、Maven依赖、Gradle依赖、源代码下载地址。 2、使用方法: 解压最外层zip,再解压其中的zip包,双击 【index.html】 文件,即可用浏览器打开、进行查看。 3、特殊说明: (1)本文档为人性化翻译,精心制作,请放心使用; (2)只翻译了该翻译的内容,如:注释、说明、描述、用法讲解 等; (3)不该翻译的内容保持原样,如:类名、方法名、包名、类型、关键字、代码 等。 4、温馨提示: (1)为了防止解压后路径太长导致浏览器无法打开,推荐在解压时选择“解压到当前文件夹”(放心,自带文件夹,文件不会散落一地); (2)有时,一套Java组件会有多个jar,所以在下载前,请仔细阅读本篇描述,以确保这就是你需要的文件。 5、本文件关键字: jar中文-英文对照文档.zip,java,jar包,Maven,第三方jar包,组件,开源组件,第三方组件,Gradle,中文API文档,手册,开发手册,使用手册,参考手册。
perl-PPI-1.270-1.el8.tar.gz
09-07
# 适用操作系统:Centos8 #Step1、解压 tar -zxvf xxx.el8.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm
xmpbox-3.0.4.jar中文-英文对照文档.zip
09-07
1、压缩文件中包含: 中文-英文对照文档、jar包下载地址、Maven依赖、Gradle依赖、源代码下载地址。 2、使用方法: 解压最外层zip,再解压其中的zip包,双击 【index.html】 文件,即可用浏览器打开、进行查看。 3、特殊说明: (1)本文档为人性化翻译,精心制作,请放心使用; (2)只翻译了该翻译的内容,如:注释、说明、描述、用法讲解 等; (3)不该翻译的内容保持原样,如:类名、方法名、包名、类型、关键字、代码 等。 4、温馨提示: (1)为了防止解压后路径太长导致浏览器无法打开,推荐在解压时选择“解压到当前文件夹”(放心,自带文件夹,文件不会散落一地); (2)有时,一套Java组件会有多个jar,所以在下载前,请仔细阅读本篇描述,以确保这就是你需要的文件。 5、本文件关键字: jar中文-英文对照文档.zip,java,jar包,Maven,第三方jar包,组件,开源组件,第三方组件,Gradle,中文API文档,手册,开发手册,使用手册,参考手册。
model-zoo-0.32.0.jar中文-英文对照文档.zip
09-07
1、压缩文件中包含: 中文-英文对照文档、jar包下载地址、Maven依赖、Gradle依赖、源代码下载地址。 2、使用方法: 解压最外层zip,再解压其中的zip包,双击 【index.html】 文件,即可用浏览器打开、进行查看。 3、特殊说明: (1)本文档为人性化翻译,精心制作,请放心使用; (2)只翻译了该翻译的内容,如:注释、说明、描述、用法讲解 等; (3)不该翻译的内容保持原样,如:类名、方法名、包名、类型、关键字、代码 等。 4、温馨提示: (1)为了防止解压后路径太长导致浏览器无法打开,推荐在解压时选择“解压到当前文件夹”(放心,自带文件夹,文件不会散落一地); (2)有时,一套Java组件会有多个jar,所以在下载前,请仔细阅读本篇描述,以确保这就是你需要的文件。 5、本文件关键字: jar中文-英文对照文档.zip,java,jar包,Maven,第三方jar包,组件,开源组件,第三方组件,Gradle,中文API文档,手册,开发手册,使用手册,参考手册。
wangzb20002240-ECU-Test-Tool-Spring-8548-1756662381831.zip
最新发布
09-07
c wangzb20002240-ECU-Test-Tool-Spring_8548_1756662381831.zip
JsonToTable项目极简说明-一个基于JavaScript开发的HTML表格处理工具-用于将JSON数据或HTML表格字符串中的相同内容单元格自动合并-支持横向或纵向合并但不.zip
09-07
tdrJsonToTable项目极简说明_一个基于JavaScript开发的HTML表格处理工具_用于将JSON数据或HTML表格字符串中的相同内容单元格自动合并_支持横向或纵向合并但不.zip
perl-Taint-Util-0.08-22.el8.tar.gz
09-07
# 适用操作系统:Centos8 #Step1、解压 tar -zxvf xxx.el8.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm
基于CC跨平台实现的局域网主机扫描与网络流量嗅探分析工具-局域网主机发现-IP地址列表生成-开放端口检测-网络报文捕获与解析-数据包分析-网络监听与安全审计-用于网络管理员进.zip
09-07
c 基于CC跨平台实现的局域网主机扫描与网络流量嗅探分析工具_局域网主机发现_IP地址列表生成_开放端口检测_网络报文捕获与解析_数据包分析_网络监听与安全审计_用于网络管理员进.zip
校园快递平台系统-基于SpringBoot和Vue的校园快递管理解决方案-实现快递收发管理-订单跟踪-智能取件-用户权限控制-数据统计分析-消息推送通知-多角色协同操作-包裹状态实.zip
09-07
ccs校园快递平台系统_基于SpringBoot和Vue的校园快递管理解决方案_实现快递收发管理_订单跟踪_智能取件_用户权限控制_数据统计分析_消息推送通知_多角色协同操作_包裹状态实.zip
基于SpringBoot和Vue前后端分离技术构建的私有化网络硬盘系统-支持多空间管理模式如我的文件部门文件公共文件共享空间具备权限分配存储空间限制文件任务上报安全加密分享功能-适.zip
09-07
java基于SpringBoot和Vue前后端分离技术构建的私有化网络硬盘系统_支持多空间管理模式如我的文件部门文件公共文件共享空间具备权限分配存储空间限制文件任务上报安全加密分享功能_适.zip
aws-java-sdk-codestar-1.12.780.jar中文-英文对照文档.zip
09-07
1、压缩文件中包含: 中文-英文对照文档、jar包下载地址、Maven依赖、Gradle依赖、源代码下载地址。 2、使用方法: 解压最外层zip,再解压其中的zip包,双击 【index.html】 文件,即可用浏览器打开、进行查看。 3、特殊说明: (1)本文档为人性化翻译,精心制作,请放心使用; (2)只翻译了该翻译的内容,如:注释、说明、描述、用法讲解 等; (3)不该翻译的内容保持原样,如:类名、方法名、包名、类型、关键字、代码 等。 4、温馨提示: (1)为了防止解压后路径太长导致浏览器无法打开,推荐在解压时选择“解压到当前文件夹”(放心,自带文件夹,文件不会散落一地); (2)有时,一套Java组件会有多个jar,所以在下载前,请仔细阅读本篇描述,以确保这就是你需要的文件。 5、本文件关键字: jar中文-英文对照文档.zip,java,jar包,Maven,第三方jar包,组件,开源组件,第三方组件,Gradle,中文API文档,手册,开发手册,使用手册,参考手册。
基于以太坊区块链技术的去中心化电子投票系统-实现安全透明不可篡改的在线投票功能-适用于高校选举社团投票企业决策等场景-采用Solidity智能合约Web3js前端交互MetaMa.zip
09-07
ccs基于以太坊区块链技术的去中心化电子投票系统_实现安全透明不可篡改的在线投票功能_适用于高校选举社团投票企业决策等场景_采用Solidity智能合约Web3js前端交互MetaMa.zip
AskTOMmorow

博客等级

码龄9年
147
原创
16
点赞
66
收藏
5
粉丝
关注
私信

热门文章

  • 【ORACLE】[问题解决]ORA-01427 单行子查询返回多个行 8324
  • 【sqlServer】Order By 报错:The ORDER BY clause is invalid in views, inline functions, derived tables 7769
  • 【sqlserver】获取指定日期的上个季度的第一天和最后一天 4518
  • Navicat 实现同步sqlserver表结构到mysql 3903
  • 【sqlserver】 几种中间表实现方式比较(临时表、表变量、CTE) 3820

分类专栏

  • 杂谈
    3篇
  • ORACLE
    34篇
  • Mysql
    24篇
  • SqlServer
    59篇
  • MongoDB
    3篇
  • Redis
    3篇
  • Performance Tuning
    13篇
  • Needs About Databases
    24篇
  • Postgresql
    1篇
  • troubleshoot
    35篇
  • Financial
  • 玩sqlserver
    31篇
  • OS
    3篇

展开全部 收起

上一篇:
【Mysql】实现merge into
下一篇:
【sqlserver】自增字段起始计数错误导致插入数据报错

最新评论

  • 【Mysql】树路径,层级

    weixin_45990463: 学到了,还能这样

  • 【Mysql】树路径,层级

    好诡异: 必须给你点赞,通过你的SQL修改出来了我想要的

最新文章

  • oracle 11g for Linux(Red Hat 4.8.5-11) 部署手记
  • Mysql主从同步报错问题解决 Slave_IO_Running NO
  • mysql主从同步出错troubleShooting一例,原因及常见解决方法
2017年100篇
2016年56篇

目录

展开全部

收起

目录

展开全部

收起

上一篇:
【Mysql】实现merge into
下一篇:
【sqlserver】自增字段起始计数错误导致插入数据报错

分类专栏

  • 杂谈
    3篇
  • ORACLE
    34篇
  • Mysql
    24篇
  • SqlServer
    59篇
  • MongoDB
    3篇
  • Redis
    3篇
  • Performance Tuning
    13篇
  • Needs About Databases
    24篇
  • Postgresql
    1篇
  • troubleshoot
    35篇
  • Financial
  • 玩sqlserver
    31篇
  • OS
    3篇

展开全部 收起

目录

评论
被折叠的  条评论 为什么被折叠? 到【灌水乐园】发言
查看更多评论
添加红包

请填写红包祝福语或标题

个

红包个数最小为10个

元

红包金额最低5元

当前余额3.43元 前往充值 >
需支付:10.00元
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付元
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值