Hi, thanks. The statements I'm talking about are the one's automatically generated bij the Control Center when changing table/column properties. This one is generated when making an existing column nullable:
Code:
UPDATE SYSSTAT.INDEXES
SET NLEAF=1,
NLEVELS=1,
FIRSTKEYCARD=3,
FIRST2KEYCARD=-1,
FIRST3KEYCARD=-1,
FIRST4KEYCARD=-1,
FULLKEYCARD=3,
CLUSTERFACTOR=-1,000000,
CLUSTERRATIO=100,
SEQUENTIAL_PAGES=0,
DENSITY=0,
AVERAGE_SEQUENCE_GAP=0,000000,
AVERAGE_SEQUENCE_FETCH_GAP=0,000000,
AVERAGE_SEQUENCE_PAGES=0,000000,
AVERAGE_SEQUENCE_FETCH_PAGES=0,000000,
AVERAGE_RANDOM_PAGES=1,000000,
AVERAGE_RANDOM_FETCH_PAGES=0,000000,
NUMRIDS=3,
NUMRIDS_DELETED=0,
NUM_EMPTY_LEAFS=0
WHERE INDNAME = 'PK_BP_TYPE' AND INDSCHEMA = 'PB '
AND TABNAME = 'BP_TYPE' AND TABSCHEMA = 'PB'
I guess the fact that the decimal symbol used here is dependant of the character codeset used by the OS otherwise it doesn't make sense at all. I'm wondering how to alter the used comma into dot on instance level.
Regards,
Hans