12345678910111213141516171819202122232425262728293031 |
- execute procedure ifx_allow_newline('t');
- insert into sysblddescription
- (bld_id, blocale_id, bdesc_format, bvendor_id, bdesc_desc, bdesc_copyright)
- values
- (
- "%SYSBLDNAME%",
- "en_us.1252",
- 0,
- "IBM",
- "The Lob Locator DataBlade",
- "Copyright (c) IBM Corporation. 1997,2004, (c) Copyright HCL Technologies Ltd. 2017. All Rights Reserved."
- );
- delete from sysbldvendors
- where bvendor_id = "IBM" and
- bvendor_format = 0 and
- blocale_id = "en_us.1252";
- insert into sysbldvendors
- (bvendor_id, bvendor_name, blocale_id, bvendor_format, bvendor_desc)
- values
- (
- "IBM",
- "IBM Corporation",
- "en_us.1252",
- 0,
- ""
- );
|