SQL Server 2005 有哪些新的 t-sql 功能?

发布于 2024-07-15 04:16:48 字数 111 浏览 4 评论 0原文

在哪里可以找到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

携君以终年 2024-07-22 04:16:48

以下是来自在线图书的 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.

人海汹涌 2024-07-22 04:16:48

我最喜欢的是:

  • VARCHAR(MAX)
  • ROW_NUMBER()
  • OVER / PARTITION BY (与 ROW_NUMBER() 或任何聚合(如 SUM、COUNT)一起使用)
  • INCLUDED 列在索引
  • OUTPUT 子句
  • TOP on UPDATE & 上。 删除
  • CTE

实际上..有很多好东西:-)

My top favourites are:

  • VARCHAR(MAX)
  • ROW_NUMBER()
  • OVER / PARTITION BY (used with ROW_NUMBER() or any aggregate like SUM, COUNT)
  • INCLUDED columns in indices
  • OUTPUT clause
  • TOP on UPDATE & DELETES
  • CTE's

Actually.. there's a shitload of good stuff :-)

满意归宿 2024-07-22 04:16:48

对于我的团队来说,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?

等待我真够勒 2024-07-22 04:16:48

还有对加密和密钥管理的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文