Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_web_howto thread: Stored Proc Error


Message #1 by "Ryan vd Merwe" <ryanvdm@i...> on Fri, 21 Feb 2003 13:16:57 +0200
Hi

I have just begun writing an app using stored procs everything was working
fine until i started getting the following error on in inset proc that was
working fine.

"HTTP 403.9 - Access Forbidden: Too many users are connected Internet
Information Services"

is this error caused by my poc

the proc is as follows

Alter Procedure sp_insert_HIFIibtProductDetails
	(@ibtCode				[numeric](9),
	 @ibtProductCode 			[nvarchar](100),
	 @ibtProductDesc	 		[nvarchar](300))

AS INSERT INTO [hifiCorp].[dbo].[HIFIibtProductDetails]
	 ( [ibtCode],
	 [ibtProductCode],
	 [ibtProductDesc])

VALUES
	(@ibtCode,
	 @ibtProductCode,
	 @ibtProductDesc)


return

thanks
Ryan


  Return to Index