Kbase 12844: how to get the Alias name associated with the Db name
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  5/10/1998 |
|
how to get the Alias name associated with the Db name
The following code is an example of how to get the
Alias Name and the Logical Name attached to the Physical Database
Name.
def var i as integer.
do i = 1 to num-alias:
display alias(i) label "Alias Name"
ldbname(alias(i)) label "Logical Name"
pdbname(alias(i)) label "Physical Name"
with frame a side-labels.
pause.
end.
Progress Software Technical Support Note # 12844