Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
taylo
Yak Posting Veteran
82 Posts |
Posted - 2001-03-07 : 08:09:31
|
| I keep getting an arithmatic overflow below.@strForm are the form values from an ASP page. it looks liek thisFirstName=1,LastName=1CREATE PROCEDURE los_ResetAttributes @strForm nvarchar(1000),@userid numeric(10)ASdeclare @setAtts nvarchar(1000)set @setAtts = 'Update loy_tblAttributes Set ' + @strForm + ' Where UserID = ' + @useridexec(@setAtts)Thanks,Rob |
|
|
|
|
|