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

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

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

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

select * into #temp from sysobjects
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 

01. 把存储过程结果集SELECT INTO到临时表,布布扣,bubuko.com

时间: 2024-10-22 18:06:35

01. 把存储过程结果集SELECT INTO到临时表的相关文章

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

把存储过程结果集SELECT INTO到临时表 在开发过程中,很多时候要把结果集存放到临时表中,常用的方法有两种. 一. SELECT INTO 1. 使用select into会自动生成临时表,不需要事先创建 select * into #temp from sysobjects select * from #temp 2. 如果当前会话中,已存在同名的临时表 select * into #temp from sysobjects 再次运行,则会报错提示:数据库中已存在名为 '%1!' 的对象

01.组件版本和集群环境

01.系统初始化和全局变量 集群机器 kube-node1:192.168.1.106 kube-node2:192.168.1.107 kube-node3:192.168.1.108 本着测试的目的,etcd 集群.kubernetes master 集群.kubernetes node 均使用这三台机器. 若有安装 Vagrant 与 Virtualbox,这三台机器可以用本着提供的 Vagrantfile 来建置: $ cd vagrant $ vagrant up 主机名 设置永久主机

oracle存储过程+游标处理select数据

create or replace PROCEDURE UPDATE_RECORDCODE is cursor location_data is select * from location where remark in('952701','9527008','952705');--申明游标 serviceCode NUMBER:=1; BEGIN for l in location_data loop --遍历游标 BEGIN --业务处理 UPDATE SERIAL_CODE SET CU

存储过程中的select into from是干什么的

select into  赋值: select 0 into @starttimeselect @starttime from DUAL into后边应该还有个变量名,into前面也还要带上筛选字段,例如select count(*) into v_count from dual;这条语句的意思是查询dual表的所有记录数,将查询结果存入v_count变量中,也就是给变量设值的用法 可以给变量赋值 CREATE PROCEDURE cp_p_recived ()BEGIN SELECT IFNU

【P1141】01迷宫 {并查集}

1.ptr -> x == (*ptr).x != *ptr.x 2.并查集寻父亲形式参数要!用!引!用! #include <iostream> #include <queue> using namespace std; class node{ public: node():v(0),num(0),vis(0),x(0),y(0),pa(this){} bool v; int num; bool vis; int x; int y; node* pa; }; int n,m

(01)安装zookeeper集群

本篇记录在3台服务器(192.168.7.151.192.168.7.152.192.168.7.153)上安装zookeeper集群的过程 一.安装过程 1.解压(zookeeper-3.4.6.tar.gz在/usr/local下) [[email protected] local]# tar -zxvf zookeeper-3.4.6.tar.gz 2.配置环境变量 [[email protected] zookeeper-3.4.6]# vim /etc/profile 添加如下配置:

2015.01.16 Android错误集(1)

1.MainActivity里第一个方法 protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); findViewById(R.id.Btn01).setOnClickListener(this); } 如果不加findViewById,下面会按界面上的什么按钮都没反应 2.上面的findVIewById如果后面括

【oracle】存储过程:将select查询的结果存到变量中

原文地址:https://www.cnblogs.com/xiangtunmizu/p/12001926.html

mysql 存储过程中使用游标中使用临时表可以替代数组效果

mysql不支持数组.但有时候需要组合几张表的数据,在存储过程中,经过比较复杂的运算获取结果直接输出给调用方,比如符合条件的几张表的某些字段的组合计算,mysql临时表可以解决这个问题.临时表:只有在当前连接情况下, TEMPORARY 表才是可见的.当连接关闭时, TEMPORARY 表被自动取消.必须拥有 create temporary table 权限,才能创建临时表.可以通过指定 engine = memory; 来指定创建内存临时表. 先建立要用的数据表及数据: drop table