DF_FILE_SUPPRESS_SERVERNAME_OUTPUT¶
Applies to: ORAFlex SQLFlex MYSQLFlex PGFlex DB2Flex
Use this attribute to specify whether the SERVER_NAME option will be included in the INT file. If set to True, the server name will not be included in the INT file, if set to false, the server name will be included in the INT file. This has two uses. The first is during a Structure_Start i.e. table creation/modification. The other is when using the OUTPUT_INT_FILE command. Set this attribute before the OUTPUT_INT_FILE to indicate how the INT file will be written.
Default Value: False
Syntax
Get_Attribute DF_FILE_SUPPRESS_SERVERNAME_OUTPUT of {FileNumber} to {variable}
Set_Attribute DF_FILE_SUPPRESS_SERVERNAME_OUTPUT of {FileNumber} to {variable}
Parameter |
Description |
---|---|
FileNumber |
Number of the file |
variable |
Boolean variable. True to not include, false to include in INT. |
Example
Open Customer
Set_Attribute DF_FILE_SUPPRESS_SERVERNAME_OUTPUT of Customer.File_Number to True
OUTPUT_INT_FILE for Customer.File_Number to "c:\temp\test.int"
Close Customer