How to replace the special character $owner with \"hr\" and $table_name with \"hr\" and $constraint_name with \"scma_constraint\" in dynamic. Change
\"alter ta
String.replace()
String myString = "..."; myString = myStrign .replace("$owner", "hr") .replace("$table_name", "hr") .replace("$constraint_name", "blah");