Deleting one field in a table and changing fonts in reports

Deleting one field in a table and changing fonts in reports

How can I delete only one field from an Oracle table, and how can I set fonts or font sizes in Oracle SQL reports?

    Requires Free Membership to View

    By submitting your registration information to SearchOracle.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchOracle.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

To drop a single column from a table, use the following syntax:

   ALTER TABLE mytable DROP COLUMN thecolumn ;
This will drop the column as well as dropping any dependent indexes or constraints.

Fonts and font sizes cannot be manipulated via SQL*Plus reporting since SQL*Plus output is strictly flat text only. If you are using Oracle Reports, you can set the font via the property panel for the field on the report.

For More Information

  • What do you think about this answer? E-mail the editors at editor@searchDatabase.com with your feedback.
  • The Best Oracle Web Links: tips, tutorials, scripts, and more.
  • Have an Oracle or SQL tip to offer your fellow DBAs and developers? The best tips submitted will receive a cool prize. Submit your tip today!
  • Ask your technical Oracle and SQL questions -- or help out your peers by answering them -- in our live discussion forums.
  • Ask the Experts yourself: Our SQL, database design, Oracle, SQL Server, DB2, metadata, object-oriented and data warehousing gurus are waiting to answer your toughest questions.

This was first published in February 2002

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

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