Jan 10, 2002 #1 timofe IS-IT--Management Aug 14, 2001 8 GB Does anyone know how to calculate the size of a database row consisting of only NUMBER, DATE and VARCHAR2 columns in 8.1.7? There used to be a formula for 8, does it still apply (and, if so, can anyone remember what it is)?
Does anyone know how to calculate the size of a database row consisting of only NUMBER, DATE and VARCHAR2 columns in 8.1.7? There used to be a formula for 8, does it still apply (and, if so, can anyone remember what it is)?
Jan 14, 2002 #2 alexhu MIS Sep 25, 2001 1,288 GB Admin Guide Release 8.0 Appendix A; Space Estimations for Schema Objects Can't find the same in 8i though Alex Upvote 0 Downvote
Admin Guide Release 8.0 Appendix A; Space Estimations for Schema Objects Can't find the same in 8i though Alex
Jan 15, 2002 Thread starter #3 timofe IS-IT--Management Aug 14, 2001 8 GB Alex, Thanks, but I've already looked there. Why do Oracle do you a favour in one release and then take it away in the next release?! Frustrating is not the word... Cheers, Tim Upvote 0 Downvote
Alex, Thanks, but I've already looked there. Why do Oracle do you a favour in one release and then take it away in the next release?! Frustrating is not the word... Cheers, Tim
Jan 15, 2002 #4 JamesGordon Programmer Jan 14, 2002 70 GB There is a vsize function you can use i.e. (from the top of my head): select vsize(col_varchar2), vsize(col_number) ... from table; Try searching for vsize in the docs. Upvote 0 Downvote
There is a vsize function you can use i.e. (from the top of my head): select vsize(col_varchar2), vsize(col_number) ... from table; Try searching for vsize in the docs.
Jan 15, 2002 Thread starter #5 timofe IS-IT--Management Aug 14, 2001 8 GB Sorry. Maybe I didn't make myself clear. I'm trying to predict the size before any data is loaded. Will vsize work in this case? Thanks for your assistance. Upvote 0 Downvote
Sorry. Maybe I didn't make myself clear. I'm trying to predict the size before any data is loaded. Will vsize work in this case? Thanks for your assistance.
Jan 15, 2002 #6 JamesGordon Programmer Jan 14, 2002 70 GB Well, numbers and dates are fixed lenght and you could take a maxinum possible on the varchar2? Upvote 0 Downvote