You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to CloudBase
I am trying to create an XML table for use with CLOUDBASE as I have
had success in creation of a CSV data table but would prefer it be
xml. Here's what I have done:
CREATE XML TABLE TEST
(
COLUMN1 INT 'column1'
)
ROOT TAG 'data';
INSERT INTO TEST IMPORT DATA FROM 'path-to-xml/test.xml';
I am doing all of this via Squirrel and when I try the following
query:
SELECT * FROM TEST;
All I get is a null value. What am I doing wrong? Or is this just a
problem with Squirrel not properly displaying the data?
Thanks,
Matt
mgarren
unread,
Jul 20, 2010, 3:26:58 PM7/20/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to CloudBase
I actually figured it out. In case anyone is interested, when you
specify the create statement, instead of 'column1', it should be '//
column1' per XPATH specifications.