Hi,
I have been asked to perform some analysis on some tables within a large Oracle database to determine the maximum row length.
I thought I could get the information from ALL_TAB_COLUMNS, with something along the lines of:
However this doesn't seem to do what I need when the table includes number or date fields.
If somebody could point me in the right direction I'd appreciate it!
Ed Metcalfe.
Please do not feed the trolls.....
I have been asked to perform some analysis on some tables within a large Oracle database to determine the maximum row length.
I thought I could get the information from ALL_TAB_COLUMNS, with something along the lines of:
Code:
SELECT
SUM(?????)
FROM
ALL_TAB_COLUMNS
WHERE
TABLE_NAME='NAME_OF_TABLE'
However this doesn't seem to do what I need when the table includes number or date fields.
If somebody could point me in the right direction I'd appreciate it!
Ed Metcalfe.
Please do not feed the trolls.....