
Appendix B. Configuring data sources in DB2 Information Integrator 265
PRICE VARCHAR (15) NOT NULL )
FOR SERVER "FLATFILESERVER"
OPTIONS(COLUMN_DELIMITER ',' ,
FILE_PATH 'c:\flatfiles\competitiverates.txt');
CONNECT RESET;
B.4.3.1 Altering the table-structured file nicknames
You can use the ALTER NICKNAME statement to modify the federated database
representation of a data source. This statement can be used to:
Change the local data type of a column as follows:
alter nickname ADMINISTRATOR.COMPETITIVERATES alter column COMPANY local
type varchar (25)
Change local column name as follows:
alter nickname ADMINISTRATOR.COMPETITIVERATES alter colum ...