Viewing 2 posts - 1 through 2 (of 2 total)
Just a thought from a rattled brain but...
If you dont need to see the previous days balance prior to doing an insert or update, then why not just throw a...
June 5, 2003 at 8:59 am
#459970
Ive used the following to retrieve the table name;
declare @TbleName nvarchar(324)
SET @TbleName=(Select name from sysobjects where sysobjects.id = (select parent_obj from sysobjects where sysobjects.id =@@PROCID))
Of course then what you do...
June 5, 2003 at 8:31 am
#459960