Hi @rajuareraju,
Please see here:
You basically need to run the following update statements:
mysql> UPDATE delivery_profile SET host_name = REPLACE(host_name, 'OLD_HOST', 'NEW_HOST') WHERE host_name = 'OLD_HOST';
mysql> UPDATE delivery_profile SET url = REPLACE(url, 'OLD_HOST', 'NEW_HOST') WHERE url LIKE '%OLD_HOST%';