SQL Server 2005 有哪些新的 t-sql 功能?
在哪里可以找到 sql server 2005 与 2000 相比的新 T-SQL 功能的完整列表?
我知道的几个: 枢轴、输出、Try..Catch。 还要别的吗? 谢谢。
Where do I find a complete list of new T-SQL features in sql server 2005 comparing with 2000?
A few ones that I know:
Pivot, Output, Try..Catch. Anything else? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
以下是来自在线图书的 Microsoft 参考:
http://msdn.microsoft.com/en-us /library/ms189465(SQL.90).aspx
它包含示例数据库增强功能、tsql 数据类型和其他一些内容。 不是最好的资源(很愚蠢,因为它是为 SQL Server 编写的),但是是一些东西。
这是 SQLServerCentral.com 上的一个很好的资源。 不幸的是,您需要加入才能查看信息。 我已经成为会员多年了,因为该网站上有很多优秀的 SQL Server 文章。 http://www.sqlservercentral.com/articles/Development/2738/< br>
我会复制一些信息,但我认为他们不会对此感到高兴。
Here is a Microsoft reference from Books online:
http://msdn.microsoft.com/en-us/library/ms189465(SQL.90).aspx
It contains Sample database enhancements, tsql data types and some others. Not the best resource (silly because it's written for SQL Server), but something.
Here is a good resource at SQLServerCentral.com. Unfortunately you need to join to see the information. I have been a member for years as there are a lot of good SQL Server articles on the site. http://www.sqlservercentral.com/articles/Development/2738/
I would copy some of the information over, but I don't think they would be very happy about that.
我最喜欢的是:
实际上..有很多好东西:-)
My top favourites are:
Actually.. there's a shitload of good stuff :-)
对于我的团队来说,sql2005 中最大的新功能可能是镜像数据库的能力。 我非常喜欢这个。 不过,不确定它的 tsql,所以我并没有真正帮助你,不是吗?
Probably the biggest new feature in sql2005 for my team has been the ability to mirror databases. I'm a huge fan of that. Not sure of the tsql for it, though, so i'm not really helping you am i?
还有对加密和密钥管理的 T-SQL 支持(如果您想要编写函数或存储过程来加密数据,这很有用)。
有一篇好文章这里< /a> 显示如何使用 T-SQL 创建加密密钥。 MSDN 博客上还有另一篇类似的文章 位于此处。
有关创建密钥(以及其他加密的 T-SQL 支持)的联机丛书文档可以在 此处。
There is also T-SQL support for Encryption and Key management (which is useful is you want to write functions or stored procedures to encrypt data).
There's a good article here which shows how to use T-SQL to create keys for encryption. There's a another similar article on MSDN Blogs located here.
The Books Online documentation for Creating keys (and other T-SQL support for encryption) can be found here.