Postgres 9.2 - XML string functions ?

Поиск
Список
Период
Сортировка
От Khangelani Gama
Тема Postgres 9.2 - XML string functions ?
Дата
Msg-id 203fb35202e040e00d0d3ed514414a2a@mail.gmail.com
обсуждение исходный текст
Ответы Re: Postgres 9.2 - XML string functions ?  (David G Johnston <david.g.johnston@gmail.com>)
Список pgsql-admin

Hi

 

Please help, I have been asked why XML string functions do this, which is why does the second statement below return no rows. No matter what is on the select statement, they can select as many columns as they want but the XML function breaks it as soon as it is added.

 

 

1)      select aud_id,act_typ,right(act_typ::text,1),fpp_cde,obo_aud_id,obo_aud_id||sku_cde as "Key" from sku_tran join audit using (aud_id) join action_typ using (act_typ) join branch using (br_cde) join sku using (sku_cde) where obo_aud_id=5252005 and audit.fpp_cde between '201408' and '201412' and (right(act_typ::text,1) = '5') and act_typ between 76000 and 76999;

aud_id  | act_typ | right | fpp_cde | obo_aud_id |       Key

2585912 |   76005 | 5     | 201408  |    5252005 | 525200510053486

(1 row)

2)      select aud_id,act_typ,right(act_typ::text,1),fpp_cde,obo_aud_id,(unnest(xpath('.//checksumBr/text()', aud_xml::xml)))::text||obo_aud_id||sku_cde as "Key" from sku_tran join audit using (aud_id) join action_typ using (act_typ) join branch using (br_cde) join sku using (sku_cde) where obo_aud_id=5252005 and audit.fpp_cde between '201408' and '201412' and (right(act_typ::text,1) = '5') and act_typ between 76000 and 76999;

aud_id | act_typ | right | fpp_cde | obo_aud_id | Key

(0 rows)

 

 

 


CONFIDENTIALITY NOTICE
The contents of and attachments to this e-mail are intended for the addressee only, and may contain the confidential
information of Argility (Proprietary) Limited and/or its subsidiaries. Any review, use or dissemination thereof by anyone
other than the intended addressee is prohibited.If you are not the intended addressee please notify the writer immediately
and destroy the e-mail. Argility (Proprietary) Limited and its subsidiaries distance themselves from and accept no liability
for unauthorised use of their e-mail facilities or e-mails sent other than strictly for business purposes.

В списке pgsql-admin по дате отправления:

Предыдущее
От: Rosser Schwarz
Дата:
Сообщение: Re: PITR compatible backup with exclusion
Следующее
От: David G Johnston
Дата:
Сообщение: Re: Postgres 9.2 - XML string functions ?