Openedge 10.1A and blank user

Start a session against the db without giving it a username.

If you are prompted for a username type ^E on UNIX or <ESC> on Windows.

Then, at the editor, execute:

display userid.
 
Yes, they are part of the meta-schema.

Code:
for each _file no-lock where _hidden = no:
  display _file.
  for each _field no-lock of _file:
    display _field.
  end.
end.
 
How can I understand a record like this:

"_Sysdbauth" -81 "*" "*" "*" "*" "" ? "" yes "_Sysdbauth" 2898 ? "*" "*" ? ? ? "PUB" "PUB" "S" ?
 
That depends on what part of it you don't understand.

Obviously you ran some query other than the one that I posted to get that result.

Clearly I could just parrot the field names and descriptions but I don't see how that would be helpful. What is it that you want to know? And why do you feel that it is important?
 
Tom:

This is the result from the query you posted:

File-Name File-Number
Can-Create
Can-Read
Can-Write
Can-Delete
Desc
Valexp
Valmsg
Frozen Dump-name CRC File-Label
Can-Dump
Can-Load Valmsg-SA
File-Label-SA ianum Creator
Owner Tbl-Type User-Misc
-------------------------------------------------------------------------
VENPRTV 371
*
*
*
*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
?
no venprtv 37032 venprtv
*
* ?
? 7 PUB
PUB T ?


From this and taking in count that Blank user is not bloqued is it possible that any user can at least read this table?
 
Back
Top