一. SELECT INTO
 
  1. 使用select into会自动生成临时表,不需要事先创建
 
  select * into #temp from sysobjects
 
  01. 把存储过程结果集SELECT INTO到临时表
 
  select * from #temp
 
  2. 如果当前会话中,已存在同名的临时表
 
  select * into #temp from sysobjects
 
  再次运行,则会报错提示:数据库中已存在名为 '%1!' 的对象。
 
  Msg 2714, Level 16, State 6, Line 2
 
  There is already an object named '#temp' in the database.
 
  在使用select into前,可以先做一下判断:
 
  if OBJECT_ID('tempdb..#temp') is not null
 
  drop table #temp
 
  select * into #temp from sysobjects
 
  select * from #temp
 
  3. 利用select into生成一个空表
 
  如果要生成一个空的表结构,不包含任何数据,可以给定一个恒不等式如下:
 
  select * into #temp from sysobjects where 1=2
 
  select * from #temp
 
  二. INSERT INTO
 
  1. 使用insert into,需要先手动创建临时表
 
  1.1 保存从select语句中返回的结果集
 
  create table test_getdate(c1 datetime)
 
  insert into test_getdate select GETDATE()
 
  select * from test_getdate
 
  1.2 保存从存储过程返回的结果集
 
  create table #helpuser
 
  UserName nvarchar(128),
 
  RoleName nvarchar(128),
 
  LoginName nvarchar(128),
 
  DefDBName nvarchar(128),
 
  DefSchemaName nvarchar(128),
 
  UserID smallint,
 
  SID smallint
 
  )
 
  insert into #helpuser exec sp_helpuser
 
  select * from #helpuser
 
  1.3 保存从动态语句返回的结果集
 
  create table test_dbcc
 
  TraceFlag varchar(100),
 
  Status tinyint,
 
  Global tinyint,
 
  Session tinyint
 
  )
 
  insert into test_dbcc exec('DBCC TRACESTATUS')
 
  select * from test_dbcc
 
  对于动态SQL,或者类似DBCC这种非常规的SQL语句,都可以通过这种方式来保存结果集。
 
  2. 不能嵌套使用insert exec语句
 
  2.1 下面这个例子,尝试保存sp_help_job的结果集到临时表,发生错误
 
  create table #JobInfo
 
  job_id uniqueidentifier,
 
  originating_server nvarchar(128),
 
  name nvarchar(128),
 
  enabled tinyint,
 
  description nvarchar(512),
 
  start_step_id int,
 
  category nvarchar(128),
 
  owner nvarchar(128),
 
  notify_level_eventlog int,
 
  notify_level_email int,
 
  notify_level_netsend int,
 
  notify_level_page int ,
 
  notify_email_operator nvarchar(128),
 
  notify_netsend_operator nvarchar(128),
 
  notify_page_operator nvarchar(128),
 
  delete_level int,
 
  date_created datetime,
 
  date_modified datetime,
 
  version_number int,
 
  last_run_date int,
 
  last_run_time int,
 
  last_run_outcome int,
 
  next_run_date int,
 
  next_run_time int,
 
  next_run_schedule_id int,
 
  current_execution_status int,
 
  current_execution_step nvarchar(128),
 
  current_retry_attempt int,
 
  has_step int,
 
  has_schedule int,
 
  has_target int,
 
  type int
 
  )
 
  insert into #JobInfo exec msdb..sp_help_job
 
  返回错误信息:INSERT EXEC 语句不能嵌套。
 
  Msg 8164, Level 16, State 1, Procedure sp_get_composite_job_info, Line 72
 
  An INSERT EXEC statement cannot be nested.
 
  展开错误信息中的存储过程:
 
  exec sp_helptext sp_get_composite_job_info
 
  发现里面还有个INSERT INTO…EXEC的嵌套调用,SQL Server在语法上不支持。
 
  INSERT INTO @xp_results
 
  EXECUTE master.dbo.xp_sqlagent_enum_jobs @can_see_all_running_jobs, @job_owner,@job_id
 
  2.2 可以用分布式查询来避免这个问题,这种写法在INSIDE SQL Server 2005中作者提到过
 
  (1)首先到打开服务器选项Ad Hoc Distributed Queries
 
  exec sp_configure 'show advanced options',1
 
  RECONFIGURE
 
  GO
 
  exec sp_configure 'Ad Hoc Distributed Queries',1
 
  RECONFIGURE
 
  GO
 
  (2)通过OPENROWSET连接到本机,运行存储过程,取得结果集
 
  使用windows认证
 
  select * into #JobInfo_S1
 
  from openrowset('sqloledb', 'server=(local);trusted_connection=yes','exec msdb.dbo.sp_help_job')
 
  select * from #JobInfo_S1
 
  使用SQL Server认证
 
  SELECT * INTO #JobInfo_S2
 
  FROM OPENROWSET('SQLOLEDB','127.0.0.1';'sa';'sa_password','exec msdb.dbo.sp_help_job')
 
  SELECT * FROM #JobInfo_S2
 
  这样的写法,既免去了手动建表的麻烦,也可以避免insert exec 无法嵌套的问题。几乎所有SQL语句都可以使用。
 
  --dbcc不能直接运行
 
  SELECT a.* into #t
 
  FROM OPENROWSET('SQLOLEDB','127.0.0.1';'sa';'sa_password',
 
  'dbcc log(''master'',3)') AS a
 
  --可以变通一下
 
  SELECT a.* into #t
 
  FROM OPENROWSET('SQLOLEDB','127.0.0.1';'sa';'sa_password',
 
  'exec(''DBCC LOG(''''master'''',3)'')') AS a

