Update ora/ooxml_util_pkg.pkb
Modified the ooxml_util_pkg and added a 'state' attribute to t_xlsx_sheet_properties and removed the ORDER BY clause.
This commit is contained in:
parent
c121c58480
commit
9b0738037b
@ -73,6 +73,8 @@ begin
|
|||||||
Who Date Description
|
Who Date Description
|
||||||
------ ---------- --------------------------------
|
------ ---------- --------------------------------
|
||||||
JMW 02.03.2016 Created
|
JMW 02.03.2016 Created
|
||||||
|
JMW 31.03.2017 Added a 'state' attribute to t_xlsx_sheet_properties
|
||||||
|
JMW 12.04.2018 Removed the ORDER BY clause
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -87,9 +89,9 @@ begin
|
|||||||
columns
|
columns
|
||||||
r_id varchar2(255) path '@r:id',
|
r_id varchar2(255) path '@r:id',
|
||||||
sheetid number path '@sheetId',
|
sheetid number path '@sheetId',
|
||||||
name varchar2(31) path '@name' ) xml
|
name varchar2(31) path '@name',
|
||||||
where xml.r_id is not null
|
state varchar2(10) path '@state' ) xml
|
||||||
order by xml.sheetid;
|
where xml.r_id is not null;
|
||||||
|
|
||||||
return l_returnvalue;
|
return l_returnvalue;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user