Hi, this is my changeName bypass made many months ago and now I would like share with the community. Remember that with this method, the RenameName scroll doesn't work.
[Only registered and activated users can see links. Click Here To Register...]
Right button on TCHARTABLE --> Design Table, and now go in Trigger, set all like the image.
Now delete all from Definition and put this script into.
Now save and test it ;).
[Only registered and activated users can see links. Click Here To Register...]
Right button on TCHARTABLE --> Design Table, and now go in Trigger, set all like the image.
Now delete all from Definition and put this script into.
Code:
BEGIN
DECLARE @oldname VARCHAR(255)
DECLARE @newname VARCHAR(255)
SELECT @oldname = szNAME FROM DELETED
SELECT @newname = szNAME FROM INSERTED
IF(@oldname != @newname)
BEGIN
ROLLBACK;
END
END