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

Thread: length/size in BYTES

  1. #1
    Join Date
    Mar 2001
    Location
    Reading, U.K
    Posts
    598

    length/size in BYTES

    Example,
    Create table test(a number(5), b number);
    insert into test values(1, 1);
    insert into test values(22222, 2);
    commit;

    What will be the length/size in BYTES of the above column values?

    For 1 number value, How many BYTES are allocated by oracle?
    Cheers!
    OraKid.

  2. #2
    Join Date
    Dec 2000
    Location
    Ljubljana, Slovenia
    Posts
    4,439
    select vsize(a), vsize(b) from test;
    Jurij Modic
    ASCII a stupid question, get a stupid ANSI
    24 hours in a day .... 24 beer in a case .... coincidence?

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