I want to create a report that will give the user a text box that they can enter sql into. Than I want another text box that they can enter a number of records that the sql statement they entered should be affected by their statement. If it matches the number they entered it commits it if not it rolls it back and gives them an error message that they need to correct their sql statement. I just don't know how to wrap it so I don't have to deal with all the apostrophes. Any ideas?
alter proc usp_DataFix (@script nvarchar(max),@rowcount as int)
as
declare @Trancount int
declare @Count table (Cnt int)
begin tran
execute sp_executesql @script
SELECT @trancount = @@ROWCOUNT
insert into @count
select @trancount
set @trancount = (select cnt from @count)
If @rowcount <> @trancount
rollback tran
If @rowcount = @trancount
commit tran
Alan