Microsoft
Software
Hardware
Network
Question : How can I "sp_help" the output signature of a Stored Procedure?
Anyone know the command to discover the output signature of a stored procedure? That is, if I create (in AdventureWorks) the stored procudure...
create procedure Summer as
select EmployeeID, NationalIDNumber, BirthDate from HumanResources.Employee
go
I want to execute "sp_help????? Summer" and see:
EmployeeId int
NationalIdNumber varchar(15)
BirthDate datetime
What comand gives me this information??? I know the thing exists because SSIS can figure the output signature of the procedure without actually running it.
Thanks in advance.
Answer : How can I "sp_help" the output signature of a Stored Procedure?
I do not believe there is any system Stored Procedure that gives you the information that you need.
Random Solutions
Router- SW- PC configuration
Correct black setting in Illustrator for offset printer
ie8 img border transparent gif bug
How to display a web page of application in another application in ASP.NET
Where is the "iPhone Simulator" folder located?
Relationship between WPF and WCF
Outer join issues when trying to build query with continuous time line
SSL certification renewal for OWA
prolems with internal emails on new Exchange server and domain
C# - Variable values being nulled out between code-behind and inline ASPX code.