We convert DBF table to ADT. While running the code after conversion, an error pops up in numeric datatype in columns. If we manually change the datatype to money it will work. I want to automate this stored procedure to change the table column datatype and find out if there is sp_ModifyFieldProperty
in procedure.
But nothing happened and got prompt with error in advantage data architect v.10
poQuery: Error 7200: AQE Error: State=HY000; NativeError = 5254; ...etc
Please help with any info on this topic
EXECUTE PROCEDURE sp_ModifyFieldProperty(
‘fdcku00’,
‘FDC_WID’, money
,
‘FIELD_CAN_BE_NULL’,‘FALSE’,
‘RETURN_ERROR’,NULL );