Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
1k views

Max column width in Oracle spool to file

I have a script like this: SET ECHO OFF SET FEEDBACK OFF SET VERIFY OFF SET HEADING OFF SET TERMOUT OFF SET TRIMOUT ON SET TRIMSPOOL ON SET WRAP OFF SET LINESIZE 32000 SET LONG 32000 SET ...
4
votes
6answers
4k views

Is it possible to write files to a remote directory using java?

I have the directory mapped on my machine so that I can browse and write to it via Windows explorer. I would like to write files via java. File f = new ...
0
votes
0answers
15 views

Need better performance inserting xml documents in container

I am trying to add about 20,000 xml files to various containers in my XML DB. The file sizes range from 100KB to over 10,000KB. It takes between 1 second and 30 seconds to add a single file. I have ...
0
votes
2answers
340 views

Configuring Data Source in WebSphere 6.1 for Oracle 11g XML-DB support

I am using Oracle's XML database feature and the column is defined as SYS.XMLTYPE. I am using the below JDBC code to select/update this field. XMLType xmlType = (XMLType) rs.getObject(1); ...
0
votes
4answers
1k views

Issue with encoding UTF-8 when FTPing files

I am able to have my application upload files via FTP using the FTPClient Java library. (I happen to be uploading to an Oracle XML DB repository.) Everything uploads fine unless the xml file has ...