A synonym is an alternative name for various types of objects (table, view, sequence, procedure, function, synonym or database package).
SELECT * FROM jward.sales_dataThe database administrator can create a synonym for this table and owner and call it SALES. In this case, the SQL statement is simplified in the following way:
SELECT * FROM sales
In PowerDesigner synonyms are created for base objects. Base objects support multiple synonyms while each synonym can have only one base object. You can view the synonyms depending on a base object in the Dependencies tab of the base object property sheet. If you delete the base object of a synonym, the synonym is deleted as well.