UniVerse SQL View All Tablenames

2019-07-20 09:20发布

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?

标签: sql universe
3条回答
Juvenile、少年°
2楼-- · 2019-07-20 09:45

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.

查看更多
我想做一个坏孩纸
3楼-- · 2019-07-20 09:48

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]"
查看更多
在下西门庆
4楼-- · 2019-07-20 10:04

USE THIS SINTAXIS

a)... THIS IS FOR CONTENTS

LIST (NAME OF DATABASE)

b) ... THIS IS FOR DICTIONARY

LIST DICT (NAME OF DATABASE)

查看更多
登录 后发表回答