在开发过程中,很多时候要把结果集存放到临时表中,常用的方法有两种。

一. SELECT INTO
1. 使用select into会自动生成临时表,不需要事先创建
12 select * into #temp from sysobjects
select * from #temp

2. 如果当前会话中,已存在同名的临时表

1 select * into #temp from sysobjects

再次运行,则会报错提示:数据库中已存在名为'%1!' 的对象。www.it165.net

Msg 2714, Level16, State 6, Line 2
There is alreadyan object named '#temp' in the database.

在使用select into前,可以先做一下判断:

1234 if OBJECT_ID('tempdb..#temp') is not null
    drop table #temp
select * into #temp from sysobjects
select * from #temp

3. 利用select into生成一个空表
如果要生成一个空的表结构,不包含任何数据,可以给定一个恒不等式如下:

12 select * into #temp from sysobjects where 1=2
select * from #temp

二. INSERT INTO

1. 使用insert into,需要先手动创建临时表
1.1 保存从select语句中返回的结果集
123 create table test_getdate(c1 datetime)
insert into test_getdate select GETDATE()
select * from test_getdate

1.2 保存从存储过程返回的结果集

123456789101112 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 保存从动态语句返回的结果集
123456789 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语句
下面这个例子,尝试保存sp_help_job的结果集到临时表,发生错误:

123456789101112131415161718192021222324252627282930313233343536 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, Level16, State 1, Procedure sp_get_composite_job_info, Line 72
An INSERT EXEC statement cannot benested.

展开错误信息中的存储过程:

1 exec sp_helptext sp_get_composite_job_info

发现里面还有个INSERT INTO…EXEC的嵌套调用,SQL Server在语法上不支持。

12 INSERT INTO @xp_results
EXECUTE master.dbo.xp_sqlagent_enum_jobs @can_see_all_running_jobs, @job_owner, @job_id

可以用分布式查询来避免这个问题,这种写法在INSIDE SQL Server 2005中作者提到过。
(1) 首先到打开服务器选项Ad Hoc Distributed Queries
123456 exec sp_configure 'show advanced options',1
RECONFIGURE
GO
exec sp_configure 'Ad Hoc Distributed Queries',1
RECONFIGURE
GO

(2) 通过OPENROWSET连接到本机,运行存储过程,取得结果集
使用windows认证
123 select * into #JobInfo_S1
from openrowset('sqloledb', 'server=(local);trusted_connection=yes','exec msdb.dbo.sp_help_job')
select * from #JobInfo_S1

使用SQLServer认证
123 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语句都可以使用。

12345678 --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

把存储过程SELECT INTO到临时表的更多相关文章

  1. 把存储过程结果集SELECT INTO到临时表

    把存储过程结果集SELECT INTO到临时表 在开发过程中,很多时候要把结果集存放到临时表中,常用的方法有两种. 一. SELECT INTO . 使用select into会自动生成临时表,不需要 ...

  2. 转:把存储过程结果集SELECT INTO到临时表

    把存储过程结果集SELECT INTO到临时表   在开发过程中,很多时候要把结果集存放到临时表中,常用的方法有两种.   一. SELECT INTO  1. 使用select into会自动生成临 ...

  3. SQL Server数据库的存储过程中定义的临时表,真的有必要显式删除临时表(drop table #tableName)吗?

    本文出处:http://www.cnblogs.com/wy123/p/6704619.html 问题背景 在写SQL Server存储过程中,如果存储过程中定义了临时表,有些人习惯在存储过程结束的时 ...

  4. SELECT INTO创建临时表

    SELECT INTO创建临时表 SQL Server临时表有两种类型:本地和全局.它们在名称.可见性以及可用性上有区别.本地临时表的名称以单个数字符号 (#) 打头:它们仅对当前的用户连接是可见的: ...

  5. Java调用oracle存储过程通过游标返回临时表数据

    注:本文来源于 <  Java调用oracle存储过程通过游标返回临时表数据   > Java调用oracle存储过程通过游标返回临时表数据 项目开发过程中,不可避免的会用到存储过程返回结 ...

  6. 01. 把存储过程结果集SELECT INTO到临时表

    在开发过程中,很多时候要把结果集存放到临时表中,常用的方法有两种. 一. SELECT INTO 1. 使用select into会自动生成临时表,不需要事先创建 select * into #tem ...

  7. 存储过程使用表变量或临时表代替游标Fetch实例,访问远程数据库

    定义表变量是可以直接操作在内存中的数据,比较快.临时表在大数据量时会比游标使用的资源少.还是要看具体情况了.也有可能在实际优化过程中相互替换呢. 留作记忆的代码如下: if object_id('te ...

  8. MYSQL 存储过程、函数、临时表、游标

    创建函数 因为我们平时经常需要创建不同日期的数据,以模拟的场景,覆盖更多的用例,所以这里写了一个返回随机日期的demo.大家可以自行扩展. DROP FUNCTION IF EXISTS milan_ ...

  9. 解决 FastReport 使用存储过程 找不到临时表问题

    在存储过程最开始加入:以下命令就可以了 SET FMTONLY OFF 有时候在执行SQL查询语句时,仅仅需要知道检索的元数据,而不是具体的数据行,可以设置SET FMTONLY ON. SET FM ...

随机推荐

  1. js判断数组,对象是否存在某一未知元素

    1.对象 var obj = { aa:'1111', bb:'2222', cc: '3333' }; var str='aa'; if(str in obj){ console.log(obj[s ...

  2. Get gcc built-in macros using command gcc -dM -E - < /dev/null

    root@vmuser-virtual-machine:/home/vmuser# gcc -dM -E - < /dev/null #define __SSP_STRONG__ 3#defin ...

  3. https://blog.csdn.net/u012150179/article/details/38091411

    一 scrapy-redis实现分布式爬取分析 所谓的scrapy-redis实际上就是scrapy+redis其中对redis的操作采用redis-py客户端.这里的redis的作用以及在scrap ...

  4. markdown实例

    Hi This is a Markdown live editor built using WMD and other open source tools. I use it to write ent ...

  5. NodeJS类型定义方式

    最近在学习nodejs,就是因为它比较轻便,并发量大,上手快.由于以前一直在做C#的后端,没有接触过javascript,所以还得慢慢学习之. nodejs所用的是javascript语言,它没有如C ...

  6. 玩转X-CTR100 l STM32F4 l HC-SR04超声波测距

    我造轮子,你造车,创客一起造起来!更多塔克创新资讯[塔克社区 www.xtark.cn ][塔克博客 www.cnblogs.com/xtark/ ] 超声波测距模块HC-SR04可以测量2cm~40 ...

  7. 关于Forsaken Isle

    像素化的饥荒,但是和饥荒比起来,生存压力小了不少. 主要突出的是物品合成上 开始主要采集树枝,须根,岩石,燧石一个须根可以生成一根绳子 挺休闲的,种种菜,合合装备 未来版本会有魔法,潜水,巨龙,土族部 ...

  8. Bad update sites

    Bad update sites com.genuitec.pulse2.client.common.launcher.BadUpdateSiteException Software being in ...

  9. C#实现Access导入导出Excel

    一.Access从Excel中导入数据 .用到的Excel表的格式及内容 实现 [c-sharp] view plaincopyprint? OleDbConnection con = new Ole ...

  10. 高并发下linux ulimit优化

    系统性能一直是一个受关注的话题,如何通过最简单的设置来实现最有效的性能调优,如何在有限资源的条件下保证程序的运作,ulimit 是我们在处理这些问题时,经常使用的一种简单手段.ulimit 是一种 l ...