Viewing 5 posts - 1 through 5 (of 5 total)
I dont, i think its mad, but I didn't write the original system, nor can I change it unfortunately.
June 8, 2010 at 2:34 am
Many Thanks for all your help, I have created a temp table at the beginning of the stored proceedure now, which is doing the job perfect.
October 30, 2008 at 3:17 am
If I did it this way, would I then have to define all the columns headings/size etc ?
October 29, 2008 at 9:16 am
This is my actual stored proceedure
CREATE PROCEDURE dbo.SP_ListProjectSOAs
(
@PROJECTID BIGINT
)
AS
Declare @CountryID int
set @CountryID = (Select Countryid from Project where projectid = @projectid)
BEGIN
IF @CountryID...
October 29, 2008 at 9:06 am
Viewing 5 posts - 1 through 5 (of 5 total)