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