SqlServer中把结果集放到到临时表的方法(转)的更多相关文章

  1. SqlServer中把结果集放到到临时表的方法

    一. SELECT INTO   1. 使用select into会自动生成临时表,不需要事先创建   select * into #temp from sysobjects   01. 把存储过程结 ...

  2. Ms SQLServer中的Union和Union All的使用方法和区别

    Ms SQLServer中的Union和Union All的使用方法和区别 SQL UNION 操作符 UNION 操作符用于合并两个或多个 SELECT 语句的结果集. 请注意,UNION 内部的 ...

  3. sqlserver中set IDENTITY_INSERT on 和 off 的设置方法

    sqlserver中set IDENTITY_INSERT on 和 off 的设置方法: 执行插入数据库插入数据时报了以下错误,我明明没有给主键set值但还是报错 解决方法如下: qlserver ...

  4. 知方可补不足~sqlserver中触发器的使用

    回到目录 触发器在过去的10年中,即存储过程和ado.net称霸江湖期间是那么的重要,而现在,trigger显得不是那么必要的,我们很少将复杂的业务写在SQL里,当然也会没有机会写到trigger里了 ...

  5. SQLSERVER中的假脱机spool

    SQLSERVER中的假脱机spool 我发现网上对于假脱机的解释都非常零散,究竟假脱机是什么? 这几天在家里研究了一下,收集了很多网上的资料 假脱机是中文的翻译,而英文的名字叫做 spool 在徐老 ...

  6. (转)笔记320 SQLSERVER中的加密函数 2013-7-11

    1 --SQLSERVER中的加密函数 2013-7-11 2 ENCRYPTBYASYMKEY() --非对称密钥 3 ENCRYPTBYCERT() --证书加密 4 ENCRYPTBYKEY() ...

  7. Sqlserver中存储过程,触发器,自定义函数(一)

    Sqlserver中存储过程,触发器,自定义函数 1.存储过程有关内容存储过程的定义:存储过程的分类:存储过程的创建,修改,执行:存储过程中参数的传递,返回与接收:存储过程的返回值:存储过程使用游标. ...

  8. Sqlserver中存储过程,触发器,自定义函数

    Sqlserver中存储过程,触发器,自定义函数: 1. 触发器:是针对数据库表或数据库的特殊存储过程,在某些行为发生的时候就会被激活 触发器的分类: DML触发器:发生在数据操作语言执行时触发执行的 ...

  9. 我是如何在SQLServer中处理每天四亿三千万记录的

    首先声明,我只是个程序员,不是专业的DBA,以下这篇文章是从一个问题的解决过程去写的,而不是一开始就给大家一个正确的结果,如果文中有不对的地方,请各位数据库大牛给予指正,以便我能够更好的处理此次业务. ...

随机推荐

  1. 初学者的Node.js学习历程

    废话篇: 对于我这个新手的不能再白菜的人来说,nodejs的大名都有耳闻,所以说他是一项不可不克服的技能也是可以说的.但是之前没有搞清楚的情况之下胡乱的猜测,是的我对node.js没有一个具体的概念的 ...

  2. AI探索(二)Tensorflow环境准备

    Python + Tensorflow环境安装 Tensorflow支持Windows/Mac/Linux等三种操作系统, 其中windows下python需要安装3.5以上的版本 Mac/Linux ...

  3. LeetCode OJ:Balanced Binary Tree(平衡二叉树)

    Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary ...

  4. 常用stl(c++)

    众所周知,c++的模板库是相当强大的. 下面我来列举一些常用的,(神奇的) //部分材料选自<算法竞赛入门经典(第2版)>(刘汝佳) 一,algorithm (算法) min(a,b)-- ...

  5. uva11134 - Fabled Rooks(问题分解,贪心法)

    这道题非常好,不仅用到了把复杂问题分解为若干个熟悉的简单问题的方法,更是考察了对贪心法的理解和运用是否到位. 首先,如果直接在二维的棋盘上考虑怎么放不好弄,那么注意到x和y无关(因为两个车完全可以在同 ...

  6. node.js 导出当前模块的内部成员

    //当前模块三个成员 //1:常量 const PI = 3.14; //2:二个方法 //计算面积 function getSize(r){ return PI * r * r; } //计算周长 ...

  7. C# 如何将对象写入文件

    http://wenku.baidu.com/link?url=QwDRlO1TeoubnmtUOitXXTRa-eZ6QFKvEuyXyzLXD9c0qCRUV5TL9Fq7_HqvxrMcwsAL ...

  8. DCOS安装

    安装pre-flight master机器会安装上安装文件(同时check条件是否满足要求),其他的agent设备只是check各种条件是否具备. 确保53/2181端口没有被占用:centos7每次 ...

  9. poj 1201 Intervals——差分约束裸题

    题目:http://poj.org/problem?id=1201 差分约束裸套路:前缀和 本题可以不把源点向每个点连一条0的边,可以直接把0点作为源点.这样会快许多! 可能是因为 i-1 向 i 都 ...

  10. Python collections系列之可命名元组

    可命名元组(namedtuple)  根据nametuple可以创建一个包含tuple所有功能以及其他功能的类 1.创建一个坐标类 import collections # 创建类, defaultd ...