Results 1 to 5 of 5

Thread: database size

  1. #1
    Join Date
    Apr 2007
    Posts
    4

    database size

    hi

    1.how do i know what should be by database size.

    2 does database over flow occur?
    who takes care of the problem---- DBMS or the programmer

    3. how to determine when to truncate a table

    4. what is the default size of a table. Can it be set?

    5. what is relation between database size and its table's sizes.

  2. #2
    Join Date
    Nov 2002
    Location
    New Jersey, USA
    Posts
    3,932
    1. depends on how much data you are storing, table and index structure

    2. dba must plan for database growth based on estimate provided by programmers

    3. depends on application, in some cases you can never truncate

    4. in Oracle you can specify the number of extents for a table, in sql server it is limited by the size of data file

    5. database size = tables size + index size + storage required for database system catalog + LOBs + ...

  3. #3
    Join Date
    Sep 2002
    Posts
    5,938
    Which rdbms do you use? Different rdbms has different means to check db or table size.

  4. #4
    Join Date
    Apr 2007
    Posts
    4
    I am using mysql and sybase

  5. #5
    Join Date
    Sep 2002
    Posts
    5,938
    Did you check maunals of them?

Posting Permissions

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