Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/powerbi/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
BI发布服务器中的Sql解码_Sql_Bi Publisher - Fatal编程技术网

BI发布服务器中的Sql解码

BI发布服务器中的Sql解码,sql,bi-publisher,Sql,Bi Publisher,我有一个疑问: select nm_strgp brand from co_strgp where id_strgp_lv='2'; 此列中的一个值是HOLLAND&;BARRETT但我想在BI publisher中将其显示为HOLLAND&BARRETT。如何实现这一点?您可以使用来取消特殊XML字符的显示 SQL> select DBMS_XMLGEN.CONVERT('HOLLAND & BARRETT',1) from dual; DBMS_XMLGEN

我有一个疑问:

select nm_strgp brand 
from co_strgp
where id_strgp_lv='2';
此列中的一个值是
HOLLAND&;BARRETT
但我想在BI publisher中将其显示为
HOLLAND&BARRETT
。如何实现这一点?

您可以使用来取消特殊XML字符的显示

SQL> select DBMS_XMLGEN.CONVERT('HOLLAND & BARRETT',1) from dual;

DBMS_XMLGEN.CONVERT('HOLLAND&BARRETT',1)
--------------------------------------------
HOLLAND & BARRETT