加载中…
加载中…
加载中…
加载中…NEWSEQUENTIALID() 和 NEWID()都可以产生uniqueidentifier类型的GUID.NEWID()产生的GUID是无序的,随机的.NEWSEQUENTIALID()是SQL SERVER2005新特性,NEWSEQUENTIALID生成的GUID以十六进制间隔递增.
----Create Test Table for with default columns
values
CREATE TABLE TestTable
(NewIDCol uniqueidentifier DEFAULT NEWID(),
NewSeqCol uniqueidentifier DEFAULT
NewSequentialID())
----Inserting five default values in table
INSERT INTO TestTable DEFAULT
VALUES
INSERT INTO TestTable DEFAULT
VALUES
INSERT INTO TestTable DEFAULT
VALUES
INSERT INTO TestTable DEFAULT
VALUES
INSERT INTO TestTable DEFAULT
VALUES
----Test Table to see NewID() is random
In each column, The Support Authority discusses resources, tools, and other elements of IBM® Technical Support that are available for WebSphere® products, plus techniques and new ideas that can further enhance your IBM support experience.
As always, we begin with some new items of interest for the WebSphere community at large:
windows:
netstat -nao //列出所有进程以及其占用的端口
记住进程号
taskkill -PID 进程号
-F
linux:
netstat -naop
kill 进程号 -f
标签:
杂谈 |
分类: Psychology-Philosophy |
我们不得不说,爱因斯坦不仅仅是天才,也是个饶有个性,有很强独立思考的思想家。无止境的思考精神是爱因斯坦的精髓。
关于思维
Imagination is more important than knowledge...
想象力比知识更重要……
The important thing is not to stop questioning. Curiosity has
its own reason for existing. One cannot help but be in awe when he
contemplates the mysteries of eternity, of life, of the marvelous
structure of reality. It is enough if one tries merely to
comprehend a little of this mystery every day. Never lose a holy
curiosity.
不停止发问是很重要的。好奇心的存在有它自己的理由。当一个人揣测永恒,生命,现实的惊奇构造等等的神奇时,他会情不自禁的感叹。如果一个人每天都尝试着理解这些神奇中的一点点,就足够了。永远不要失去那神圣的好奇心。
The significant problems we have cannot be solved at the same
level of thinking with which we created them.
我们很多现在面对的问题不能在我们创造这些问题时的同一个思考层面上来解决。
Reading, after a certain age,
标签:
杂谈 |
分类: Java-Developing |
软件架构师是IT 行业里独一无二的职业,既要精通软件开发技术,又要掌握业务知识,还要周旋于公司不同部门之间,协调各种予盾。做到这些绝非易事, 博文视点即将翻译出版的新书《软件架构师应该知道的97 件事》(97 Things Every Software Architect Should Know )探讨的就是这个主题。
本书的编辑Richard Monson-Haefel 是畅销书《 Enterprise JavaBeans 》和《 Java 消息服务 》的作者。Richard 邀请五十多位杰出的软件架构师分享工作经验和观点,帮助读者少走弯路。其中不乏大家熟悉的名字:
《 卓有成效的程序员 》的作者Neal Ford,《 企业集成模式 》的作者Gregor Hohpe, Servlets 和JSP 专家组和W3C RDF工作组技术专家Bill de hÓra, 《 Web 应用程序快速开发 : 使用TurboGears 》的作者Mark Ramm,《 Release It! 》的作者Michael Nygard,《软件开发沉思录》的作者之一Rebecca Parsons 博士,活跃于Perl 社区的女架构师Allison Randal ,《 Java SOA Cookbook 》的作者 Eben Hewitt , 等等。
下面内容摘自该书的标题,并给出了必要的补充说明, 由本书译者SeanBV(他的CSDN博客)整理,推荐给大家。