Skip to content

Commit

Permalink
Update ora/ooxml_util_pkg.pkb
Browse files Browse the repository at this point in the history
Modified the ooxml_util_pkg and added a 'state' attribute to t_xlsx_sheet_properties and removed the ORDER BY clause.
  • Loading branch information
datRedHeadedGuy committed Oct 11, 2018
1 parent c121c58 commit 9b07380
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ora/ooxml_util_pkg.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ begin
Who Date Description
------ ---------- --------------------------------
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

*/

Expand All @@ -87,9 +89,9 @@ begin
columns
r_id varchar2(255) path '@r:id',
sheetid number path '@sheetId',
name varchar2(31) path '@name' ) xml
where xml.r_id is not null
order by xml.sheetid;
name varchar2(31) path '@name',
state varchar2(10) path '@state' ) xml
where xml.r_id is not null;

return l_returnvalue;

Expand Down

0 comments on commit 9b07380

Please sign in to comment.