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

推荐订阅源

S
Secure Thoughts
Security Latest
Security Latest
Simon Willison's Weblog
Simon Willison's Weblog
O
OpenAI News
GbyAI
GbyAI
L
LINUX DO - 最新话题
A
Arctic Wolf
T
Tor Project blog
G
GRAHAM CLULEY
I
InfoQ
博客园_首页
IT之家
IT之家
The Register - Security
The Register - Security
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Proofpoint News Feed
The GitHub Blog
The GitHub Blog
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
K
Kaspersky official blog
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
U
Unit 42
PCI Perspectives
PCI Perspectives
量子位
P
Palo Alto Networks Blog
S
Securelist
T
Troy Hunt's Blog
博客园 - 【当耐特】
Recorded Future
Recorded Future
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
S
Security Affairs
Engineering at Meta
Engineering at Meta
T
The Blog of Author Tim Ferriss
博客园 - 聂微东
罗磊的独立博客
N
News and Events Feed by Topic
人人都是产品经理
人人都是产品经理
B
Blog RSS Feed
NISL@THU
NISL@THU
C
Cisco Blogs
T
Threatpost
有赞技术团队
有赞技术团队
Forbes - Security
Forbes - Security
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
T
The Exploit Database - CXSecurity.com
Cloudbric
Cloudbric
Cyberwarzone
Cyberwarzone
Google DeepMind News
Google DeepMind News
C
Cyber Attacks, Cyber Crime and Cyber Security

博客园 - 迪克猪

发布一款vscode仓颉文件图标显示插件Mosmmy Cangjie Icons 在 Mac、Linux、Windows 下Go交叉编译 用户中心 - 博客园 golang字节数组拷贝BlockCopy函数实现 go module下golang.org如何处理被墙 go: writing stat cache:, permission denied mac os下不同工具go env下gopath显示不同 SetProcessWorkingSetSize减少内存占用 mac os系统go安装:go install github.com/nsf/gocode: open /usr/local/go/bin/gocode: permission denied vscode打造最佳的markdown编辑器 "title_activity_dist" is not translated in "zh-rCN" (Chinese: China) android sdk manager更新地址 vscode圣诞帽 阿里java代码检测工具p3c elasticsearch 二、elasticsearch-head安装 elasticsearch 一、环境配置 针对json的查询--alibaba的开源项目jsonq macos下golang 1.9配置 此请求已被阻止,因为当用在 GET 请求中时,会将敏感信息透漏给第三方网站。若要允许 GET 请求,请将 JsonRequestBehavior 设置为 AllowGet。
异类查询要求为连接设置ANSI_NULLS和ANSI_WARNINGS选项
迪克猪 · 2018-02-09 · via 博客园 - 迪克猪

在查询分析器中,先输入两句 
  set   ansi_nulls   on 
  set   ansi_warnings   on 
  执行然后再 
  Create   Proc   存储过程 
  然后   
  set   ansi_nulls   off 
  set   ansi_warnings   off 
  产生出来的存储过程就不会有这个问题

========================================================

注意: 
  “注意,是在查询分析器中执行 
  而不是企业管理器中执行” 
  这句话是对的,但不认真思考的人是永远不会理解其含义的。 
  简单地说: 
          1.打开企业管理器; 
          2.打开查询分析器; 
          3.关闭企业管理器; 
          4.在查询分析器中执行存贮过程。 
  呵呵,本人也太笨了,整整为在PB下这一“异类查询”摸索奋战了七个小时。

============================================================

注意: 
  =================================== 
  删除存储过程,然后在查询分析器中执行创建存储过程的语句就行了. 
  ==================================================== 
  这句话没错,但如果存储过程已经创建了,也可以不用删除,把整个存储过程考到查询分析器中,把"Create"   改成   "alter"   ,然后执行,也可以

=======================================================================

--存储过程中那了链接服务器,使用后又删除,这样做没有意义. 
  --还不如直接用openrowset 
  CREATE   PROCEDURE   test 
  as 
  select   top   10   *   from   openrowset('sqloledb','dl580-1';'sa';'tpcims',   movex12.dbo.mittra')