I have developed the following code:
CREATE PROCEDURE [dbo].[Test01]
AS
BEGIN
SELECT * FROM TestTable
END
CREATE PROCEDURE [dbo].[Test02]
AS
BEGIN
DECLARE @tmp TABLE
(
TestID int,
Test nvarchar(100),
)
INSERT INTO @tmp
EXEC Test01
SELECT COUNT(*) FROM @tmp
END
But if I add or remove a column on TestTable I must to modify @tmp otherwise the result is:
Column name or number of supplied values does not match table definition
How can I solve this problem?
OPENQUERY/OPENROWSETbut seems highly inefficient. If you need a query to get the count of something you are better off writing that particular query. Also if you rewrite your stored proc as an inline TVF then you can just callCOUNT(*)on that and that should be OK efficiency wise. – Martin Smith Oct 2 '12 at 11:08