Hi, i have a problem. When i try to delete some rows of one table (id
numeric (8), picture image) the follow message appears:
"Invalid text pointer value 000000000247eb0c"
Why?
Thanks in advanced.
Why?
Thanks in advanced.
1. instead of delete trigger delete data from table using execute and temporary table for deleted
Hello,
SQL Server 2k has got me confused...below the instead of trigger that
causes all my problems...below the trigger the explanation of my
problem
=========================================================================== begin transaction -- ***** Initialize /* /* Delete using the execute function fails! */
commit transaction =========================================================================== In the trigger I've tried a 'direct' sql statement to delete data from Thanx in advance for the answer! Best regards, Peter 3. Help! insert(update,delete) image data into image 4. We're looking for a DEVELOPER of DATABASES - for a project !!! 5. Help!!! insert(update,delete) image data into image 6. Looking for middleware to connect to multiple databases 7. Help! insert(update,delete) image data into image 8. Inserts to a SQL 2000 database 9. How to load an image to an image field of a SQL Table 10. How do I upload images into a table with an image data type 11. Insert image file in a table with an image type 12. Problems loading large images into an IMAGE field
create trigger [triggerConcurrenten] on [dbo].[concurrenten]
instead of delete
as
begin
-- ***** Declare local vars
select deleted.* into #deleted from deleted
Delete data from concurrenten table using the below sql
statement
works perfectly.
=============
delete
from concurrenten
where exists(
select * from #deleted d
where concurrenten.[id] = d.[id])
*/
begin
raiserror('[triggerConcurrenten]: Error occured!', 16, 1)
rollback transaction
end
end
the concurrenten table. No problem at all...but when I use the execute
function the exact same delete statement fails...what am I doing
wrong?