What is an alias and how does it differ from a synonym?
Answers were Sorted based on User's Feedback
Answer / guru
Alias & Synonyms are alternate of table or a view.
ALIAS SYNONYM
1. it is a global object. 1. it is aprivate object.
2. any one can access the 2. but the one who create
alias. the alias can only
access it.
3.when the base table is
droped.Alias is not dropped. 3. when the base table is
droped.SYNONYM is dropped
automatically.
| Is This Answer Correct ? | 19 Yes | 3 No |
Answer / krishna kant kumar
Alias is used in present session only but synonym is used in next session also because it is a database object.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / yogendra shinde
Hi,
Alias and Synonym both are alternative names to a table
name. But the major difference between Alias and Synonym is
that
>>>Alias can be used to refer a table at different location
( meaning different or remote system and it is not provate
to user who has created it)
>>> Synonym is used to refer table in the same location
with different name. Synonym is very much provate to the
user who has created it.
>>> Regarding dropping ALIAS and SYNONYM I am doubtful.
I have read that if we drop base table or base view then
both alias and synonym are also dropped (As per C.J.DATE
DB2 version 4.0). Please update if anybody has more on this.
| Is This Answer Correct ? | 4 Yes | 8 No |
Can we install 2 different versions of Db2 on same mainframe?
Define buffer pool.
If I have a view which is a join of two or more tables, can this view be updatable?
select * from orders where odate between '2010-01-01'and '2010-03-31' How do u fetch this into cursor?
If we have 100 records in the PF, we deleted all the records then what is the Size of the PF?
What is a DB2 bind?
What is a Foreign Key?
0 Answers Tavant Technologies, Zensar,
What are the two types of logging in the db2 database? Explain them.
What happens to a cursor after a commit?
What is the SQL query to select, delete and get count of duplicate rows in DB2?
How is deadlock resolved?
What is the difference between static and dynamic SQL?