HomeHome Product Discus... Product Discus...Enhancement Req...Enhancement Req...Database Stored Procedure BugDatabase Stored Procedure Bug
Previous
 
Next
New Post
11/13/2011 10:57 PM
 

I was transferring a database from one place to another and had to use scripts.  Here is the Stored Proc that failed:

 

CREATE PROCEDURE [dbo].[Smith_DeleteShoppingCartBundle]
(
@bundleID int,
@masterBundleID int
)
 
AS
BEGIN
      DELETE FROM Smith_ShoppingCart 
      WHERE [BundleID] = @bundleID AND [MasterBundleID] = @masterBundleID
END
GO
 
====================================================================
Msg 207, Level 16, State 1, Procedure Smith_DeleteShoppingCartBundle, Line 10
Invalid column name 'MasterBundleID'.
 

 

 
New Post
11/19/2011 12:52 PM
 
Hi David,
We will remove the "masterBundleID" from the sproc. Thanks for the feedback!


At your service,
Dave Smith
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
Previous
 
Next
HomeHome Product Discus... Product Discus...Enhancement Req...Enhancement Req...Database Stored Procedure BugDatabase Stored Procedure Bug