DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: Row Length

  1. #1
    Join Date
    Feb 2000
    Location
    Alexandria, VA, 22314
    Posts
    41

    Talking

    Hi all,

    I have a table with 50 columns. However, I wanted to use this table for another part of the application, but there may be only 7 or 8 columns of reuse.

    What is the impact of maybe 50% of this table have 8 columns populated with data and the other 50% of the table having most of the columns populated.

    Is there a problem with this as far as storage management at a table level is concerned?

    Thanks in advance.

    Keith

  2. #2
    Join Date
    Nov 2000
    Posts
    344
    it depends on the data types. If you use CHAR datatypes, they will use all of their allocated space regardless of if you put data in them or not. VARCHAR2, on the other hand, will only use the space occupied by actual data.

    I am not sure about DATE, NUMBER and other data types....

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width