cancel
Showing results for 
Search instead for 
Did you mean: 

DATABASE REORGANIZATION

mrio_tavaresalmeida
Discoverer
0 Kudos

I'm planning to reorganize my Oracle database according to SAP note 646681 Reorganizing tables with BRSPACE.

On second chapter of the referred note it says that tables with <b>LONG and LONG RAW fields cannot be reorganized</b>.

How can i identify with tables have LONG RAW fields?

Many thanks,

Accepted Solutions (1)

Accepted Solutions (1)

mrio_tavaresalmeida
Discoverer
0 Kudos

Thanks a lot for your reply.

The referred document is very good and can help a lot to understand that as for Oracle 10g i can convert LONG RAW fields.

My Database is on version 9.2 so, wright now, i cannot convert LONG RAW fields to CLOB and BLOB.

I insist, is there any way to identify witch tables have LONG RAW fields?

Once again many thanks for cooperation,

Mário Almeida

Former Member
0 Kudos

Mario,

I can ans u at oracle level

sql>select owner,table_name,data_type from all_tab_columns

where data_type IN ('LONG','LONG RAW');

Result => all tables with LONG RAW fields.

Regards

Vinod

mrio_tavaresalmeida
Discoverer
0 Kudos

Many Thanks Vinod,

Thats exactly what i want.

Cheers,

M.A.

Answers (1)

Answers (1)

Former Member
0 Kudos