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

推荐订阅源

P
Privacy & Cybersecurity Law Blog
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
罗磊的独立博客
F
Fortinet All Blogs
T
Threatpost
Y
Y Combinator Blog
博客园_首页
美团技术团队
Security Latest
Security Latest
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS Blog
V
V2EX - 技术
The Cloudflare Blog
L
LINUX DO - 热门话题
博客园 - 司徒正美
Jina AI
Jina AI
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
C
CXSECURITY Database RSS Feed - CXSecurity.com
C
Cybersecurity and Infrastructure Security Agency CISA
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
The Hacker News
The Hacker News
P
Privacy International News Feed
T
The Exploit Database - CXSecurity.com
Scott Helme
Scott Helme
有赞技术团队
有赞技术团队
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence
Latest news
Latest news
NISL@THU
NISL@THU
Google DeepMind News
Google DeepMind News
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
C
Cisco Blogs
雷峰网
雷峰网
Application and Cybersecurity Blog
Application and Cybersecurity Blog
B
Blog RSS Feed
W
WeLiveSecurity
D
DataBreaches.Net
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
GRAHAM CLULEY
Spread Privacy
Spread Privacy
Know Your Adversary
Know Your Adversary
TaoSecurity Blog
TaoSecurity Blog
S
Securelist
Help Net Security
Help Net Security

博客园 - moge

新建的网站 八方达物流网 How to Implement an Automatic Sliding Window in a Partitioned Table on SQL Server 2005 SQL Server 2005 Partitioned Tables and Indexes 如何估算数据库的大小 MSDN链接 Enabling Change Data Capture 转一篇很经典的房价文章 在SharePoint中激活Page Library功能 Database Coding Standard and Guideline 计算机电子书免费下载列表 3 计算机电子书免费下载列表 2 计算机免费电子书下载 1 国外可以赚钱的免费硬盘 推荐一个下载电子书的网站 不需要注册 Javascript中的apply和call函数 - moge ASP.NET AJAX客户端生命周期分析(实践篇)(2) - moge 继承CollectionBase的类的xml序列化 - moge 101个设计模式 Design Patterns - moge 用C#操作Person or Group列在SharePoint中 - moge
SQL Server 操作集锦
moge · 2010-09-10 · via 博客园 - moge

Posted on 2010-09-10 13:10  moge  阅读(237)  评论()    收藏  举报

  1. select   @@version   查看数据库版本
  2. CHECKSUM ( * | expression [ ,...n ] ) 返回在表的行上或在表达式列表上计算的校验值。CHECKSUM 用于生成哈希索引,可用于表full match。
  3. Update与Select联合使用:  update dbo.Monthly_Revenue_Detail
      set Revenue_Amount= b.Revenue_Amount * CAST( a.Unit_Amount as money) / CAST(b.unit_amount as money)
      from Monthly_Revenue_Detail a,dbo.Monthly_Revenue_Total b
      where a.Monthly_Revenue_ID=b.Monthly_Revenue_ID
  4. sp_serveroption为远程服务器和链接服务器设置服务器选项.MSDN链接:http://msdn.microsoft.com/zh-cn/library/ms178532.aspx

    lazy schema validation

    确定是否检查远程表的架构。

    如果为 true,则在查询开始时跳过远程表的架构检查。