How to make the email Address Dummy in Oracle Database? Query to make the email Address as dummy, update <tablename> set <Columnname> = '@' || <Columnname> where <Columnname> is not null; Query to Remove the email Address as dummy, update <tablename> set <Columnname>= substr(<Columnname>,2,length(<Columnname>)) where <Columnname> is not null;
This blog is fully for system admins and others who are facing issues with their day to day IT life. Which helps you to learn from your mistakes and issues here you can find lot of troubleshooting techniques and other information which helps you to get some idea to fix your issues..