Search the web
Sign In
New User? Sign Up
xml-dbms
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3672 - 3704 of 3864   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3672
Hello, In the web service project I'm working on at the moment there's the potential for some large XML documents to be generated, say, up to 5MB. My role is...
Jo Fletcher
speckers2004
Offline Send Email
Mar 6, 2005
11:40 pm
3673
You haven't really said what kind of documents you are using, but large documents I have heard of seem to fall into three categories: 1) Repeating data. For...
Ronald Bourret
xmldbms
Offline Send Email
Mar 7, 2005
7:28 am
3674
The request retrives lots of records so is it possible to restrict the number of records fetched by a request. regards, Ranjan ...
Ranjan K. Baisak
ranjanbaisak
Offline Send Email
Mar 14, 2005
8:43 am
3675
In the org.xmlmiddleware.xmldbms.datahandlers.DataHandlerBase, modify the select method as follows. (Code is not compiled or tested.) public ResultSet...
Ronald Bourret
xmldbms
Offline Send Email
Mar 14, 2005
7:31 pm
3676
Hi Ron! I'm trying to publish some relational data to XML programatically (using sql-stmts). I'm using Transfer.retrieveDocument as you can see in the code ...
Christian Dreier
christian3er
Offline Send Email
Mar 16, 2005
9:22 pm
3677
Hello, When you call Transfer in this way, you need to call setDatabaseProperties() before calling retrieveDocument. If I remember correctly, the reason is...
Ronald Bourret
xmldbms
Offline Send Email
Mar 17, 2005
7:24 pm
3678
Thanks for your fast reply. It works now. I really haven’t seen it in the JavaDocs. BR Christian _____ Von: Ronald Bourret [mailto:rpbourret@...] ...
Christian Dreier
christian3er
Offline Send Email
Mar 18, 2005
9:19 am
3679
OK. That was some work. But it works now! Thanks very much once again. Your instructions have really been helpful! /Christian _____ Von: Ronald Bourret...
Christian Dreier
christian3er
Offline Send Email
Mar 18, 2005
6:15 pm
3680
Dear sir, I am using TransferResultSet sample for generation of XML document.I want to associate an CSS style sheet with the generated XML document.How can I...
amol
vnamol
Offline Send Email
Mar 18, 2005
6:58 pm
3681
In the toXML method, the call to dbmsToDOM.retrieveDocument(rs) returns a DOM tree as the variable named doc. What you need to do is use the DOM API to add a...
Ronald Bourret
xmldbms
Offline Send Email
Mar 19, 2005
5:47 am
3685
Hi, I am trying to insert the contents of an XML file into an Oracle table using the Transfer program that comes with XMLDBMS V2 and am getting the following...
Scott Bainbridge
sctt_bainbridge
Offline Send Email
May 25, 2005
11:24 am
3686
Hello, Try using the table name XFORM_NOTES instead of xform_notes. XML-DBMS treats all table and column names in the map file as quoted identifiers, so they...
Ronald Bourret
xmldbms
Offline Send Email
May 25, 2005
5:03 pm
3687
Hi, I tried that and I still get the same error... Thanks for your help. Cheers, Scott. ... DBMS ... identifiers, ... the ... upper ... table ... getting the...
sctt_bainbridge
Offline Send Email
May 25, 2005
9:07 pm
3688
Hello, I believe I've found your problem. In your map document, you declare the xform_notes table as being in the prod database: <Database Name="prod"> But...
Ronald Bourret
xmldbms
Offline Send Email
May 25, 2005
9:21 pm
3689
Thanks, that seems to have solved it! I am now talking to the database - getting a null error so I have still some more work to do but the error is an SQL one...
sctt_bainbridge
Offline Send Email
May 25, 2005
10:16 pm
3690
Hi, I have it working, the reasons I was getting a NULL error was that my XML file looked like: <?xml version="1.0" encoding="ISO-8859-1" ?> <note> ...
sctt_bainbridge
Offline Send Email
May 26, 2005
1:29 am
3691
1) In case you missed it, the reason it wasn't working before was that you had mapped id as an attribute, but it was an element in your document. So if you...
Ronald Bourret
xmldbms
Offline Send Email
May 26, 2005
5:14 am
3692
Ahhh - silly mistake on my part, changed the id to an element and it worked. Again thanks. Next step is to read the data back from the database - any tips??!! ...
sctt_bainbridge
Offline Send Email
May 27, 2005
12:27 am
3693
Hi, I have another problem... I am having trouble with the RetreiveDocumentbySQL method in the Transfer program. If I use the following I get mutiple records...
sctt_bainbridge
Offline Send Email
May 27, 2005
2:52 am
3694
Hello, I see two potential problems: 1) The data type of the NOTE_ID column isn't really VARCHAR, as you've declared in the map document. (Your SQL statement...
Ronald Bourret
xmldbms
Offline Send Email
Jun 1, 2005
6:36 am
3695
Hi, I have checked the map and filter files and made sure everything matches. I have just re-done the table as all varchar's and it works but it seems to be...
sctt_bainbridge
Offline Send Email
Jun 2, 2005
1:37 am
3696
Mismatched elements is due to this bug: http://groups.yahoo.com/group/xml-dbms/message/3632 Briefly, XML-DBMS accesses internal column information by column...
Ronald Bourret
xmldbms
Offline Send Email
Jun 2, 2005
11:38 pm
3697
1. Table 1 contains two fields which link to records in Table 2...like this: Table 1 ... name item_1 item_2 Table 2 ... item_id item_name ...and I'd like to...
thetriviaboy
Offline Send Email
Jun 8, 2005
10:29 pm
3698
Hello, 1) With version 1.x, you can't do this at all. With version 2.0 alpha 3, you can almost do this. The problem is that what you want to do requires you to...
Ronald Bourret
xmldbms
Offline Send Email
Jun 13, 2005
5:38 am
3699
Hi, I have three linked tables much like the Orders / Customer / Items ... CREATE TABLE test_customer (customer_id INTEGER primary key, customer_name...
Scott Bainbridge
sctt_bainbridge
Offline Send Email
Jun 23, 2005
2:19 am
3700
There are two problems with your filter document: 1) The document is not valid according to filters.dtd. The class that compiles filter documents assumes that...
Ronald Bourret
xmldbms
Offline Send Email
Jun 23, 2005
6:35 am
3701
Thanks, I tired your filter, which in fact was what I started with before I got lost on related tables, etc and it, after a fair pause, gives the following...
sctt_bainbridge
Offline Send Email
Jun 24, 2005
12:41 am
3702
Could you post your map to the list or send it to me privately? The class cast exception while setting parameters makes me think that there is a problem with...
Ronald Bourret
xmldbms
Offline Send Email
Jun 24, 2005
7:08 am
3703
Hi, the map is: <?xml version='1.0' ?> <!DOCTYPE XMLToDBMS SYSTEM "xmldbms2.dtd" > <XMLToDBMS Version="2.0" xmlns="http://www.xmlmiddleware.org/xmldbms/v2"> ...
sctt_bainbridge
Offline Send Email
Jun 24, 2005
9:27 am
3704
Cool! I'd never thought about this, but you've managed to put XML-DBMS into an infinite loop, which would explain the stack overflow error. To solve this,...
Ronald Bourret
xmldbms
Offline Send Email
Jun 24, 2005
9:23 pm
Messages 3672 - 3704 of 3864   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help