XML export of entire database

Hi
I'm trying to export an entire database into a single XML document. At the moment, I can only do it one table at a time, using the following pl/sql procedure:
create or replace procedure "download"
is
queryCtx DBMS_XMLquery.ctxType;
result1 CLOB;
begin
queryCtx := DBMS_XMLQuery.newContext('select * from table1');
result1 := DBMS_XMLQuery.getXML(queryCtx);
--download the file
owa_util.mime_header('text/xml', FALSE);
htp.p('Content-Disposition: attachment;
filename="Document.xml"');
owa_util.http_header_close;
htp.print(result1);
end
Is there any way to select all information from all tables and put it in the one document?
Thanks in advance,
Dave

David,
Are you trying to export user (SYS and SYSTEM) as well into an XML file? or are you trying to get all of one schema into a XML file?
One possibility:
You could create an interim table which contains the tablenames.
create table interim as select table_name from dba_tables where owner = 'OWNERNAME';
Then in your program read this interimtable into a cursor and loop through it using the variable in place of your hardcoded 'select * from table1' in the DBMS_XMLQuery.newContext
You would then need to append result1 to result1 plus new query context for the clob.

Similar Messages

  • How to export an XML file from oracle database?

    plz help me its urgent requirement....could u pls tell me the step by step procedure for following questions...?how to export a data as an XML file from oracle database?
    thanks in advance,
    Bala.
    Edited by: user3523292 on Nov 14, 2008 5:43 AM

    user3523292 wrote:
    plz help me its urgent requirement....could u pls tell me the step by step procedure for following questions...?how to export a data as an XML file from oracle database?
    thanks in advance,
    Bala.
    Edited by: user3523292 on Nov 14, 2008 5:43 AMThis is a forum of volunteers. There is no "urgent" here. Nevertheless, a google search of 'xml oracle export' quickly lead me to this Oracle site:
    otn.oracle.com/sample_code/tech/xml/index.html
    I also see lots of hits when I search the documentation library at tahiti.oracle.com for 'xml'. This one in particular may be what you are looking for:
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14252/adx_j_xsu.htm#ADXDK070

  • Export an XML file from oracle database

    plz help me its urgent requirement....could u pls tell me the step by step procedure for following questions...?how to export a data as an XML file from oracle database? is it possible..?
    thanks in advance,
    Bala. is it possible?
    Edited by: user3523292 on Nov 14, 2008 5:45 AM

    Here's the quick and dirty method using SQL*Plus...
    SQL> select * from emp where deptno = 10;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7782 CLARK      MANAGER         7839 09-JUN-81       2450                    10
          7839 KING       PRESIDENT            17-NOV-81       5000                    10
          7934 MILLER     CLERK           7782 23-JAN-82       1300                    10
    SQL> set markup html on
    SQL> select * from emp where deptno = 10;
    <br>
    <p>
    <table border='1' width='90%' align='center' summary='Script output'>
    <tr>
    <th scope="col">
    EMPNO
    </th>
    <th scope="col">
    ENAME
    </th>
    <th scope="col">
    JOB
    </th>
    <th scope="col">
    MGR
    </th>
    <th scope="col">
    HIREDATE
    </th>
    <th scope="col">
    SAL
    </th>
    <th scope="col">
    COMM
    </th>
    <th scope="col">
    DEPTNO
    </th>
    </tr>
    <tr>
    <td align="right">
          7782
    </td>
    <td>
    CLARK
    </td>
    <td>
    MANAGER
    </td>
    <td align="right">
          7839
    </td>
    <td>
    09-JUN-81
    </td>
    <td align="right">
          2450
    </td>
    <td align="right">
    </td>
    <td align="right">
            10
    </td>
    </tr>
    <tr>
    <td align="right">
          7839
    </td>
    <td>
    KING
    </td>
    <td>
    PRESIDENT
    </td>
    <td align="right">
    </td>
    <td>
    17-NOV-81
    </td>
    <td align="right">
          5000
    </td>
    <td align="right">
    </td>
    <td align="right">
            10
    </td>
    </tr>
    <tr>
    <td align="right">
          7934
    </td>
    <td>
    MILLER
    </td>
    <td>
    CLERK
    </td>
    <td align="right">
          7782
    </td>
    <td>
    23-JAN-82
    </td>
    <td align="right">
          1300
    </td>
    <td align="right">
    </td>
    <td align="right">
            10
    </td>
    </tr>
    </table>
    <p>
    SQL&gt;which you can spool to a file.

  • Export and import entire database

    hi.
    when I did export all database to a file , and then i import it to unix machine with oracle 8.1.7 , it didn't gave me error messages, and all user were created as well. in unix (or maby in oracle 8.1.7) i didn't have to create all the users, tablespaces and grants. the import did it all.
    when i did the same thing on NT with oracle 8.1.5, it gave me error messages that user does not exists. can i export all database , including users and tablespaces without create all these users one by one ?
    null

    Mehul Mehta wrote:
    Apologies for the delay in response.
    I have found Directory, i can even export data in that, but the problem is that we have database on other pc, and we are connected through network. When i run expdp command from command line it creates the dump file in the default PC and not in my pc. If i use old export utility file is created in my pc. Is there any way i can create file in my pc.
    No.The result of expdp(dmp) file will create in the server (directory).
    I used the below command.
    expdp test1/test1@abc123:1521/XE directory=datadump dumpfile=c:\oraclexe\app\oracle\admin\XE\dpdump:test1latest.dmp
    abc123 is the pc where my database in installed
    c:\oraclexe\app\oracle\admin\XE\dpdump in my pc's path where this file should be created and stored.
    I want to load this data in new schema, which is at my pc.
    XE is our database name as we are using ExpressEdition of Oracle 10g.
    I want to load the exported data in my database in my Schema.
    To export through remote database to local database you can use expdp network_link option.See below link
    http://download.oracle.com/docs/cd/B13789_01/server.101/b10825/dp_import.htm

  • Trimming XML export from FCP

    Is it possible to trim the sequence XML export? FCP exports the entire XML sequence even when using Mark In/Out. I just need portions from the sequence to facilitate text extraction from my sequence chapters... if it helps to know why. Thanks.

    Duplicate the sequence...trim out what you don't want to export. Then export the XML.
    Shane

  • Forum XML Export failure - user not found

    Hi,
    first, I know the export/import functionality is disabled by default in the jive forum version of SAP.
    But they don't provide any other mechanism to export forum content, so we have to use it.
    We want to export our forum content with the XML Export function.
    When I want to export the whole content, the error log shows following:
    2009.12.22 09:54:45 [error]
    com.jivesoftware.base.UserNotFoundException
    at com.sap.netweaver.coll.forums.ume.User$JiveUser.loadUserByIDFromDb(User.java:446)
    at com.sap.netweaver.coll.forums.ume.User$JiveUser.<init>(User.java:356)
    at com.sap.netweaver.coll.forums.ume.User.<init>(User.java:77)
    at com.sap.netweaver.coll.forums.ume.UserManager.lookupUser(UserManager.java:139)
    at com.jivesoftware.base.UserManagerAdapter.getUser(UserManagerAdapter.java:82)
    at com.jivesoftware.base.database.DbPoll.getUser(DbPoll.java:160)
    at com.jivesoftware.forum.proxy.PollProxy.getUser(PollProxy.java:47)
    at com.jivesoftware.forum.database.DbDataExport.exportPoll(DbDataExport.java:1643)
    at com.jivesoftware.forum.database.DbDataExport.exportPolls(DbDataExport.java:1624)
    at com.jivesoftware.forum.database.DbDataExport.exportForum(DbDataExport.java:1415)
    at com.jivesoftware.forum.database.DbDataExport.exportForums(DbDataExport.java:1330)
    at com.jivesoftware.forum.database.DbDataExport.exportForumCategory(DbDataExport.java:1305)
    at com.jivesoftware.forum.database.DbDataExport.exportForumCategories(DbDataExport.java:1112)
    at com.jivesoftware.forum.database.DbDataExport.exportForumCategories(DbDataExport.java:1101)
    at com.jivesoftware.forum.database.DbDataExport.doRun(DbDataExport.java:624)
    at com.jivesoftware.forum.util.DataExportServlet.service(DataExportServlet.java:120)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:117)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:62)
    at com.jivesoftware.base.action.JiveAdminActionFilter.doFilter(JiveAdminActionFilter.java:37)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:58)
    at com.opensymphony.webwork.dispatcher.FilterDispatcher.doFilter(FilterDispatcher.java:189)
    at com.jivesoftware.base.action.util.JiveFilterDispatcher.doFilter(JiveFilterDispatcher.java:68)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:58)
    at com.jivesoftware.base.util.webwork.JiveActionContextCleanUp.doFilter(JiveActionContextCleanUp.java:41)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:58)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:384)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    But when I export the forums seperatly there are only a few which throws this exception.
    I looked up the usernames from the user who posted in this forums in the table JIVEUSER in the database. But they are all stored in it.
    Can I look up somewhere the username, that isn't found?
    Neither in the error log nor in the debug log I have found it.
    Best Regards,
    Manuel

    The error is caused to an authentication failure and is not an issue with authorization
    You need to look at your authentications policy (Policy->Authentications) and see which identity store was authenticated against
    In addition can do the Live Authentications page (Monitor->Authentications) and for the failing record click on the icon under details. This will give you the full details of the requets processing and you can see which rule was matched in the identity policy (Identity Policy Matched Rule) and "Selected Identity Stores".

  • Captivate 8 - ETX ASCII code in XML export - error

    Hi,
    When I create an XML Export from a course (Captivate 8)  and open the XML in Notepad ++, I see following strange ASCII-code (See the screenshot below).
    When I take a look at the text in my Captivate file. The text is properly formatted in the text caption. There are also no strange characters in the entire captivate file.
    The text in my Captivate file is clean (copied without any formatting or manually typed).
    So the ASCII code must me added while exporting to XML.
    I know that I can remove those ASCII signs with the find and replace function, but I would like to know the reason Captivate adds those code at the end of some text.
    All help is appreciated.
    Regards,
    W

    Hi,
    When I create an XML Export from a course (Captivate 8)  and open the XML in Notepad ++, I see following strange ASCII-code (See the screenshot below).
    When I take a look at the text in my Captivate file. The text is properly formatted in the text caption. There are also no strange characters in the entire captivate file.
    The text in my Captivate file is clean (copied without any formatting or manually typed).
    So the ASCII code must me added while exporting to XML.
    I know that I can remove those ASCII signs with the find and replace function, but I would like to know the reason Captivate adds those code at the end of some text.
    All help is appreciated.
    Regards,
    W

  • XML Export And Datasets

    I was going through the tutorial on exporting recordset data as xml.
    I created a page called export.asp I created a recordset, I ran the xml export, node mode, I took another page and tried to create a spry data set by using all files and choosing the export.asp page, but when I choose get schema it says:
    Unable to locate or parse the xml source(-1, -1)
    I'm connected to database recordset goes well, site is on a testing server
    localhost.. I put the spryassets folder in manually and pointed to it in that interface, Am I missing something?

    I do get an error browsing to the page, somthing like an error occured, please contact your system administrator, I have this on localhost right no if that changes anything, I also just typed the url in like http://localhost/Tport/export.asp and still cannot load the schema. Funny the tutorial did'nt mention nothing about browsing to the page and copying the url, unless I missed somthing, could it be somthing that need installed on windows vista to load locally? I am just at a loss, and realy want to get this to work, as I really see the potentual of this extention, with spry.

  • Is it possible to copy entire database when update from 32 bit to 64 bit?

    Just want to update the os from 32bit to 64bit with Oracle9i. Sinece the data amount is very large, to export and import is quite time consuming, so Is it possible to copy entire database? Or any other suggestion?

    what's the OS ?
    You can check metalink doc, for example this one
    Subject: How to convert a 32-bit database to 64-bit database on Linux?
    Doc ID: NOTE:341880.1
    or
    Changing between 32-bit and 64-bit Word Sizes
    Doc ID: NOTE:62290.1

  • Techinical issue loading an XML file in to database

    hi,
    i am trying to load an XML file into Oracle database using SSIS 2005. the XML file is huge with 4000+ columns and also has many sub catogoreys. if i try to load the file using XSD it is taking lot of space to read the entire file upto 10GB even if the data row in the file is only one. I am only loading 60 columns out of the 4000+ columns. please provide me any alternatives that you can think of.
    Thanks in advance.
    Deb

    Stew Ashton wrote:
    I think Oracle's support for loading XML data to relational tables could be improved. I haven't found a scalable solution for very large XML files that doesn't involve breaking the file up into little parts or writing / copying a good bit of code.XML DB provides two efficient ways to load XML data relationally :
    - Object-Relational storage and FTP : the file is send to the XDB repository and inserted into the default XMLType table declared during schema registration. The underlying storage structures (collections, nested tables) are loaded directly while the data source is read.
    Then it's just a matter of building views over the XMLType table to present the data relationally.
    We can process several GBs with this method.
    - Binary XML and streaming XPath evaluation : binary XML is a post-parsed format which is optimized for streaming processing, it's available since 11.1 and now the default starting with 11.2.0.2.
    and you are supposed to parse the whole thing and return any errors before actually doing anything.That's the DOM view of things.
    XML DB doesn't use DOM when documents are first stored as XMLType (binary or OR storage), or when it does, for example if a functional evaluation of XQuery is required, then a "lazy DOM" model is used where only the needed part(s) of the XML is (are) retrieved.

  • Clone entire database and import to other db

    how can i clone the entire database and import to another oracle database but in different server by using software of SQL Development? (include table structure & package)

    It's also not clear what you want to do. At one point you say "clone database" and in your follow-up post "clone table".
    Using either conventional or data pump export/import to clone a table or schema can be pretty easy. But cloning a database using those utilities is much more difficult. There are tonnes of things in the database that even a FULL exp/imp doesn't pick up on and move. I've posted a list of that in the MOS community.

  • Gathering Entire Database Structure

    Hi Geeks,
    I want to gather the entire database structure for our client database, which is outside of our country and it is impossible to send the export dump file since so many formalities are there. I need to gather the information, but not through export dump file. I don't need the datas, but only the structure from A-Z.
    Is there any possible way to do it.
    Kindly help me.
    Thanks,
    Bang.

    Hi,
    If i understood your question correctly then can use RMAN if you have the access. invoke "show schema" command to know the structure of your Database; Eg in my case:
    C:\Documents and Settings\smuthalagan>set oracle_sid=test
    C:\Documents and Settings\smuthalagan>rman
    Recovery Manager: Release 10.1.0.2.0 - Production
    Copyright (c) 1995, 2004, Oracle. All rights reserved.
    RMAN> connect target
    connected to target database: TEST (DBID=1915532430)
    RMAN> report schema;
    using target database controlfile instead of recovery catalog
    Report of database schema
    File K-bytes Tablespace RB segs Datafile Name
    1 460800 SYSTEM *** E:\ORACLE\PRODUCT\10.1.0\ORADATA\TE
    ST\SYSTEM01.DBF
    2 30720 UNDOTBS1 *** E:\ORACLE\PRODUCT\10.1.0\ORADATA\TE
    ST\UNDOTBS01.DBF
    3 245760 SYSAUX *** E:\ORACLE\PRODUCT\10.1.0\ORADATA\TE
    ST\SYSAUX01.DBF
    4 5120 USERS *** E:\ORACLE\PRODUCT\10.1.0\ORADATA\TE
    ST\USERS01.DBF
    5 153600 EXAMPLE *** E:\ORACLE\PRODUCT\10.1.0\ORADATA\TE
    ST\EXAMPLE01.DBF
    RMAN>
    Thanks
    --Raman                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Error export from my database sql 2005 with Windows 2003 abap+java

    Hi all
    I'm trying to create an Export from my database sql 2005 with Windows 2003, but SAPINST starts with an error. ABAP+JAVA stack
    While running the export preparation, I am getting the following error;
    INFO 2010-09-08 12:12:43
    Output of C:\j2sdk1.4.2_13-x64\bin\java.exe -classpath D:\usr\sap\BID\SYS\global\sltools\sharedlib\launcher.jar -showversion -Xmx256m com.sap.engine.offline.OfflineToolStart com.sap.sl.ut.manager.UtlMain
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jce.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jsse.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_smime.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_ssl.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/w3c_http.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.infoprovider_lib.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.manager.offline.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/antlr.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/exception.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/jddi.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/logging.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/offlineconfiguration.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/opensqlsta.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/tc_sec_secstorefs.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comtcsdtcvlimpl.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SDMutil.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SLUtil.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\base.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\util.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\sqlserver.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\spy.jar -export -type=keydb "-expfile=C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/usages_data.xml" -log=UTL_load_usages.log -sid=BID -dsn=jdbc/pool/BID -ssprops=D:/usr/sap/BID/SYS/global/security/data/SecStore.properties -ssk=D:/usr/sap/BID/SYS/global/security/data/SecStore.key is written to the logfile C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/UTL.java.log.
    WARNING 2010-09-08 12:12:46
    Execution of the command "C:\j2sdk1.4.2_13-x64\bin\java.exe -classpath D:\usr\sap\BID\SYS\global\sltools\sharedlib\launcher.jar -showversion -Xmx256m com.sap.engine.offline.OfflineToolStart com.sap.sl.ut.manager.UtlMain
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jce.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jsse.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_smime.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_ssl.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/w3c_http.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.infoprovider_lib.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.manager.offline.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/antlr.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/exception.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/jddi.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/logging.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/offlineconfiguration.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/opensqlsta.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/tc_sec_secstorefs.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comtcsdtcvlimpl.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SDMutil.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SLUtil.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\base.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\util.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\sqlserver.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\spy.jar -export -type=keydb "-expfile=C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/usages_data.xml" -log=UTL_load_usages.log -sid=BID -dsn=jdbc/pool/BID -ssprops=D:/usr/sap/BID/SYS/global/security/data/SecStore.properties -ssk=D:/usr/sap/BID/SYS/global/security/data/SecStore.key" finished with return code 64. Output:
    java version "1.4.2_13"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_13-b06)
    Java HotSpot(TM) 64-Bit Server VM (build 1.4.2_13-b06, mixed mode)
    ERROR 2010-09-08 12:12:46
    CJS-30071  Execution of UTL tool 'C:\j2sdk1.4.2_13-x64\bin\java.exe -classpath D:\usr\sap\BID\SYS\global\sltools\sharedlib\launcher.jar -showversion -Xmx256m com.sap.engine.offline.OfflineToolStart com.sap.sl.ut.manager.UtlMain
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jce.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jsse.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_smime.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_ssl.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/w3c_http.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.infoprovider_lib.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.manager.offline.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/antlr.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/exception.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/jddi.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/logging.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/offlineconfiguration.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/opensqlsta.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/tc_sec_secstorefs.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comtcsdtcvlimpl.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SDMutil.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SLUtil.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\base.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\util.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\sqlserver.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\spy.jar -export -type=keydb "-expfile=C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/usages_data.xml" -log=UTL_load_usages.log -sid=BID -dsn=jdbc/pool/BID -ssprops=D:/usr/sap/BID/SYS/global/security/data/SecStore.properties -ssk=D:/usr/sap/BID/SYS/global/security/data/SecStore.key' aborts due to database connection error with return code 64.<br>DIAGNOSIS: The connection parameters are wrong or the database server is shutdown.<br> SOLUTION: Check 'UTL_load_usages.log' and 'C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/UTL.java.log' for more information.
    ERROR 2010-09-08 12:12:46
    FCO-00011  The step getUsageTypes with step key |NW_Prepare_Export|ind|ind|ind|ind|0|0|NW_Java_Prepare_Export_Dialog|ind|ind|ind|ind|5|0|getUsageTypes was executed with status ERROR .
    Could anyone please help me out on this, if possible?
    Thanks
    JM

    Hi,
    please ensure that you use a SAP supported JDK as below:
    716604    for the Sun JDK (Windows, Linux, Solaris)
    709140    Recommended JDK and VM Settings for the WebAS630/640/7.0
    And the re try the export pls.
    Regards,
    Snow

  • XML export trouble

    Im trying to create a dynamic photo gallery using Spry and XML that will ultimately resemble the spry gallery demo(http://labs.adobe.com/technologies/spry/demos/gallery/). My troubles occur when i attempt to create a dataset off of a dynamic recordset in an XMLexport.php file (like the tutorial - Using XML Export to create dynamic Spry data sets) i have trouble.
    I have my dynamic XML file named export.php and when i navigate to export.php it displays the data in the proper format (xml style). My trouble comes when i try to incorporate export.php into my XML dataset. I navigate to the file and click schema and i get a Design Time Feed error. The first line states that it failed to get schema from dynamic data, it then ask me to provide a design time feed.
    When i close the pop-up window i get an error message in the row element window of the - invalid document structure (1,1).
    What am I missing when i do this?
    Just so its easy to establish my document structure i use Xampp on my laptop with htdocs being my root and each site in their own folder within htdocs. I have my localhost set to htdocs so the database will.
    Cheers
    Ryan

    Hi Ryan,
    I navigate to the file and click schema and i get a Design Time Feed error. The first line states that it failed to get schema from dynamic data, it then ask me to provide a design time feed
    at this point Spry´s Dreamweaver UI expects a "hardcoded" XML file containing all the nodes & values etc -- the XML structure and data of your export.php will be parsed and generated by your server, but Dreamweaver itself is no web server and can´t parse PHP files from within.
    That said, code yourself a real XML file containing just one node with "dummy" data, and make sure that its XML structure plus data format will be identical to what your export.php file will also generate -- use this static XML file to feed Spry´s UI, and when your page can be considered "ready for consumption", replace the pointer to your "dummy" XML file with a link to export.php
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Exporting Of Entire Library for use with Tversity and PS3

    I'm a recent Mac owner and my background is windows. I have a setup at home where all my photos are backed up to a windows server which uses tversity to distribute photos etc to my PlayStation 3 for display on my television. I want to use the Mac as the source for my photos. Having imported all my photos into iPhoto I have realised that my standard concept of organising all my photos into folders based on the month they were taken is perhaps outdated and iPhoto creates it's own library. I still want to be able to view the photos on the PS3 so somehow need to get the files back to my windows PC.
    I have the following questions:
    1. Is there any software that will keep the iPhoto library in sync with another external folder structure, making changes as necessary when photos are added/modified? (This is a long shot I know).
    2. Assuming not can I export the entire library to the windows PC? If I can what happens to the folder structure and file names? Is it possible to export just changes from a point in time?
    3. Are exported photos always the latest version of the photo including any edits that have been made?
    4. I'm struggling to understand how Albums, Projects and Events relate to the underlying folder structure that I am used to. I prefer to have the photos organised into smaller folders by month, preferably with the date and time in the filename. Is there a way to force iPhoto to maintain this type of structure?
    Apologies if any of these are stupid questions. I've had a good look through the forums and can't find any answers that address this issue.

    iPhoto has no cross platform ability at all. It may well not be the app for you.
    1. Is there any software that will keep the iPhoto library in sync with another external folder structure, making changes as necessary when photos are added/modified? (This is a long shot I know).
    No.
    2. Assuming not can I export the entire library to the windows PC? If I can what happens to the folder structure and file names? Is it possible to export just changes from a point in time?
    You can export the files easily using the File -> Export command. A app like *_[Iphoto To Disk|http://www.Iphototodisk.com>_* will help automate the process for you.
    3. Are exported photos always the latest version of the photo including any edits that have been made?
    No, not always. If you choose 'Originals' in the export dialogue that's what you'll get.
    'm struggling to understand how Albums, Projects and Events relate to the underlying folder structure that I am used to.
    They don't. When you import photos to iPhoto they are stored in folders that reflect the Events in the iPhoto Window. But if you move files between Events in the iPhoto Window that's not reflected in how the files are stored on the HD. Albums are virtual, they are entirely constructs of the iPhoto Database. They have no corresponding folders on the HD at all. This is why a photo can be in 100 albums and use no extra disk space at all.
    I prefer to have the photos organised into smaller folders by month, preferably with the date and time in the filename. Is there a way to force iPhoto to maintain this type of structure?
    No.
    The point of iPhoto is that it's about managing Photos not Files. The idea is to let iPhoto store the files and for you to forget about them and get on with organising the photos. You do all your work in the iPhoto Window and iPhoto tracks the relationship between what you decide and the actual files.
    What you can do is run a Referenced Library.
    *I strongly caution you against doing this because you are inexperienced with Macs and iPhoto*
    It's a limited way to meet your requirements. You can decide how to store the unedited photos only. You still have no access to the edited ones except via iPhoto. Really, the best this offers is some comfort for people who have a burning need to see where the files are on the HD. It offers no functionality.
    That said:
    *How to do it:*
    Simply go to iPhoto Menu -> Preferences -> Advanced and uncheck 'Copy Files to the iPhoto Library on Import'.
    *What Happens:*
    Now iPhoto will not copy the files, but rather simply reference them on your HD. To do this it will create an alias in the Originals Folder that points to your file. It will still create a thumbnail and, if you modify the pics, a Modified version within the iPhoto Library Folder.
    *Some things to consider:*
    1. Importing and deleting pics are more complex procedures. You have to to put the files where they will be stored before importing them. When you delete them you'll need to remove the files from the HD yourself.
    2. You cannot move or rename the files on your system or iPhoto will lose track of them on systems prior to 10.5 and iPhoto 08. Even with the later versions issues can still arise if you move the referenced files to new volumes or between volumes.
    3. Most importantly, migrating to a new disk or computer can be much more complex.
    4. Because iPhoto has no tools for managing Referenced Files, if, for some reason, the path to the photos changes then you could find yourself resolving aliases for +each photo in the Library+ one by one.
    My own opinion:
    I've yet to see a good reason to run iPhoto in referenced mode unless you're using two photo organiser
    If disk space is an issue, you can run an entire iPhoto Library from an external disk:
    1. Quit iPhoto
    2. Copy the iPhoto Library as an entity from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    If you're concerned about accessing the files, There are many, many ways to access your files in iPhoto:
    *For Users of 10.5 and later*
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    *For users of 10.4 and later* ...
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. However, if you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    *If you want to access the files with iPhoto not running*:
    For users of 10.6 and later:
    You can download a free Services component from MacOSXAutomation which will give you access to the iPhoto Library from your Services Menu. Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and later:
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    Regards
    TD
    Message was edited by: Terence Devlin

Maybe you are looking for