Tip

Reference information about v$ and other dictionary tables

Now you don't have to look in a reference manual to find descriptions about v$ and other dictionary tables and their columns -- you can write a SQL query. The sample script shown below will prompt you for the name of the table.

SET LINESIZE 300
SET PAGESIZE 0
COLUMN TABLE_NAME FORMAT A40 WRAP
COLUMN COLUMN_NAME FORMAT A40 WRAP
COLUMN COMMENTS FORMAT A80 WRAP

This is to get information about tables. Try it by entering DBA_TABLES.

SELECT * FROM DICTIONARY
WHERE TABLE_NAME= UPPER('&TABLE_NAME');

This is to get information about columns. Try it by entering DBA_TABLES.

SELECT * FROM DICT_COLUMNS
WHERE TABLE_NAME= UPPER('&TABLE_NAME');

Reader Feedback

Edward M. writes: Here is what I get when I run this query.

Enter value for table_name: dba_tables
old   2: WHERE TABLE_NAME= UPPER('&TABLE_NAME')
new   2: WHERE TABLE_NAME= UPPER('dba_tables')
buffer overflow. Use SET command to reduce ARRAYSIZE or increase MAXDATA.
What I can I do in this case?

The author responds: Please use the following before executing the query:

SET ARRAYSIZE 1
The Following is an explanation from the SQL*PLUS manual about why we are reducing ARRAYSIZE TO 1:

"SET ARRAYSIZE sets the number of rows--called a batch--that SQL*Plus will fetch from the database at one time. Valid values are 1 to 5000. A large value increases the efficiency of queries and subqueries that fetch

    Requires Free Membership to View

many rows, but requires more memory. Values over approximately 100 provide little added performance. ARRAYSIZE has no effect on the results of SQL*Plus operations other than increasing efficiency." I hope this helps.

For More Information

  • Feedback: E-mail the editor with your thoughts about this tip.
  • More tips: Hundreds of free Oracle tips and scripts.
  • Tip contest: Have an Oracle tip to offer your fellow DBAs and developers? The best tips submitted will receive a cool prize -- submit your tip today!
  • Ask the Experts: Our SQL, database design, Oracle, SQL Server, DB2, relational model, and data warehousing gurus are waiting to answer your toughest questions.
  • Forums: Ask your technical Oracle questions--or help out your peers by answering them--in our active forums.
  • Best Web Links: Oracle tips, tutorials, and scripts from around the Web.

This was first published in September 2002

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.