|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Be the architects of evolution and help create the mobile internet future. It’s your move---enter to win here! |
|
#1
|
|||
|
|||
|
How do i can find a row size of atable?
I have a Table with a LonRaw datatype,i need to find the size of each record.
How do i can fint it? |
|
#2
|
|||
|
|||
|
In PL/SQL:
Code:
v_len NUMBER(20):=0;
.........
cursor rawlen is
select
UTL_RAW.LENGTH(rawfldname) mylen
from mytable
where
anotherfield=something;
.........
for x in rawlen
loop
v_len:=x.mylen;
/* v_len now has the field length */
end loop;
|
![]() |
| Viewing: Dev Shed Forums > Databases > Oracle Development > How do i can find a row size of atable? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|