objects.sql 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010
  1. -- Generated by BladeSmith 3.50.TC1, DO NOT MODIFY --
  2. execute procedure ifx_allow_newline('t');
  3. insert into sysbldobjects
  4. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  5. create_can_fail, drop_sql, drop_can_fail)
  6. values
  7. (
  8. "%SYSBLDNAME%", 7, "LLD_Lob",
  9. "%SYSBLDUSER%", 0,
  10. "create opaque type LLD_Lob(
  11. internallength = 76,
  12. alignment = 8
  13. );
  14. ",
  15. "f",
  16. "drop type LLD_Lob restrict;
  17. ",
  18. "f"
  19. );
  20. insert into sysbldobjects
  21. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  22. create_can_fail, drop_sql, drop_can_fail)
  23. values
  24. (
  25. "%SYSBLDNAME%", 71, "LLD_Lob",
  26. "%SYSBLDUSER%", 0,
  27. "grant usage on type LLD_Lob to public;
  28. ",
  29. "f",
  30. "",
  31. "f"
  32. );
  33. insert into sysbldobjdepends
  34. (bld_id, obj_kind, obj_signature, obj_owner,
  35. need_obj_kind, need_obj_signature, need_obj_owner)
  36. values
  37. (
  38. "%SYSBLDNAME%",
  39. 71, "LLD_Lob",
  40. "%SYSBLDUSER%",
  41. 7, "LLD_Lob",
  42. "%SYSBLDUSER%"
  43. );
  44. insert into sysbldobjects
  45. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  46. create_can_fail, drop_sql, drop_can_fail)
  47. values
  48. (
  49. "%SYSBLDNAME%", 5, "LLD_LobIn (lvarchar)",
  50. "%SYSBLDUSER%", 0,
  51. "create function LLD_LobIn (lvarchar)
  52. returns LLD_Lob
  53. with
  54. (
  55. not variant
  56. )
  57. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_input)""
  58. language c;
  59. ",
  60. "f",
  61. "drop function LLD_LobIn (lvarchar);
  62. ",
  63. "f"
  64. );
  65. insert into sysbldobjdepends
  66. (bld_id, obj_kind, obj_signature, obj_owner,
  67. need_obj_kind, need_obj_signature, need_obj_owner)
  68. values
  69. (
  70. "%SYSBLDNAME%",
  71. 5, "LLD_LobIn (lvarchar)",
  72. "%SYSBLDUSER%",
  73. 7, "LLD_Lob",
  74. "%SYSBLDUSER%"
  75. );
  76. insert into sysbldobjects
  77. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  78. create_can_fail, drop_sql, drop_can_fail)
  79. values
  80. (
  81. "%SYSBLDNAME%", 69, "LLD_LobIn (lvarchar)",
  82. "%SYSBLDUSER%", 0,
  83. "grant execute on function LLD_LobIn (lvarchar) to public;
  84. ",
  85. "f",
  86. "",
  87. "f"
  88. );
  89. insert into sysbldobjdepends
  90. (bld_id, obj_kind, obj_signature, obj_owner,
  91. need_obj_kind, need_obj_signature, need_obj_owner)
  92. values
  93. (
  94. "%SYSBLDNAME%",
  95. 69, "LLD_LobIn (lvarchar)",
  96. "%SYSBLDUSER%",
  97. 5, "LLD_LobIn (lvarchar)",
  98. "%SYSBLDUSER%"
  99. );
  100. insert into sysbldobjects
  101. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  102. create_can_fail, drop_sql, drop_can_fail)
  103. values
  104. (
  105. "%SYSBLDNAME%", 3, "lvarchar->LLD_Lob",
  106. "%SYSBLDUSER%", 0,
  107. "create implicit cast
  108. (
  109. lvarchar as LLD_Lob
  110. with LLD_LobIn
  111. );
  112. ",
  113. "f",
  114. "drop cast (lvarchar as LLD_Lob);
  115. ",
  116. "f"
  117. );
  118. insert into sysbldobjdepends
  119. (bld_id, obj_kind, obj_signature, obj_owner,
  120. need_obj_kind, need_obj_signature, need_obj_owner)
  121. values
  122. (
  123. "%SYSBLDNAME%",
  124. 3, "lvarchar->LLD_Lob",
  125. "%SYSBLDUSER%",
  126. 7, "LLD_Lob",
  127. "%SYSBLDUSER%"
  128. );
  129. insert into sysbldobjects
  130. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  131. create_can_fail, drop_sql, drop_can_fail)
  132. values
  133. (
  134. "%SYSBLDNAME%", 5, "LLD_LobOut (LLD_Lob)",
  135. "%SYSBLDUSER%", 0,
  136. "create function LLD_LobOut (LLD_Lob)
  137. returns lvarchar
  138. with
  139. (
  140. not variant
  141. )
  142. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_output)""
  143. language c;
  144. ",
  145. "f",
  146. "drop function LLD_LobOut (LLD_Lob);
  147. ",
  148. "f"
  149. );
  150. insert into sysbldobjdepends
  151. (bld_id, obj_kind, obj_signature, obj_owner,
  152. need_obj_kind, need_obj_signature, need_obj_owner)
  153. values
  154. (
  155. "%SYSBLDNAME%",
  156. 5, "LLD_LobOut (LLD_Lob)",
  157. "%SYSBLDUSER%",
  158. 7, "LLD_Lob",
  159. "%SYSBLDUSER%"
  160. );
  161. insert into sysbldobjects
  162. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  163. create_can_fail, drop_sql, drop_can_fail)
  164. values
  165. (
  166. "%SYSBLDNAME%", 69, "LLD_LobOut (LLD_Lob)",
  167. "%SYSBLDUSER%", 0,
  168. "grant execute on function LLD_LobOut (LLD_Lob) to public;
  169. ",
  170. "f",
  171. "",
  172. "f"
  173. );
  174. insert into sysbldobjdepends
  175. (bld_id, obj_kind, obj_signature, obj_owner,
  176. need_obj_kind, need_obj_signature, need_obj_owner)
  177. values
  178. (
  179. "%SYSBLDNAME%",
  180. 69, "LLD_LobOut (LLD_Lob)",
  181. "%SYSBLDUSER%",
  182. 5, "LLD_LobOut (LLD_Lob)",
  183. "%SYSBLDUSER%"
  184. );
  185. insert into sysbldobjects
  186. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  187. create_can_fail, drop_sql, drop_can_fail)
  188. values
  189. (
  190. "%SYSBLDNAME%", 3, "LLD_Lob->lvarchar",
  191. "%SYSBLDUSER%", 0,
  192. "create cast
  193. (
  194. LLD_Lob as lvarchar
  195. with LLD_LobOut
  196. );
  197. ",
  198. "f",
  199. "drop cast (LLD_Lob as lvarchar);
  200. ",
  201. "f"
  202. );
  203. insert into sysbldobjdepends
  204. (bld_id, obj_kind, obj_signature, obj_owner,
  205. need_obj_kind, need_obj_signature, need_obj_owner)
  206. values
  207. (
  208. "%SYSBLDNAME%",
  209. 3, "LLD_Lob->lvarchar",
  210. "%SYSBLDUSER%",
  211. 7, "LLD_Lob",
  212. "%SYSBLDUSER%"
  213. );
  214. insert into sysbldobjects
  215. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  216. create_can_fail, drop_sql, drop_can_fail)
  217. values
  218. (
  219. "%SYSBLDNAME%", 5, "LLD_LobSend (LLD_Lob)",
  220. "%SYSBLDUSER%", 0,
  221. "create function LLD_LobSend (LLD_Lob)
  222. returns sendrecv
  223. with
  224. (
  225. not variant
  226. )
  227. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_send)""
  228. language c;
  229. ",
  230. "f",
  231. "drop function LLD_LobSend (LLD_Lob);
  232. ",
  233. "f"
  234. );
  235. insert into sysbldobjdepends
  236. (bld_id, obj_kind, obj_signature, obj_owner,
  237. need_obj_kind, need_obj_signature, need_obj_owner)
  238. values
  239. (
  240. "%SYSBLDNAME%",
  241. 5, "LLD_LobSend (LLD_Lob)",
  242. "%SYSBLDUSER%",
  243. 7, "LLD_Lob",
  244. "%SYSBLDUSER%"
  245. );
  246. insert into sysbldobjects
  247. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  248. create_can_fail, drop_sql, drop_can_fail)
  249. values
  250. (
  251. "%SYSBLDNAME%", 69, "LLD_LobSend (LLD_Lob)",
  252. "%SYSBLDUSER%", 0,
  253. "grant execute on function LLD_LobSend (LLD_Lob) to public;
  254. ",
  255. "f",
  256. "",
  257. "f"
  258. );
  259. insert into sysbldobjdepends
  260. (bld_id, obj_kind, obj_signature, obj_owner,
  261. need_obj_kind, need_obj_signature, need_obj_owner)
  262. values
  263. (
  264. "%SYSBLDNAME%",
  265. 69, "LLD_LobSend (LLD_Lob)",
  266. "%SYSBLDUSER%",
  267. 5, "LLD_LobSend (LLD_Lob)",
  268. "%SYSBLDUSER%"
  269. );
  270. insert into sysbldobjects
  271. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  272. create_can_fail, drop_sql, drop_can_fail)
  273. values
  274. (
  275. "%SYSBLDNAME%", 3, "LLD_Lob->sendrecv",
  276. "%SYSBLDUSER%", 0,
  277. "create cast
  278. (
  279. LLD_Lob as sendrecv
  280. with LLD_LobSend
  281. );
  282. ",
  283. "f",
  284. "drop cast (LLD_Lob as sendrecv);
  285. ",
  286. "f"
  287. );
  288. insert into sysbldobjdepends
  289. (bld_id, obj_kind, obj_signature, obj_owner,
  290. need_obj_kind, need_obj_signature, need_obj_owner)
  291. values
  292. (
  293. "%SYSBLDNAME%",
  294. 3, "LLD_Lob->sendrecv",
  295. "%SYSBLDUSER%",
  296. 7, "LLD_Lob",
  297. "%SYSBLDUSER%"
  298. );
  299. insert into sysbldobjects
  300. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  301. create_can_fail, drop_sql, drop_can_fail)
  302. values
  303. (
  304. "%SYSBLDNAME%", 5, "LLD_LobRecv (sendrecv)",
  305. "%SYSBLDUSER%", 0,
  306. "create function LLD_LobRecv (sendrecv)
  307. returns LLD_Lob
  308. with
  309. (
  310. not variant
  311. )
  312. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_recv)""
  313. language c;
  314. ",
  315. "f",
  316. "drop function LLD_LobRecv (sendrecv);
  317. ",
  318. "f"
  319. );
  320. insert into sysbldobjdepends
  321. (bld_id, obj_kind, obj_signature, obj_owner,
  322. need_obj_kind, need_obj_signature, need_obj_owner)
  323. values
  324. (
  325. "%SYSBLDNAME%",
  326. 5, "LLD_LobRecv (sendrecv)",
  327. "%SYSBLDUSER%",
  328. 7, "LLD_Lob",
  329. "%SYSBLDUSER%"
  330. );
  331. insert into sysbldobjects
  332. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  333. create_can_fail, drop_sql, drop_can_fail)
  334. values
  335. (
  336. "%SYSBLDNAME%", 69, "LLD_LobRecv (sendrecv)",
  337. "%SYSBLDUSER%", 0,
  338. "grant execute on function LLD_LobRecv (sendrecv) to public;
  339. ",
  340. "f",
  341. "",
  342. "f"
  343. );
  344. insert into sysbldobjdepends
  345. (bld_id, obj_kind, obj_signature, obj_owner,
  346. need_obj_kind, need_obj_signature, need_obj_owner)
  347. values
  348. (
  349. "%SYSBLDNAME%",
  350. 69, "LLD_LobRecv (sendrecv)",
  351. "%SYSBLDUSER%",
  352. 5, "LLD_LobRecv (sendrecv)",
  353. "%SYSBLDUSER%"
  354. );
  355. insert into sysbldobjects
  356. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  357. create_can_fail, drop_sql, drop_can_fail)
  358. values
  359. (
  360. "%SYSBLDNAME%", 3, "sendrecv->LLD_Lob",
  361. "%SYSBLDUSER%", 0,
  362. "create implicit cast
  363. (
  364. sendrecv as LLD_Lob
  365. with LLD_LobRecv
  366. );
  367. ",
  368. "f",
  369. "drop cast (sendrecv as LLD_Lob);
  370. ",
  371. "f"
  372. );
  373. insert into sysbldobjdepends
  374. (bld_id, obj_kind, obj_signature, obj_owner,
  375. need_obj_kind, need_obj_signature, need_obj_owner)
  376. values
  377. (
  378. "%SYSBLDNAME%",
  379. 3, "sendrecv->LLD_Lob",
  380. "%SYSBLDUSER%",
  381. 7, "LLD_Lob",
  382. "%SYSBLDUSER%"
  383. );
  384. insert into sysbldobjects
  385. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  386. create_can_fail, drop_sql, drop_can_fail)
  387. values
  388. (
  389. "%SYSBLDNAME%", 5, "LLD_LobImpT (impexp)",
  390. "%SYSBLDUSER%", 0,
  391. "create function LLD_LobImpT (impexp)
  392. returns LLD_Lob
  393. with
  394. (
  395. not variant
  396. )
  397. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_import)""
  398. language c;
  399. ",
  400. "f",
  401. "drop function LLD_LobImpT (impexp);
  402. ",
  403. "f"
  404. );
  405. insert into sysbldobjdepends
  406. (bld_id, obj_kind, obj_signature, obj_owner,
  407. need_obj_kind, need_obj_signature, need_obj_owner)
  408. values
  409. (
  410. "%SYSBLDNAME%",
  411. 5, "LLD_LobImpT (impexp)",
  412. "%SYSBLDUSER%",
  413. 7, "LLD_Lob",
  414. "%SYSBLDUSER%"
  415. );
  416. insert into sysbldobjects
  417. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  418. create_can_fail, drop_sql, drop_can_fail)
  419. values
  420. (
  421. "%SYSBLDNAME%", 69, "LLD_LobImpT (impexp)",
  422. "%SYSBLDUSER%", 0,
  423. "grant execute on function LLD_LobImpT (impexp) to public;
  424. ",
  425. "f",
  426. "",
  427. "f"
  428. );
  429. insert into sysbldobjdepends
  430. (bld_id, obj_kind, obj_signature, obj_owner,
  431. need_obj_kind, need_obj_signature, need_obj_owner)
  432. values
  433. (
  434. "%SYSBLDNAME%",
  435. 69, "LLD_LobImpT (impexp)",
  436. "%SYSBLDUSER%",
  437. 5, "LLD_LobImpT (impexp)",
  438. "%SYSBLDUSER%"
  439. );
  440. insert into sysbldobjects
  441. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  442. create_can_fail, drop_sql, drop_can_fail)
  443. values
  444. (
  445. "%SYSBLDNAME%", 3, "impexp->LLD_Lob",
  446. "%SYSBLDUSER%", 0,
  447. "create implicit cast
  448. (
  449. impexp as LLD_Lob
  450. with LLD_LobImpT
  451. );
  452. ",
  453. "f",
  454. "drop cast (impexp as LLD_Lob);
  455. ",
  456. "f"
  457. );
  458. insert into sysbldobjdepends
  459. (bld_id, obj_kind, obj_signature, obj_owner,
  460. need_obj_kind, need_obj_signature, need_obj_owner)
  461. values
  462. (
  463. "%SYSBLDNAME%",
  464. 3, "impexp->LLD_Lob",
  465. "%SYSBLDUSER%",
  466. 7, "LLD_Lob",
  467. "%SYSBLDUSER%"
  468. );
  469. insert into sysbldobjects
  470. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  471. create_can_fail, drop_sql, drop_can_fail)
  472. values
  473. (
  474. "%SYSBLDNAME%", 5, "LLD_LobExpT (LLD_Lob)",
  475. "%SYSBLDUSER%", 0,
  476. "create function LLD_LobExpT (LLD_Lob)
  477. returns impexp
  478. with
  479. (
  480. not variant
  481. )
  482. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_export)""
  483. language c;
  484. ",
  485. "f",
  486. "drop function LLD_LobExpT (LLD_Lob);
  487. ",
  488. "f"
  489. );
  490. insert into sysbldobjdepends
  491. (bld_id, obj_kind, obj_signature, obj_owner,
  492. need_obj_kind, need_obj_signature, need_obj_owner)
  493. values
  494. (
  495. "%SYSBLDNAME%",
  496. 5, "LLD_LobExpT (LLD_Lob)",
  497. "%SYSBLDUSER%",
  498. 7, "LLD_Lob",
  499. "%SYSBLDUSER%"
  500. );
  501. insert into sysbldobjects
  502. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  503. create_can_fail, drop_sql, drop_can_fail)
  504. values
  505. (
  506. "%SYSBLDNAME%", 69, "LLD_LobExpT (LLD_Lob)",
  507. "%SYSBLDUSER%", 0,
  508. "grant execute on function LLD_LobExpT (LLD_Lob) to public;
  509. ",
  510. "f",
  511. "",
  512. "f"
  513. );
  514. insert into sysbldobjdepends
  515. (bld_id, obj_kind, obj_signature, obj_owner,
  516. need_obj_kind, need_obj_signature, need_obj_owner)
  517. values
  518. (
  519. "%SYSBLDNAME%",
  520. 69, "LLD_LobExpT (LLD_Lob)",
  521. "%SYSBLDUSER%",
  522. 5, "LLD_LobExpT (LLD_Lob)",
  523. "%SYSBLDUSER%"
  524. );
  525. insert into sysbldobjects
  526. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  527. create_can_fail, drop_sql, drop_can_fail)
  528. values
  529. (
  530. "%SYSBLDNAME%", 3, "LLD_Lob->impexp",
  531. "%SYSBLDUSER%", 0,
  532. "create cast
  533. (
  534. LLD_Lob as impexp
  535. with LLD_LobExpT
  536. );
  537. ",
  538. "f",
  539. "drop cast (LLD_Lob as impexp);
  540. ",
  541. "f"
  542. );
  543. insert into sysbldobjdepends
  544. (bld_id, obj_kind, obj_signature, obj_owner,
  545. need_obj_kind, need_obj_signature, need_obj_owner)
  546. values
  547. (
  548. "%SYSBLDNAME%",
  549. 3, "LLD_Lob->impexp",
  550. "%SYSBLDUSER%",
  551. 7, "LLD_Lob",
  552. "%SYSBLDUSER%"
  553. );
  554. insert into sysbldobjects
  555. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  556. create_can_fail, drop_sql, drop_can_fail)
  557. values
  558. (
  559. "%SYSBLDNAME%", 5, "Assign (LLD_Lob)",
  560. "%SYSBLDUSER%", 0,
  561. "create function Assign (LLD_Lob)
  562. returns LLD_Lob
  563. with
  564. (
  565. not variant
  566. )
  567. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_assign)""
  568. language c;
  569. ",
  570. "f",
  571. "drop function Assign (LLD_Lob);
  572. ",
  573. "f"
  574. );
  575. insert into sysbldobjdepends
  576. (bld_id, obj_kind, obj_signature, obj_owner,
  577. need_obj_kind, need_obj_signature, need_obj_owner)
  578. values
  579. (
  580. "%SYSBLDNAME%",
  581. 5, "Assign (LLD_Lob)",
  582. "%SYSBLDUSER%",
  583. 7, "LLD_Lob",
  584. "%SYSBLDUSER%"
  585. );
  586. insert into sysbldobjects
  587. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  588. create_can_fail, drop_sql, drop_can_fail)
  589. values
  590. (
  591. "%SYSBLDNAME%", 69, "Assign (LLD_Lob)",
  592. "%SYSBLDUSER%", 0,
  593. "grant execute on function Assign (LLD_Lob) to public;
  594. ",
  595. "f",
  596. "",
  597. "f"
  598. );
  599. insert into sysbldobjdepends
  600. (bld_id, obj_kind, obj_signature, obj_owner,
  601. need_obj_kind, need_obj_signature, need_obj_owner)
  602. values
  603. (
  604. "%SYSBLDNAME%",
  605. 69, "Assign (LLD_Lob)",
  606. "%SYSBLDUSER%",
  607. 5, "Assign (LLD_Lob)",
  608. "%SYSBLDUSER%"
  609. );
  610. insert into sysbldobjects
  611. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  612. create_can_fail, drop_sql, drop_can_fail)
  613. values
  614. (
  615. "%SYSBLDNAME%", 6, "Destroy (LLD_Lob)",
  616. "%SYSBLDUSER%", 0,
  617. "create procedure Destroy (LLD_Lob)
  618. with
  619. (
  620. not variant
  621. )
  622. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_destroy)""
  623. language c;
  624. ",
  625. "f",
  626. "drop procedure Destroy (LLD_Lob);
  627. ",
  628. "f"
  629. );
  630. insert into sysbldobjdepends
  631. (bld_id, obj_kind, obj_signature, obj_owner,
  632. need_obj_kind, need_obj_signature, need_obj_owner)
  633. values
  634. (
  635. "%SYSBLDNAME%",
  636. 6, "Destroy (LLD_Lob)",
  637. "%SYSBLDUSER%",
  638. 7, "LLD_Lob",
  639. "%SYSBLDUSER%"
  640. );
  641. insert into sysbldobjects
  642. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  643. create_can_fail, drop_sql, drop_can_fail)
  644. values
  645. (
  646. "%SYSBLDNAME%", 70, "Destroy (LLD_Lob)",
  647. "%SYSBLDUSER%", 0,
  648. "grant execute on procedure Destroy (LLD_Lob) to public;
  649. ",
  650. "f",
  651. "",
  652. "f"
  653. );
  654. insert into sysbldobjdepends
  655. (bld_id, obj_kind, obj_signature, obj_owner,
  656. need_obj_kind, need_obj_signature, need_obj_owner)
  657. values
  658. (
  659. "%SYSBLDNAME%",
  660. 70, "Destroy (LLD_Lob)",
  661. "%SYSBLDUSER%",
  662. 6, "Destroy (LLD_Lob)",
  663. "%SYSBLDUSER%"
  664. );
  665. insert into sysbldobjects
  666. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  667. create_can_fail, drop_sql, drop_can_fail)
  668. values
  669. (
  670. "%SYSBLDNAME%", 7, "LLD_Locator",
  671. "%SYSBLDUSER%", 0,
  672. "create row type LLD_Locator
  673. (
  674. lo_protocol char (18),
  675. lo_pointer LLD_Lob,
  676. lo_location lvarchar
  677. );
  678. ",
  679. "f",
  680. "drop row type LLD_Locator restrict;
  681. ",
  682. "f"
  683. );
  684. insert into sysbldobjdepends
  685. (bld_id, obj_kind, obj_signature, obj_owner,
  686. need_obj_kind, need_obj_signature, need_obj_owner)
  687. values
  688. (
  689. "%SYSBLDNAME%",
  690. 7, "LLD_Locator",
  691. "%SYSBLDUSER%",
  692. 7, "LLD_Lob",
  693. "%SYSBLDUSER%"
  694. );
  695. insert into sysbldobjects
  696. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  697. create_can_fail, drop_sql, drop_can_fail)
  698. values
  699. (
  700. "%SYSBLDNAME%", 71, "LLD_Locator",
  701. "%SYSBLDUSER%", 0,
  702. "grant usage on type LLD_Locator to public;
  703. ",
  704. "f",
  705. "",
  706. "f"
  707. );
  708. insert into sysbldobjdepends
  709. (bld_id, obj_kind, obj_signature, obj_owner,
  710. need_obj_kind, need_obj_signature, need_obj_owner)
  711. values
  712. (
  713. "%SYSBLDNAME%",
  714. 71, "LLD_Locator",
  715. "%SYSBLDUSER%",
  716. 7, "LLD_Locator",
  717. "%SYSBLDUSER%"
  718. );
  719. insert into sysbldobjects
  720. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  721. create_can_fail, drop_sql, drop_can_fail)
  722. values
  723. (
  724. "%SYSBLDNAME%", 5, "LOhandles (LLD_Lob)",
  725. "%SYSBLDUSER%", 0,
  726. "create function LOhandles (LLD_Lob)
  727. returns lolist
  728. with
  729. (
  730. not variant
  731. )
  732. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_handles)""
  733. language c;
  734. ",
  735. "f",
  736. "drop function LOhandles (LLD_Lob);
  737. ",
  738. "f"
  739. );
  740. insert into sysbldobjdepends
  741. (bld_id, obj_kind, obj_signature, obj_owner,
  742. need_obj_kind, need_obj_signature, need_obj_owner)
  743. values
  744. (
  745. "%SYSBLDNAME%",
  746. 5, "LOhandles (LLD_Lob)",
  747. "%SYSBLDUSER%",
  748. 7, "LLD_Lob",
  749. "%SYSBLDUSER%"
  750. );
  751. insert into sysbldobjects
  752. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  753. create_can_fail, drop_sql, drop_can_fail)
  754. values
  755. (
  756. "%SYSBLDNAME%", 69, "LOhandles (LLD_Lob)",
  757. "%SYSBLDUSER%", 0,
  758. "grant execute on function LOhandles (LLD_Lob) to public;
  759. ",
  760. "f",
  761. "",
  762. "f"
  763. );
  764. insert into sysbldobjdepends
  765. (bld_id, obj_kind, obj_signature, obj_owner,
  766. need_obj_kind, need_obj_signature, need_obj_owner)
  767. values
  768. (
  769. "%SYSBLDNAME%",
  770. 69, "LOhandles (LLD_Lob)",
  771. "%SYSBLDUSER%",
  772. 5, "LOhandles (LLD_Lob)",
  773. "%SYSBLDUSER%"
  774. );
  775. insert into sysbldobjects
  776. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  777. create_can_fail, drop_sql, drop_can_fail)
  778. values
  779. (
  780. "%SYSBLDNAME%", 5, "LLD_Create (LLD_Locator)",
  781. "%SYSBLDUSER%", 0,
  782. "create function LLD_Create (LLD_Locator)
  783. returns LLD_Locator
  784. with
  785. (
  786. not variant
  787. )
  788. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_udr_create)""
  789. language c;
  790. ",
  791. "f",
  792. "drop function LLD_Create (LLD_Locator);
  793. ",
  794. "f"
  795. );
  796. insert into sysbldobjdepends
  797. (bld_id, obj_kind, obj_signature, obj_owner,
  798. need_obj_kind, need_obj_signature, need_obj_owner)
  799. values
  800. (
  801. "%SYSBLDNAME%",
  802. 5, "LLD_Create (LLD_Locator)",
  803. "%SYSBLDUSER%",
  804. 7, "LLD_Lob",
  805. "%SYSBLDUSER%"
  806. );
  807. insert into sysbldobjdepends
  808. (bld_id, obj_kind, obj_signature, obj_owner,
  809. need_obj_kind, need_obj_signature, need_obj_owner)
  810. values
  811. (
  812. "%SYSBLDNAME%",
  813. 5, "LLD_Create (LLD_Locator)",
  814. "%SYSBLDUSER%",
  815. 7, "LLD_Locator",
  816. "%SYSBLDUSER%"
  817. );
  818. insert into sysbldobjects
  819. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  820. create_can_fail, drop_sql, drop_can_fail)
  821. values
  822. (
  823. "%SYSBLDNAME%", 69, "LLD_Create (LLD_Locator)",
  824. "%SYSBLDUSER%", 0,
  825. "grant execute on function LLD_Create (LLD_Locator) to public;
  826. ",
  827. "f",
  828. "",
  829. "f"
  830. );
  831. insert into sysbldobjdepends
  832. (bld_id, obj_kind, obj_signature, obj_owner,
  833. need_obj_kind, need_obj_signature, need_obj_owner)
  834. values
  835. (
  836. "%SYSBLDNAME%",
  837. 69, "LLD_Create (LLD_Locator)",
  838. "%SYSBLDUSER%",
  839. 5, "LLD_Create (LLD_Locator)",
  840. "%SYSBLDUSER%"
  841. );
  842. insert into sysbldobjects
  843. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  844. create_can_fail, drop_sql, drop_can_fail)
  845. values
  846. (
  847. "%SYSBLDNAME%", 5, "LLD_Copy (LLD_Locator,LLD_Locator)",
  848. "%SYSBLDUSER%", 0,
  849. "create function LLD_Copy (LLD_Locator,LLD_Locator)
  850. returns LLD_Locator
  851. with
  852. (
  853. not variant
  854. )
  855. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_udr_copy)""
  856. language c;
  857. ",
  858. "f",
  859. "drop function LLD_Copy (LLD_Locator,LLD_Locator);
  860. ",
  861. "f"
  862. );
  863. insert into sysbldobjdepends
  864. (bld_id, obj_kind, obj_signature, obj_owner,
  865. need_obj_kind, need_obj_signature, need_obj_owner)
  866. values
  867. (
  868. "%SYSBLDNAME%",
  869. 5, "LLD_Copy (LLD_Locator,LLD_Locator)",
  870. "%SYSBLDUSER%",
  871. 7, "LLD_Lob",
  872. "%SYSBLDUSER%"
  873. );
  874. insert into sysbldobjdepends
  875. (bld_id, obj_kind, obj_signature, obj_owner,
  876. need_obj_kind, need_obj_signature, need_obj_owner)
  877. values
  878. (
  879. "%SYSBLDNAME%",
  880. 5, "LLD_Copy (LLD_Locator,LLD_Locator)",
  881. "%SYSBLDUSER%",
  882. 7, "LLD_Locator",
  883. "%SYSBLDUSER%"
  884. );
  885. insert into sysbldobjects
  886. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  887. create_can_fail, drop_sql, drop_can_fail)
  888. values
  889. (
  890. "%SYSBLDNAME%", 69, "LLD_Copy (LLD_Locator,LLD_Locator)",
  891. "%SYSBLDUSER%", 0,
  892. "grant execute on function LLD_Copy (LLD_Locator,LLD_Locator) to public;
  893. ",
  894. "f",
  895. "",
  896. "f"
  897. );
  898. insert into sysbldobjdepends
  899. (bld_id, obj_kind, obj_signature, obj_owner,
  900. need_obj_kind, need_obj_signature, need_obj_owner)
  901. values
  902. (
  903. "%SYSBLDNAME%",
  904. 69, "LLD_Copy (LLD_Locator,LLD_Locator)",
  905. "%SYSBLDUSER%",
  906. 5, "LLD_Copy (LLD_Locator,LLD_Locator)",
  907. "%SYSBLDUSER%"
  908. );
  909. insert into sysbldobjects
  910. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  911. create_can_fail, drop_sql, drop_can_fail)
  912. values
  913. (
  914. "%SYSBLDNAME%", 5, "LLD_Delete (LLD_Locator)",
  915. "%SYSBLDUSER%", 0,
  916. "create function LLD_Delete (LLD_Locator)
  917. returns boolean
  918. with
  919. (
  920. not variant
  921. )
  922. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_udr_delete)""
  923. language c;
  924. ",
  925. "f",
  926. "drop function LLD_Delete (LLD_Locator);
  927. ",
  928. "f"
  929. );
  930. insert into sysbldobjdepends
  931. (bld_id, obj_kind, obj_signature, obj_owner,
  932. need_obj_kind, need_obj_signature, need_obj_owner)
  933. values
  934. (
  935. "%SYSBLDNAME%",
  936. 5, "LLD_Delete (LLD_Locator)",
  937. "%SYSBLDUSER%",
  938. 7, "LLD_Lob",
  939. "%SYSBLDUSER%"
  940. );
  941. insert into sysbldobjdepends
  942. (bld_id, obj_kind, obj_signature, obj_owner,
  943. need_obj_kind, need_obj_signature, need_obj_owner)
  944. values
  945. (
  946. "%SYSBLDNAME%",
  947. 5, "LLD_Delete (LLD_Locator)",
  948. "%SYSBLDUSER%",
  949. 7, "LLD_Locator",
  950. "%SYSBLDUSER%"
  951. );
  952. insert into sysbldobjects
  953. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  954. create_can_fail, drop_sql, drop_can_fail)
  955. values
  956. (
  957. "%SYSBLDNAME%", 69, "LLD_Delete (LLD_Locator)",
  958. "%SYSBLDUSER%", 0,
  959. "grant execute on function LLD_Delete (LLD_Locator) to public;
  960. ",
  961. "f",
  962. "",
  963. "f"
  964. );
  965. insert into sysbldobjdepends
  966. (bld_id, obj_kind, obj_signature, obj_owner,
  967. need_obj_kind, need_obj_signature, need_obj_owner)
  968. values
  969. (
  970. "%SYSBLDNAME%",
  971. 69, "LLD_Delete (LLD_Locator)",
  972. "%SYSBLDUSER%",
  973. 5, "LLD_Delete (LLD_Locator)",
  974. "%SYSBLDUSER%"
  975. );
  976. insert into sysbldobjects
  977. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  978. create_can_fail, drop_sql, drop_can_fail)
  979. values
  980. (
  981. "%SYSBLDNAME%", 5, "LLD_FromClient (lvarchar,LLD_Locator)",
  982. "%SYSBLDUSER%", 0,
  983. "create function LLD_FromClient (lvarchar,LLD_Locator)
  984. returns LLD_Locator
  985. with
  986. (
  987. not variant
  988. )
  989. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_udr_from_client)""
  990. language c;
  991. ",
  992. "f",
  993. "drop function LLD_FromClient (lvarchar,LLD_Locator);
  994. ",
  995. "f"
  996. );
  997. insert into sysbldobjdepends
  998. (bld_id, obj_kind, obj_signature, obj_owner,
  999. need_obj_kind, need_obj_signature, need_obj_owner)
  1000. values
  1001. (
  1002. "%SYSBLDNAME%",
  1003. 5, "LLD_FromClient (lvarchar,LLD_Locator)",
  1004. "%SYSBLDUSER%",
  1005. 7, "LLD_Lob",
  1006. "%SYSBLDUSER%"
  1007. );
  1008. insert into sysbldobjdepends
  1009. (bld_id, obj_kind, obj_signature, obj_owner,
  1010. need_obj_kind, need_obj_signature, need_obj_owner)
  1011. values
  1012. (
  1013. "%SYSBLDNAME%",
  1014. 5, "LLD_FromClient (lvarchar,LLD_Locator)",
  1015. "%SYSBLDUSER%",
  1016. 7, "LLD_Locator",
  1017. "%SYSBLDUSER%"
  1018. );
  1019. insert into sysbldobjects
  1020. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1021. create_can_fail, drop_sql, drop_can_fail)
  1022. values
  1023. (
  1024. "%SYSBLDNAME%", 69, "LLD_FromClient (lvarchar,LLD_Locator)",
  1025. "%SYSBLDUSER%", 0,
  1026. "grant execute on function LLD_FromClient (lvarchar,LLD_Locator) to public;
  1027. ",
  1028. "f",
  1029. "",
  1030. "f"
  1031. );
  1032. insert into sysbldobjdepends
  1033. (bld_id, obj_kind, obj_signature, obj_owner,
  1034. need_obj_kind, need_obj_signature, need_obj_owner)
  1035. values
  1036. (
  1037. "%SYSBLDNAME%",
  1038. 69, "LLD_FromClient (lvarchar,LLD_Locator)",
  1039. "%SYSBLDUSER%",
  1040. 5, "LLD_FromClient (lvarchar,LLD_Locator)",
  1041. "%SYSBLDUSER%"
  1042. );
  1043. insert into sysbldobjects
  1044. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1045. create_can_fail, drop_sql, drop_can_fail)
  1046. values
  1047. (
  1048. "%SYSBLDNAME%", 5, "LLD_ToClient (LLD_Locator,lvarchar)",
  1049. "%SYSBLDUSER%", 0,
  1050. "create function LLD_ToClient (LLD_Locator,lvarchar)
  1051. returns boolean
  1052. with
  1053. (
  1054. not variant
  1055. )
  1056. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_udr_to_client)""
  1057. language c;
  1058. ",
  1059. "f",
  1060. "drop function LLD_ToClient (LLD_Locator,lvarchar);
  1061. ",
  1062. "f"
  1063. );
  1064. insert into sysbldobjdepends
  1065. (bld_id, obj_kind, obj_signature, obj_owner,
  1066. need_obj_kind, need_obj_signature, need_obj_owner)
  1067. values
  1068. (
  1069. "%SYSBLDNAME%",
  1070. 5, "LLD_ToClient (LLD_Locator,lvarchar)",
  1071. "%SYSBLDUSER%",
  1072. 7, "LLD_Lob",
  1073. "%SYSBLDUSER%"
  1074. );
  1075. insert into sysbldobjdepends
  1076. (bld_id, obj_kind, obj_signature, obj_owner,
  1077. need_obj_kind, need_obj_signature, need_obj_owner)
  1078. values
  1079. (
  1080. "%SYSBLDNAME%",
  1081. 5, "LLD_ToClient (LLD_Locator,lvarchar)",
  1082. "%SYSBLDUSER%",
  1083. 7, "LLD_Locator",
  1084. "%SYSBLDUSER%"
  1085. );
  1086. insert into sysbldobjects
  1087. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1088. create_can_fail, drop_sql, drop_can_fail)
  1089. values
  1090. (
  1091. "%SYSBLDNAME%", 69, "LLD_ToClient (LLD_Locator,lvarchar)",
  1092. "%SYSBLDUSER%", 0,
  1093. "grant execute on function LLD_ToClient (LLD_Locator,lvarchar) to public;
  1094. ",
  1095. "f",
  1096. "",
  1097. "f"
  1098. );
  1099. insert into sysbldobjdepends
  1100. (bld_id, obj_kind, obj_signature, obj_owner,
  1101. need_obj_kind, need_obj_signature, need_obj_owner)
  1102. values
  1103. (
  1104. "%SYSBLDNAME%",
  1105. 69, "LLD_ToClient (LLD_Locator,lvarchar)",
  1106. "%SYSBLDUSER%",
  1107. 5, "LLD_ToClient (LLD_Locator,lvarchar)",
  1108. "%SYSBLDUSER%"
  1109. );
  1110. insert into sysbldobjects
  1111. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1112. create_can_fail, drop_sql, drop_can_fail)
  1113. values
  1114. (
  1115. "%SYSBLDNAME%", 6, "LLD_FileToFile (lvarchar,lvarchar,boolean,boolean)",
  1116. "%SYSBLDUSER%", 0,
  1117. "create procedure LLD_FileToFile (lvarchar,lvarchar,boolean,boolean)
  1118. with
  1119. (
  1120. not variant
  1121. )
  1122. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_udr_file_to_file)""
  1123. language c;
  1124. ",
  1125. "f",
  1126. "drop procedure LLD_FileToFile (lvarchar,lvarchar,boolean,boolean);
  1127. ",
  1128. "f"
  1129. );
  1130. insert into sysbldobjects
  1131. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1132. create_can_fail, drop_sql, drop_can_fail)
  1133. values
  1134. (
  1135. "%SYSBLDNAME%", 70, "LLD_FileToFile (lvarchar,lvarchar,boolean,boolean)",
  1136. "%SYSBLDUSER%", 0,
  1137. "grant execute on procedure LLD_FileToFile (lvarchar,lvarchar,boolean,boolean) to public;
  1138. ",
  1139. "f",
  1140. "",
  1141. "f"
  1142. );
  1143. insert into sysbldobjdepends
  1144. (bld_id, obj_kind, obj_signature, obj_owner,
  1145. need_obj_kind, need_obj_signature, need_obj_owner)
  1146. values
  1147. (
  1148. "%SYSBLDNAME%",
  1149. 70, "LLD_FileToFile (lvarchar,lvarchar,boolean,boolean)",
  1150. "%SYSBLDUSER%",
  1151. 6, "LLD_FileToFile (lvarchar,lvarchar,boolean,boolean)",
  1152. "%SYSBLDUSER%"
  1153. );
  1154. insert into sysbldobjects
  1155. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1156. create_can_fail, drop_sql, drop_can_fail)
  1157. values
  1158. (
  1159. "%SYSBLDNAME%", 5, "LoToFile (LLD_Lob,lvarchar,char)",
  1160. "%SYSBLDUSER%", 0,
  1161. "create function LoToFile (LLD_Lob,lvarchar,char (6))
  1162. returns lvarchar
  1163. with
  1164. (
  1165. not variant
  1166. )
  1167. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_to_file)""
  1168. language c;
  1169. ",
  1170. "f",
  1171. "drop function LoToFile (LLD_Lob,lvarchar,char (6));
  1172. ",
  1173. "f"
  1174. );
  1175. insert into sysbldobjdepends
  1176. (bld_id, obj_kind, obj_signature, obj_owner,
  1177. need_obj_kind, need_obj_signature, need_obj_owner)
  1178. values
  1179. (
  1180. "%SYSBLDNAME%",
  1181. 5, "LoToFile (LLD_Lob,lvarchar,char)",
  1182. "%SYSBLDUSER%",
  1183. 7, "LLD_Lob",
  1184. "%SYSBLDUSER%"
  1185. );
  1186. insert into sysbldobjects
  1187. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1188. create_can_fail, drop_sql, drop_can_fail)
  1189. values
  1190. (
  1191. "%SYSBLDNAME%", 69, "LoToFile (LLD_Lob,lvarchar,char)",
  1192. "%SYSBLDUSER%", 0,
  1193. "grant execute on function LoToFile (LLD_Lob,lvarchar,char (6)) to public;
  1194. ",
  1195. "f",
  1196. "",
  1197. "f"
  1198. );
  1199. insert into sysbldobjdepends
  1200. (bld_id, obj_kind, obj_signature, obj_owner,
  1201. need_obj_kind, need_obj_signature, need_obj_owner)
  1202. values
  1203. (
  1204. "%SYSBLDNAME%",
  1205. 69, "LoToFile (LLD_Lob,lvarchar,char)",
  1206. "%SYSBLDUSER%",
  1207. 5, "LoToFile (LLD_Lob,lvarchar,char)",
  1208. "%SYSBLDUSER%"
  1209. );
  1210. insert into sysbldobjects
  1211. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1212. create_can_fail, drop_sql, drop_can_fail)
  1213. values
  1214. (
  1215. "%SYSBLDNAME%", 5, "LOCopy (LLD_Lob)",
  1216. "%SYSBLDUSER%", 0,
  1217. "create function LOCopy (LLD_Lob)
  1218. returns LLD_Lob
  1219. with
  1220. (
  1221. not variant
  1222. )
  1223. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_copy)""
  1224. language c;
  1225. ",
  1226. "f",
  1227. "drop function LOCopy (LLD_Lob);
  1228. ",
  1229. "f"
  1230. );
  1231. insert into sysbldobjdepends
  1232. (bld_id, obj_kind, obj_signature, obj_owner,
  1233. need_obj_kind, need_obj_signature, need_obj_owner)
  1234. values
  1235. (
  1236. "%SYSBLDNAME%",
  1237. 5, "LOCopy (LLD_Lob)",
  1238. "%SYSBLDUSER%",
  1239. 7, "LLD_Lob",
  1240. "%SYSBLDUSER%"
  1241. );
  1242. insert into sysbldobjects
  1243. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1244. create_can_fail, drop_sql, drop_can_fail)
  1245. values
  1246. (
  1247. "%SYSBLDNAME%", 69, "LOCopy (LLD_Lob)",
  1248. "%SYSBLDUSER%", 0,
  1249. "grant execute on function LOCopy (LLD_Lob) to public;
  1250. ",
  1251. "f",
  1252. "",
  1253. "f"
  1254. );
  1255. insert into sysbldobjdepends
  1256. (bld_id, obj_kind, obj_signature, obj_owner,
  1257. need_obj_kind, need_obj_signature, need_obj_owner)
  1258. values
  1259. (
  1260. "%SYSBLDNAME%",
  1261. 69, "LOCopy (LLD_Lob)",
  1262. "%SYSBLDUSER%",
  1263. 5, "LOCopy (LLD_Lob)",
  1264. "%SYSBLDUSER%"
  1265. );
  1266. insert into sysbldobjects
  1267. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1268. create_can_fail, drop_sql, drop_can_fail)
  1269. values
  1270. (
  1271. "%SYSBLDNAME%", 5, "LOCopy (LLD_Lob,char,char)",
  1272. "%SYSBLDUSER%", 0,
  1273. "create function LOCopy (LLD_Lob,char (18),char (18))
  1274. returns LLD_Lob
  1275. with
  1276. (
  1277. not variant
  1278. )
  1279. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_copy_colspec)""
  1280. language c;
  1281. ",
  1282. "f",
  1283. "drop function LOCopy (LLD_Lob,char (18),char (18));
  1284. ",
  1285. "f"
  1286. );
  1287. insert into sysbldobjdepends
  1288. (bld_id, obj_kind, obj_signature, obj_owner,
  1289. need_obj_kind, need_obj_signature, need_obj_owner)
  1290. values
  1291. (
  1292. "%SYSBLDNAME%",
  1293. 5, "LOCopy (LLD_Lob,char,char)",
  1294. "%SYSBLDUSER%",
  1295. 7, "LLD_Lob",
  1296. "%SYSBLDUSER%"
  1297. );
  1298. insert into sysbldobjects
  1299. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1300. create_can_fail, drop_sql, drop_can_fail)
  1301. values
  1302. (
  1303. "%SYSBLDNAME%", 69, "LOCopy (LLD_Lob,char,char)",
  1304. "%SYSBLDUSER%", 0,
  1305. "grant execute on function LOCopy (LLD_Lob,char (18),char (18)) to public;
  1306. ",
  1307. "f",
  1308. "",
  1309. "f"
  1310. );
  1311. insert into sysbldobjdepends
  1312. (bld_id, obj_kind, obj_signature, obj_owner,
  1313. need_obj_kind, need_obj_signature, need_obj_owner)
  1314. values
  1315. (
  1316. "%SYSBLDNAME%",
  1317. 69, "LOCopy (LLD_Lob,char,char)",
  1318. "%SYSBLDUSER%",
  1319. 5, "LOCopy (LLD_Lob,char,char)",
  1320. "%SYSBLDUSER%"
  1321. );
  1322. insert into sysbldobjects
  1323. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1324. create_can_fail, drop_sql, drop_can_fail)
  1325. values
  1326. (
  1327. "%SYSBLDNAME%", 5, "LLD_LobType (LLD_Lob)",
  1328. "%SYSBLDUSER%", 0,
  1329. "create function LLD_LobType (LLD_Lob)
  1330. returns char (4)
  1331. with
  1332. (
  1333. not variant
  1334. )
  1335. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_type)""
  1336. language c;
  1337. ",
  1338. "f",
  1339. "drop function LLD_LobType (LLD_Lob);
  1340. ",
  1341. "f"
  1342. );
  1343. insert into sysbldobjdepends
  1344. (bld_id, obj_kind, obj_signature, obj_owner,
  1345. need_obj_kind, need_obj_signature, need_obj_owner)
  1346. values
  1347. (
  1348. "%SYSBLDNAME%",
  1349. 5, "LLD_LobType (LLD_Lob)",
  1350. "%SYSBLDUSER%",
  1351. 7, "LLD_Lob",
  1352. "%SYSBLDUSER%"
  1353. );
  1354. insert into sysbldobjects
  1355. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1356. create_can_fail, drop_sql, drop_can_fail)
  1357. values
  1358. (
  1359. "%SYSBLDNAME%", 69, "LLD_LobType (LLD_Lob)",
  1360. "%SYSBLDUSER%", 0,
  1361. "grant execute on function LLD_LobType (LLD_Lob) to public;
  1362. ",
  1363. "f",
  1364. "",
  1365. "f"
  1366. );
  1367. insert into sysbldobjdepends
  1368. (bld_id, obj_kind, obj_signature, obj_owner,
  1369. need_obj_kind, need_obj_signature, need_obj_owner)
  1370. values
  1371. (
  1372. "%SYSBLDNAME%",
  1373. 69, "LLD_LobType (LLD_Lob)",
  1374. "%SYSBLDUSER%",
  1375. 5, "LLD_LobType (LLD_Lob)",
  1376. "%SYSBLDUSER%"
  1377. );
  1378. insert into sysbldobjects
  1379. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1380. create_can_fail, drop_sql, drop_can_fail)
  1381. values
  1382. (
  1383. "%SYSBLDNAME%", 5, "LLD_LobCast (blob)",
  1384. "%SYSBLDUSER%", 0,
  1385. "create function LLD_LobCast (blob)
  1386. returns LLD_Lob
  1387. with
  1388. (
  1389. not variant
  1390. )
  1391. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_from_blob)""
  1392. language c;
  1393. ",
  1394. "f",
  1395. "drop function LLD_LobCast (blob);
  1396. ",
  1397. "f"
  1398. );
  1399. insert into sysbldobjdepends
  1400. (bld_id, obj_kind, obj_signature, obj_owner,
  1401. need_obj_kind, need_obj_signature, need_obj_owner)
  1402. values
  1403. (
  1404. "%SYSBLDNAME%",
  1405. 5, "LLD_LobCast (blob)",
  1406. "%SYSBLDUSER%",
  1407. 7, "LLD_Lob",
  1408. "%SYSBLDUSER%"
  1409. );
  1410. insert into sysbldobjects
  1411. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1412. create_can_fail, drop_sql, drop_can_fail)
  1413. values
  1414. (
  1415. "%SYSBLDNAME%", 69, "LLD_LobCast (blob)",
  1416. "%SYSBLDUSER%", 0,
  1417. "grant execute on function LLD_LobCast (blob) to public;
  1418. ",
  1419. "f",
  1420. "",
  1421. "f"
  1422. );
  1423. insert into sysbldobjdepends
  1424. (bld_id, obj_kind, obj_signature, obj_owner,
  1425. need_obj_kind, need_obj_signature, need_obj_owner)
  1426. values
  1427. (
  1428. "%SYSBLDNAME%",
  1429. 69, "LLD_LobCast (blob)",
  1430. "%SYSBLDUSER%",
  1431. 5, "LLD_LobCast (blob)",
  1432. "%SYSBLDUSER%"
  1433. );
  1434. insert into sysbldobjects
  1435. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1436. create_can_fail, drop_sql, drop_can_fail)
  1437. values
  1438. (
  1439. "%SYSBLDNAME%", 3, "blob->LLD_Lob",
  1440. "%SYSBLDUSER%", 0,
  1441. "create implicit cast
  1442. (
  1443. blob as LLD_Lob
  1444. with LLD_LobCast
  1445. );
  1446. ",
  1447. "f",
  1448. "drop cast (blob as LLD_Lob);
  1449. ",
  1450. "f"
  1451. );
  1452. insert into sysbldobjdepends
  1453. (bld_id, obj_kind, obj_signature, obj_owner,
  1454. need_obj_kind, need_obj_signature, need_obj_owner)
  1455. values
  1456. (
  1457. "%SYSBLDNAME%",
  1458. 3, "blob->LLD_Lob",
  1459. "%SYSBLDUSER%",
  1460. 7, "LLD_Lob",
  1461. "%SYSBLDUSER%"
  1462. );
  1463. insert into sysbldobjects
  1464. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1465. create_can_fail, drop_sql, drop_can_fail)
  1466. values
  1467. (
  1468. "%SYSBLDNAME%", 5, "LLD_LobCast (clob)",
  1469. "%SYSBLDUSER%", 0,
  1470. "create function LLD_LobCast (clob)
  1471. returns LLD_Lob
  1472. with
  1473. (
  1474. not variant
  1475. )
  1476. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_from_clob)""
  1477. language c;
  1478. ",
  1479. "f",
  1480. "drop function LLD_LobCast (clob);
  1481. ",
  1482. "f"
  1483. );
  1484. insert into sysbldobjdepends
  1485. (bld_id, obj_kind, obj_signature, obj_owner,
  1486. need_obj_kind, need_obj_signature, need_obj_owner)
  1487. values
  1488. (
  1489. "%SYSBLDNAME%",
  1490. 5, "LLD_LobCast (clob)",
  1491. "%SYSBLDUSER%",
  1492. 7, "LLD_Lob",
  1493. "%SYSBLDUSER%"
  1494. );
  1495. insert into sysbldobjects
  1496. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1497. create_can_fail, drop_sql, drop_can_fail)
  1498. values
  1499. (
  1500. "%SYSBLDNAME%", 69, "LLD_LobCast (clob)",
  1501. "%SYSBLDUSER%", 0,
  1502. "grant execute on function LLD_LobCast (clob) to public;
  1503. ",
  1504. "f",
  1505. "",
  1506. "f"
  1507. );
  1508. insert into sysbldobjdepends
  1509. (bld_id, obj_kind, obj_signature, obj_owner,
  1510. need_obj_kind, need_obj_signature, need_obj_owner)
  1511. values
  1512. (
  1513. "%SYSBLDNAME%",
  1514. 69, "LLD_LobCast (clob)",
  1515. "%SYSBLDUSER%",
  1516. 5, "LLD_LobCast (clob)",
  1517. "%SYSBLDUSER%"
  1518. );
  1519. insert into sysbldobjects
  1520. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1521. create_can_fail, drop_sql, drop_can_fail)
  1522. values
  1523. (
  1524. "%SYSBLDNAME%", 3, "clob->LLD_Lob",
  1525. "%SYSBLDUSER%", 0,
  1526. "create implicit cast
  1527. (
  1528. clob as LLD_Lob
  1529. with LLD_LobCast
  1530. );
  1531. ",
  1532. "f",
  1533. "drop cast (clob as LLD_Lob);
  1534. ",
  1535. "f"
  1536. );
  1537. insert into sysbldobjdepends
  1538. (bld_id, obj_kind, obj_signature, obj_owner,
  1539. need_obj_kind, need_obj_signature, need_obj_owner)
  1540. values
  1541. (
  1542. "%SYSBLDNAME%",
  1543. 3, "clob->LLD_Lob",
  1544. "%SYSBLDUSER%",
  1545. 7, "LLD_Lob",
  1546. "%SYSBLDUSER%"
  1547. );
  1548. insert into sysbldobjects
  1549. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1550. create_can_fail, drop_sql, drop_can_fail)
  1551. values
  1552. (
  1553. "%SYSBLDNAME%", 5, "blobCast (LLD_Lob)",
  1554. "%SYSBLDUSER%", 0,
  1555. "create function blobCast (LLD_Lob)
  1556. returns blob
  1557. with
  1558. (
  1559. not variant
  1560. )
  1561. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_to_blob)""
  1562. language c;
  1563. ",
  1564. "f",
  1565. "drop function blobCast (LLD_Lob);
  1566. ",
  1567. "f"
  1568. );
  1569. insert into sysbldobjdepends
  1570. (bld_id, obj_kind, obj_signature, obj_owner,
  1571. need_obj_kind, need_obj_signature, need_obj_owner)
  1572. values
  1573. (
  1574. "%SYSBLDNAME%",
  1575. 5, "blobCast (LLD_Lob)",
  1576. "%SYSBLDUSER%",
  1577. 7, "LLD_Lob",
  1578. "%SYSBLDUSER%"
  1579. );
  1580. insert into sysbldobjects
  1581. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1582. create_can_fail, drop_sql, drop_can_fail)
  1583. values
  1584. (
  1585. "%SYSBLDNAME%", 69, "blobCast (LLD_Lob)",
  1586. "%SYSBLDUSER%", 0,
  1587. "grant execute on function blobCast (LLD_Lob) to public;
  1588. ",
  1589. "f",
  1590. "",
  1591. "f"
  1592. );
  1593. insert into sysbldobjdepends
  1594. (bld_id, obj_kind, obj_signature, obj_owner,
  1595. need_obj_kind, need_obj_signature, need_obj_owner)
  1596. values
  1597. (
  1598. "%SYSBLDNAME%",
  1599. 69, "blobCast (LLD_Lob)",
  1600. "%SYSBLDUSER%",
  1601. 5, "blobCast (LLD_Lob)",
  1602. "%SYSBLDUSER%"
  1603. );
  1604. insert into sysbldobjects
  1605. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1606. create_can_fail, drop_sql, drop_can_fail)
  1607. values
  1608. (
  1609. "%SYSBLDNAME%", 3, "LLD_Lob->blob",
  1610. "%SYSBLDUSER%", 0,
  1611. "create implicit cast
  1612. (
  1613. LLD_Lob as blob
  1614. with blobCast
  1615. );
  1616. ",
  1617. "f",
  1618. "drop cast (LLD_Lob as blob);
  1619. ",
  1620. "f"
  1621. );
  1622. insert into sysbldobjdepends
  1623. (bld_id, obj_kind, obj_signature, obj_owner,
  1624. need_obj_kind, need_obj_signature, need_obj_owner)
  1625. values
  1626. (
  1627. "%SYSBLDNAME%",
  1628. 3, "LLD_Lob->blob",
  1629. "%SYSBLDUSER%",
  1630. 7, "LLD_Lob",
  1631. "%SYSBLDUSER%"
  1632. );
  1633. insert into sysbldobjects
  1634. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1635. create_can_fail, drop_sql, drop_can_fail)
  1636. values
  1637. (
  1638. "%SYSBLDNAME%", 5, "clobCast (LLD_Lob)",
  1639. "%SYSBLDUSER%", 0,
  1640. "create function clobCast (LLD_Lob)
  1641. returns clob
  1642. with
  1643. (
  1644. not variant
  1645. )
  1646. external name ""$INFORMIXDIR/extend/%SYSBLDDIR%/LLD.bld(lld_lob_to_clob)""
  1647. language c;
  1648. ",
  1649. "f",
  1650. "drop function clobCast (LLD_Lob);
  1651. ",
  1652. "f"
  1653. );
  1654. insert into sysbldobjdepends
  1655. (bld_id, obj_kind, obj_signature, obj_owner,
  1656. need_obj_kind, need_obj_signature, need_obj_owner)
  1657. values
  1658. (
  1659. "%SYSBLDNAME%",
  1660. 5, "clobCast (LLD_Lob)",
  1661. "%SYSBLDUSER%",
  1662. 7, "LLD_Lob",
  1663. "%SYSBLDUSER%"
  1664. );
  1665. insert into sysbldobjects
  1666. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1667. create_can_fail, drop_sql, drop_can_fail)
  1668. values
  1669. (
  1670. "%SYSBLDNAME%", 69, "clobCast (LLD_Lob)",
  1671. "%SYSBLDUSER%", 0,
  1672. "grant execute on function clobCast (LLD_Lob) to public;
  1673. ",
  1674. "f",
  1675. "",
  1676. "f"
  1677. );
  1678. insert into sysbldobjdepends
  1679. (bld_id, obj_kind, obj_signature, obj_owner,
  1680. need_obj_kind, need_obj_signature, need_obj_owner)
  1681. values
  1682. (
  1683. "%SYSBLDNAME%",
  1684. 69, "clobCast (LLD_Lob)",
  1685. "%SYSBLDUSER%",
  1686. 5, "clobCast (LLD_Lob)",
  1687. "%SYSBLDUSER%"
  1688. );
  1689. insert into sysbldobjects
  1690. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1691. create_can_fail, drop_sql, drop_can_fail)
  1692. values
  1693. (
  1694. "%SYSBLDNAME%", 3, "LLD_Lob->clob",
  1695. "%SYSBLDUSER%", 0,
  1696. "create implicit cast
  1697. (
  1698. LLD_Lob as clob
  1699. with clobCast
  1700. );
  1701. ",
  1702. "f",
  1703. "drop cast (LLD_Lob as clob);
  1704. ",
  1705. "f"
  1706. );
  1707. insert into sysbldobjdepends
  1708. (bld_id, obj_kind, obj_signature, obj_owner,
  1709. need_obj_kind, need_obj_signature, need_obj_owner)
  1710. values
  1711. (
  1712. "%SYSBLDNAME%",
  1713. 3, "LLD_Lob->clob",
  1714. "%SYSBLDUSER%",
  1715. 7, "LLD_Lob",
  1716. "%SYSBLDUSER%"
  1717. );
  1718. insert into sysbldobjects
  1719. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1720. create_can_fail, drop_sql, drop_can_fail)
  1721. values
  1722. (
  1723. "%SYSBLDNAME%", 15, "ILLD1",
  1724. "%SYSBLDUSER%", 0,
  1725. "insert into sysbldiprovided
  1726. (bldi_id, bld_id)
  1727. values
  1728. (
  1729. ""ILLD1"",
  1730. ""%SYSBLDNAME%""
  1731. );
  1732. ",
  1733. "f",
  1734. "delete from sysbldiprovided
  1735. where bldi_id = ""ILLD1""
  1736. and bld_id = ""%SYSBLDNAME%"";
  1737. ",
  1738. "f"
  1739. );
  1740. insert into sysbldobjects
  1741. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1742. create_can_fail, drop_sql, drop_can_fail)
  1743. values
  1744. (
  1745. "%SYSBLDNAME%", 15, "ILLD2",
  1746. "%SYSBLDUSER%", 0,
  1747. "insert into sysbldiprovided
  1748. (bldi_id, bld_id)
  1749. values
  1750. (
  1751. ""ILLD2"",
  1752. ""%SYSBLDNAME%""
  1753. );
  1754. ",
  1755. "f",
  1756. "delete from sysbldiprovided
  1757. where bldi_id = ""ILLD2""
  1758. and bld_id = ""%SYSBLDNAME%"";
  1759. ",
  1760. "f"
  1761. );
  1762. insert into sysbldobjects
  1763. (bld_id, obj_kind, obj_signature, obj_owner, sequence, create_sql,
  1764. create_can_fail, drop_sql, drop_can_fail)
  1765. values
  1766. (
  1767. "%SYSBLDNAME%", 0, "sysbldregistered",
  1768. "%SYSBLDUSER%", 0,
  1769. "insert into sysbldregistered
  1770. (bld_id)
  1771. values
  1772. (
  1773. ""%SYSBLDNAME%""
  1774. );
  1775. ",
  1776. "f",
  1777. "delete from sysbldregistered
  1778. where bld_id = ""%SYSBLDNAME%"";
  1779. ",
  1780. "f"
  1781. );