Oracle Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsDatabasesOracle Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old December 13th, 2012, 03:55 PM
ushelke ushelke is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 3 ushelke User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 29 m 56 sec
Reputation Power: 0
Handling NULL value in XML using getStringVal

Hi,
I have below query which works fine if column 'XML_COL' has values. This select statement fails if the value is NULL for

select xmltype(t.xml_col).extract('//fax/text()').getStringVal() from mytab t

How to handle rows with NULL values in the column 'XML_COL'.

Reply With Quote
  #2  
Old December 13th, 2012, 04:02 PM
shammat shammat is offline
Contributing User
Dev Shed Frequenter (2500 - 2999 posts)
 
Join Date: Oct 2003
Location: Germany
Posts: 2,685 shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level)shammat User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 1 Month 3 Weeks 3 Days 19 h 53 m 25 sec
Reputation Power: 284
Quote:
Originally Posted by ushelke
How to handle rows with NULL values in the column 'XML_COL'.
Why not add a
Code:
WHERE xml_col IS NOT NULL
to your statement?
__________________
I will not read nor answer questions where the SQL code is messy and not formatted properly using [code] tags.
http://forums.devshed.com/misc.php?do=bbcode#code

Tips on how to ask better questions:
http://tkyte.blogspot.de/2005/06/how-to-ask-questions.html
http://wiki.postgresql.org/wiki/SlowQueryQuestions
http://catb.org/esr/faqs/smart-questions.html

Reply With Quote
  #3  
Old December 13th, 2012, 04:04 PM
ushelke ushelke is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 3 ushelke User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 29 m 56 sec
Reputation Power: 0
Quote:
Originally Posted by shammat
Why not add a
Code:
WHERE xml_col IS NOT NULL
to your statement?


Unfortunately I need all the values as this SELECT is part of another SELECT

Reply With Quote
  #4  
Old December 13th, 2012, 04:21 PM
ushelke ushelke is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 3 ushelke User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 29 m 56 sec
Reputation Power: 0
Quote:
Originally Posted by ushelke
Unfortunately I need all the values as this SELECT is part of another SELECT


added the CASE statement in SELECT statemnet to first check if the value is NULL or NOT. This is working fine.
Thanks

select
CASE WHEN
t.xml_col IS NULL THEN NULL
ELSE
xmltype(t.xml_col).extract('//fax/text()').getStringVal()
END
from mytab t

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesOracle Development > Handling NULL value in XML using getStringVal

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap