recuperar en un procedimiento almacenado un select proveniente de otro procedimiento

07/01/2004 - 00:56 por Avgvstvs | Informe spam
Es posible poder manipular los datos provenientes de un procedimietno
almacenado que genera una instrucción select cuando es llamado desde otro
procedimiento almacenado?
Como por ejemplo llenar una tabla temporal con los resultados de otro
procedimiento
 

Leer las respuestas

#1 Gustavo Larriera [MVP]
07/01/2004 - 01:15 | Informe spam
Sí, es posible. El siguiente ejemplo es tomado de los Books Online, presta
atención al uso de la construcción:

INSERT tabla EXECUTE storedprocedure

saludos
gux

IF EXISTS(SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME = 'author_sales')
DROP TABLE author_sales
GO
IF EXISTS(SELECT name FROM sysobjects
WHERE name = 'get_author_sales' AND type = 'P')
DROP PROCEDURE get_author_sales
GO
USE pubs
CREATE TABLE author_sales
( data_source varchar(20),
au_id varchar(11),
au_lname varchar(40),
sales_dollars smallmoney
)
GO
CREATE PROCEDURE get_author_sales
AS
SELECT 'PROCEDURE', authors.au_id, authors.au_lname,
SUM(titles.price * sales.qty)
FROM authors INNER JOIN titleauthor
ON authors.au_id = titleauthor.au_id INNER JOIN titles
ON titleauthor.title_id = titles.title_id INNER JOIN sales
ON titles.title_id = sales.title_id
WHERE authors.au_id like '8%'
GROUP BY authors.au_id, authors.au_lname
GO
USE pubs
INSERT author_sales
SELECT 'SELECT', authors.au_id, authors.au_lname,
SUM(titles.price * sales.qty)
FROM authors INNER JOIN titleauthor
ON authors.au_id = titleauthor.au_id INNER JOIN titles
ON titleauthor.title_id = titles.title_id INNER JOIN sales
ON titles.title_id = sales.title_id
WHERE authors.au_id LIKE '8%'
GROUP BY authors.au_id, authors.au_lname

INSERT author_sales EXECUTE get_author_sales

INSERT author_sales
EXECUTE
('
SELECT ''EXEC STRING'', authors.au_id, authors.au_lname,
SUM(titles.price * sales.qty)
FROM authors INNER JOIN titleauthor
ON authors.au_id = titleauthor.au_id INNER JOIN titles
ON titleauthor.title_id = titles.title_id INNER JOIN sales
ON titles.title_id = sales.title_id
WHERE authors.au_id like ''8%''
GROUP BY authors.au_id, authors.au_lname
')

SELECT * FROM author_sales

Gustavo Larriera, MSFT MVP-SQL
Uruguay LatAm

This message is provided "AS IS" with no warranties expressed or implied,
and confers no rights.


"Avgvstvs" wrote in message
news:
Es posible poder manipular los datos provenientes de un procedimietno
almacenado que genera una instrucción select cuando es llamado desde otro
procedimiento almacenado?
Como por ejemplo llenar una tabla temporal con los resultados de otro
procedimiento




Preguntas similares