Database Utilities (MOSC)

MOSC Banner

Informix to Oracle conversion - Fragmentation

edited Aug 12, 2010 3:43AM in Database Utilities (MOSC) 6 commentsAnswered
 Hi

 

I taken across the following table from Informix:

create table "informix".sec_lev_ovr 

  (

    secure_code char(6) not null ,

    waybill_no integer,

    logname char(20),

    date_created date,

    time_created datetime hour to minute

  ) 

  fragment by round robin in roundrobdbs_001 , roundrobdbs_002 , roundrobdbs_003 

    , roundrobdbs_004 , roundrobdbs_005 , roundrobdbs_006 , roundrobdbs_007 

    , roundrobdbs_008 , roundrobdbs_009 , roundrobdbs_010  

  extent size 10000 next size 1000 lock mode row;

 

From what I could read,  “by hash” will be the same as the Round Robin option Informix has, so here is my table on Oracle:

CREATE TABLE SLE.SEC_LEV_OVR

(

  SECURE_CODE   CHAR(6 BYTE)                    NOT NULL,

  WAYBILL_NO    INTEGER,

  LOGNAME       CHAR(20 BYTE),

  DATE_CREATED  DATE,

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center