Consultor Eletrônico



Kbase P19790: How to change the -ld (logical name) of my foreign data source via 4GL?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   10/15/2008
Status: Verified

GOAL:

How to change the -ld (logical name) of my foreign data source via 4GL?

GOAL:

How to change the logical database name (-ld) after creating a schema holder via VST?

GOAL:

How to change schema image name of foreign data source?

FACT(s) (Environment):

DataServer
The _db, owns the metadata and holds some additional information about the database.

The _db-name is a character field that describes, if not the local database, then the name of the foreign or remote database.

Run the following 4GL:

For each _db where _db-name = "oldname".
set _db-name = "newname".
end.