UniVerse SQL View All Tablenames

核能气质少年 提交于 2019-12-11 03:32:21

问题


I am new to UniVerse. I am working with an existing Database. I would like to know how to View a List of all available TABLES in the database. Is there a simply syntax command to view all TABLES?


回答1:


Type "F" would only return results of physical files in that account. Type "Q" are Q-Pointers that point to physical files in other accounts. This is a way to have one file, but several accounts point to that file.




回答2:


At TCL:

LIST VOC WITH F1 = "F]"

This will list all file/table entries registered in a specific account (database) on the database server.

If you're looking for all accessible files, including files that may be in other accounts (databases) on the server, use the following query:

LIST VOC WITH F1 = "F]" OR F1 = "Q]"



回答3:


USE THIS SINTAXIS

a)... THIS IS FOR CONTENTS

LIST (NAME OF DATABASE)

b) ... THIS IS FOR DICTIONARY

LIST DICT (NAME OF DATABASE)



来源:https://stackoverflow.com/questions/30944661/universe-sql-view-all-tablenames

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!