Vsro Error

09/19/2011 21:20 sirout1#1
help me with this

[Only registered and activated users can see links. Click Here To Register...]
09/20/2011 09:25 raiden90#2
go to the database>SRO_VT_SHARD>right click on the database>query and paste this tablet:
Quote:
/****** Object: StoredProcedure [dbo].[_ExistsServiceOffRentItem] Script Date: 09/13/2011 12:03:44 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO



CREATE procedure [dbo].[_ExistsServiceOffRentItem]
as

if( exists (select * from _Items with (nolock) where RefItemID in (select RefItemID from _RefRentItem where Service = 0 ) ) )
begin
return -1
end


GO