Shell Creation Modify Control Files with Exclude Table Information  Step er

I am try to create Shell using TDMS  I  am gettingbelow error while executing step Modify Control Files with Exclude Table Information.
I am getting error saying that    //No such file or direcroty  Message no.: CNV_TDMS_13_SHELL000
I am using NFS common mount as my install directory between CI & DB, please can you help me.
Please can help me.
Thanks
Ramesh

It appears that the directory for shell installation is not accessible from CI (TDMS execution server). Do the following -
Copy the entire Shell installation directory (having TPL files) temporarily to the CI app. server and maintain the path of this directory in the TDMS package.
Then execute the activity which is currently failing. Most probably it will finish successfully.
Now copy the DDLORA.TPL file from this directory to the original directory on the DB app server and continue with your exports.
I hope this helps.

Similar Messages

  • Installation 11.5.10.2 failed with creation of control file.

    The log information will be written to
         "f:\oracle\alivisdb\9.2.0\appsutil\log\ALIVIS_dba\adcrdb_ALIVIS.txt"
    ECHO is off.
    ECHO is off.
    Creating the control file for ALIVIS database ...
    ECHO is off.
    SQL*Plus: Release 9.2.0.6.0 - Production on Mon Sep 10 14:14:25 2007
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    ERROR:
    ORA-01041: internal error. hostdef extension doesn't exist
    SQL*Plus: Release 9.2.0.6.0 - Production on Mon Sep 10 14:15:08 2007
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    ERROR:
    ORA-01041: internal error. hostdef extension doesn't exist
    ORA-24324: service handle not initialized
    ORA-01041: internal error. hostdef extension doesn't exist
    ERROR:
    ORA-01041: internal error. hostdef extension doesn't exist
    ORA-24324: service handle not initialized
    ORA-01041: internal error. hostdef extension doesn't exist
    SP2-0640: Not connected
    SP2-0640: Not connected
    SP2-0640: Not connected
    SP2-0640: Not connected
    ORA-24324: service handle not initialized
    ORA-01041: internal error. hostdef extension doesn't exist
    ERROR:
    ORA-01041: internal error. hostdef extension doesn't exist
    ORA-24324: service handle not initialized
    ORA-01041: internal error. hostdef extension doesn't exist
    SP2-0640: Not connected
    SP2-0641: "EXECUTE" requires connection to server
    ORA-24324: service handle not initialized
    ORA-01041: internal error. hostdef extension doesn't exist
    ERROR:
    ORA-01031: insufficient privileges
    ORA-01031: insufficient privileges
    SP2-0640: Not connected
    SP2-0640: Not connected
    SP2-0640: Not connected
    SP2-0640: Not connected
    SP2-0640: Not connected
    ECHO is off.
    Checking for errors ...
    ECHO is off.
    The database has not been successfully created. Shutting down the instance...
    SQL*Plus: Release 9.2.0.6.0 - Production on Mon Sep 10 14:15:19 2007
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    ERROR:
    ORA-01041: internal error. hostdef extension doesn't exist
    adcrdb.cmd exiting with status 1
    "Error returned while creating control files"
    Dear All,
    Tried installing 11.5.10.2 in winxp .. all the pre-requisties met and at the second stage ,Rapidwizard got stucked with the following error :
    There was an error while running the command - f:\oracle\alivisdb\9.2.0\temp\ALIVIS_dba\adrundb.cmd APPS APPS
    The process tried to write to a nonexistent pipe.
    The process tried to write to a nonexistent pipe.
    RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running Database Install Driver for ALIVIS instance
    I've been assigned the user who has administrative privileges on the domain..
    Help out guys..
    Thanks
    Yusuf

    Please see Oracle Metalink Document Oracle Applications 11i Install Fails on Windows when Number of Processors is Greater than 12 Doc ID: Note:433203.1.
    Some extracts of the metalink document,
    To overcome this problem encountered on Windows, please execute the following steps:
    1. Right click on "My Computer" > "Advanced" tab > Click on button "Environment variables".
    2. Edit the value of NUMBER_OF_PROCESSORS from the value which is greater than 12(e.g. in this case 16) to 12. Apply the changes.
    3. Reboot the machine to ensure that the environment variable NUMBER_OF_PROCESSORS is set to the corrected value i.e.12.
    4. Clean the current install.
    5. Check the value of NUMBER_OF_PROCESSORS on the command prompt before the rapidwiz is started :
    echo %NUMBER_OF_PROCESSORS%
    6. Run rapidwiz and finish database(of the Oracle Applications) installation.
    7. Once the Oracle Applications is installed, the value of environment variable NUMBER_OF_PROCESSORS could be reset to its original value.
    Hope it helps.
    Adith

  • Renaming datafiles in control files with database mounted but not open

    Hi,
    I moved a database (physical files) from one server to another. I need to modify the contents of the control files since the directory structure of the servers are not the same (and I can't change that).
    I know I can use ALTER DATABASE BACKUP CONTROLFILE TO TRACE to produce a script that I can than modify and run with the instance started, database mounted but not open, and that will recreate the control files. I don't want to do that.
    I was also told I can modify the datafile entries in the control files by starting the instance, mounting but not opening the database. Then I can issue the (this is the part I need help with) ALTER DATABASE RENAME FILE <file1> to <file2>. When I tried this it complains that <file1> is not found. Obviously the command I used is not the right one,,, what is the right command for what I want to do.
    Thanks,
    Gabriel

    Move all datafiles from one directory to an other without recreate controlfile :
    SYS@DEMO102> select file_name from dba_data_files
      2  union
      3  select member from v$logfile
      4  union
      5  select file_name from dba_temp_files
      6  union
      7  select name from v$controlfile;
    FILE_NAME
    E:\ORACLE\ORADATA\DEMO102C\CONTROL01.CTL
    E:\ORACLE\ORADATA\DEMO102C\CONTROL02.CTL
    E:\ORACLE\ORADATA\DEMO102C\CONTROL03.CTL
    E:\ORACLE\ORADATA\DEMO102C\EXAMPLE01.DBF
    E:\ORACLE\ORADATA\DEMO102C\REDO01.LOG
    E:\ORACLE\ORADATA\DEMO102C\REDO02.LOG
    E:\ORACLE\ORADATA\DEMO102C\REDO03.LOG
    E:\ORACLE\ORADATA\DEMO102C\SYSAUX01.DBF
    E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF
    E:\ORACLE\ORADATA\DEMO102C\TBS102_1.DBF
    E:\ORACLE\ORADATA\DEMO102C\TBS102_2.DBF
    E:\ORACLE\ORADATA\DEMO102C\TEMP01.DBF
    E:\ORACLE\ORADATA\DEMO102C\UNDOTBS01.DBF
    E:\ORACLE\ORADATA\DEMO102C\USERS01.DBF
    14 rows selected.
    SYS@DEMO102> create pfile='E:\oracle\admin\DEMO102\pfile\pfile102.ora' from spfile;
    File created.
    SYS@DEMO102> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.Here, I move all datafiles mentionned above, and modify my pfile for new controlfile directory. Then :
    SYS@DEMO102> startup pfile=E:\oracle\admin\DEMO102\pfile\pfile102.ora
    ORACLE instance started.
    Total System Global Area  272629760 bytes
    Fixed Size                  1288940 bytes
    Variable Size             163579156 bytes
    Database Buffers          100663296 bytes
    Redo Buffers                7098368 bytes
    Database mounted. --Note that we are in mount state
    ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
    ORA-01110: data file 1: 'E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF'
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\USERS01.DBF' to 'E:\ORACLE\ORADATA\demo102\USERS01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\SYSAUX01.DBF' to 'E:\ORACLE\ORADATA\demo102\SYSAUX01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\UNDOTBS01.DBF' to 'E:\ORACLE\ORADATA\demo102\UNDOTBS01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF' to 'E:\ORACLE\ORADATA\demo102\SYSTEM\SYSTEM01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\EXAMPLE01.DBF' to 'E:\ORACLE\ORADATA\demo102\EXAMPLE01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TBS102_1.DBF' to 'E:\ORACLE\ORADATA\demo102\TBS102_1.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TBS102_2.DBF' to 'E:\ORACLE\ORADATA\demo102\TBS102_2.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO01.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO01.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO02.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO02.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO03.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO03.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TEMP01.DBF' to 'E:\ORACLE\ORADATA\demo102\TEMP01.DBF';
    Database altered.
    SYS@DEMO102> alter database open;
    Database altered.
    SYS@DEMO102> create spfile from pfile='E:\oracle\admin\DEMO102\pfile\pfile102.ora';
    File created.
    SYS@DEMO102> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SYS@DEMO102> startup
    ORACLE instance started.
    Total System Global Area  272629760 bytes
    Fixed Size                  1288940 bytes
    Variable Size             163579156 bytes
    Database Buffers          100663296 bytes
    Redo Buffers                7098368 bytes
    Database mounted.
    Database opened.
    SYS@DEMO102> select file_name from dba_data_files
      2  union
      3  select member from v$logfile
      4  union
      5  select file_name from dba_temp_files
      6  union
      7  select name from v$controlfile;
    FILE_NAME
    E:\ORACLE\ORADATA\DEMO102\CONTROL01.CTL
    E:\ORACLE\ORADATA\DEMO102\CONTROL02.CTL
    E:\ORACLE\ORADATA\DEMO102\CONTROL03.CTL
    E:\ORACLE\ORADATA\DEMO102\EXAMPLE01.DBF
    E:\ORACLE\ORADATA\DEMO102\REDO01.LOG
    E:\ORACLE\ORADATA\DEMO102\REDO02.LOG
    E:\ORACLE\ORADATA\DEMO102\REDO03.LOG
    E:\ORACLE\ORADATA\DEMO102\SYSAUX01.DBF
    E:\ORACLE\ORADATA\DEMO102\SYSTEM\SYSTEM01.DBF
    E:\ORACLE\ORADATA\DEMO102\TBS102_1.DBF
    E:\ORACLE\ORADATA\DEMO102\TBS102_2.DBF
    E:\ORACLE\ORADATA\DEMO102\TEMP01.DBF
    E:\ORACLE\ORADATA\DEMO102\UNDOTBS01.DBF
    E:\ORACLE\ORADATA\DEMO102\USERS01.DBF
    14 rows selected.
    SYS@DEMO102> Nicolas.

  • Creation of control file

    Hi friends,
    I want to do homogeneous system copy.
    I want to know the steps in homogeneous copy, and how to create control file from source system for target system.
    And after that what activity is required .
    thanks
    Regards
    Manoj

    hi
    while doing homogeneous copy sap will do some functinalaties through one sql file I think it will take control file backup and recreate it.
    if u want to do manually
    issue command
    sql>alter database backup controlfile to trace;
    look for trace file in udump dir from that file u can recreate controlfile or rename database.
    before doing take complete cold backup of source.
    start process with sap inst
    it will do certain tasks ref in manual
    let me know if u knoe some more inputs
    vinod

  • Creation of control file in Oracle 10g

    Hi,
    I had taken the backup of control file(backup control file to trace) and edited it to change the new location of the datafile.But when i try to create the Control file(Startup nomount,@cntrl.sql) it fails with the following error
    ERROR at line 1:
    ORA-01503: CREATE CONTROLFILE failed
    ORA-01276: Cannot add file
    /oracle/DBS/redolog/DBS/controlfile/o1_mf_2s4ho2n8_.ctl. File has an Oracle
    Managed Files file name.
    how can i recreate it?
    Regards,
    Cherry

    HI,
    what are you actually trying to do...
    relocation of datafile or control file.
    if you want to relocation of data file then go through below link
    http://download-uk.oracle.com/docs/cd/B14117_01/server.101/b10739/dfiles.htm#i1006457
    ORA-01276
    http://www.idevelopment.info/data/Oracle/DBA_tips/Tablespaces/TBS_8.shtml
    hope this helps
    Taj

  • Re:Bursting control file with multiple sub templates

    Hi
    Can any one let me know how to create a bursting control file for multiple sub templates. I.e I have one main template which will invoke other templates. the normal bursting control file which i have created is sending
    an output with no data , but i can see an output in the concurrent program.
    Thanks in advance.

    Add it as parameter in your xml file.

  • SQL Loader and control files with WHEN clauses

    Hi All :)
    Want to load data into 3 tables that are defined like so:
    SQL> desc PARENT
    Name NULL? Type
    PKey.........NOT NULL....Number
    Blah_One.................VARHCAR2(50)
    Blah_Two.................VARHCAR2(50)
    SQL> desc CHILD_ONE
    Name NULL? Type
    PKey.........NOT NULL....Number
    FKey.....................Number -- this is used as a Foriegn key to PARNET
    Bleep_One................VARHCAR2(50)
    SQL> desc CHILD_TWO
    Name NULL? Type
    PKey.........NOT NULL....Number
    FKey.....................Number -- this is used as a Foriegn key to PARNET
    Bleep_Two................VARHCAR2(50)
    I have a flat file that looks like this
    PARENT|BLAHBLAH|Blahba|
    ONE|BLEEP-IT|
    ONE|BLEEP-BLOP|
    TWO|TWOBLEEP|
    TWO|OR NOT TO|
    TWO|BLEEP
    PARENT|AbbaDabaDooo|whaaaaa|
    TWO|waka=waka|
    .... so I worte a control file that looks like this ....
    LOAD DATA
    APPEND
    INTO PARENT
    WHEN (tableName='PARENT')
    FIELDS TERMINATED BY '|' TRAILING NULLCOLS
    tableName FILLER,
    BLAH_ONE,
    BLAH_TWO,
    PKey "PARENT_SEQ.nextval"
    INTO CHILD_ONE
    WHEN (tableName='ONE')
    FIELDS TERMINATED BY '|' TRAILING NULLCOLS
    tableName FILLER,
    BLEEP_ONE,
    PKey "CHILD_ONE_SEQ.nextval",
    FKey "PARENT_SEQ.currval"
    INTO CHILD_TWO
    WHEN (tableName='TWO')
    FIELDS TERMINATED BY '|' TRAILING NULLCOLS
    tableName FILLER,
    BLEEP_TWO,
    PKey "CHILD_TWO_SEQ.nextval",
    FKey "PARENT_SEQ.currval"
    where PARENT_SEQ, CHILD_ONE, and CHILD_TWO
    are SEQUENCES.
    The probelm I am having is that the Fkeys and PKeys
    don't match up????
    Am I mis-using SEQUENCES?
    Should I be using a trigger?
    I am very confused!
    Thanks

    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:6020061915147
    answers this question perfectly

  • SQL*LOADER control file for Multiple Tables

    Dear DBA's
    I am loading data throgh SQL*LOADER in Oracle. I have some problem, While
    Inserting data into multiple table I have created single Control file in
    following way which is giving me error, Data is stored in seprate fileswith
    tablename.dat, So each tables data is stored in seprate .DAT file. So Iwant to
    insert data from single control file taking data from .dat multiple files into
    multiple tables. Is it possible?? or some different method
    Please help me as early as possiable.
    Thanks & Regards
    Shailesh
    CREATE TABLE T1 (
    L1 VARCHAR2(10),
    L2 NUMBER(10),
    L4 NUMBER(10),
    MYDATE DATE);
    CREATE TABLE T2 (
    L1 VARCHAR2(10),
    L2 NUMBER(10),
    L3 LONG,
    L4 NUMBER(10),
    MYDATE DATE)
    CONTROL FILE :-
    UNRECOVERABLE LOAD DATA
    INFILE 't2.dat'
    INSERT INTO TABLE t2
    FIELDS TERMINATED BY ','
    OPTIONALLY ENCLOSED BY '"'
    TRAILING NULLCOLS
    ( l1 char,l2 char,l4 char,mydate date,l3 char(2000000))
    INFILE 't1.dat'
    INSERT INTO TABLE t1
    FIELDS TERMINATED BY ','
    OPTIONALLYENCLOSED BY '"'
    TRAILING NULLCOLS
    ( f1 char,f2 char,f4 char))
    T2.DAT
    Raju,14,1,09-NOV-2000,"Has a powerful data parsing,engine which putslittle
    limitation on the format of the data in thedatafile."
    Manu,14,2,09-NOV-2000,"Can load data from multiple datafiles, during the same
    load session. "
    T1.DAT
    Raj,14,1,09-NOV-2000
    Mau,14,2,09-NOV-2000
    null

    Hi,
    I tried to use your control file and got numerous erros.
    try using seperate control files:
    T1.CTL:
    LOAD DATA
    INFILE 'D:\T2.dat'
    INSERT INTO TABLE t2
    ( l1 char,l2 char,l4 char,mydate date,l3 char(20000))
    T2.CTL
    LOAD DATA
    INFILE 'D:\T1.dat'
    INSERT INTO TABLE t1
    ( l1 char,l2 char,l4 char,mydate date)

  • How to mulitplex control files with raid

    I have installed 8i DB server on a HP proliant server machine. Raid 2 is configured on the server machine with windows OS, two hard disks are mirrored.
    It is often recommended to multiplex conrol files and redo log files on multiple hard disk to protect from disk failure.
    how can i do this, as i have 3 logical drives but all they are of same physical device.
    multiplexing control files on different logican drives is same as keeping them in the same default folder.
    Please help making things clear ?????

    1. RAID is all about availability and is not a substitute for duplexing of control files or online redo logs.
    2. It is better to have multiple physical drive (sets) on which to place copies of the control file and online redo logs. That way, any failure of the RAID or file system will still leave you with copies of these vital files.
    3. If you only have logical drives, it is best to place copies on various logical volumes. This way, you are (at least) protected from file system failure, corruption, or accidental delete.

  • Creation of control file failed

    Hi all
    when i am trying to create control file my terminal is hanging on following stage
    SQL> @/u02/ORACLE/orcldb/9.2.0/dbs/contrl.sql
    ORACLE instance started.
    Total System Global Area 581506668 bytes
    Fixed Size 452204 bytes
    Variable Size 402653184 bytes
    Database Buffers 167772160 bytes
    Redo Buffers 10629120 bytes
    54
    and in alert log file no error are given

    Hi
    Thanks for your reply
    i am pasting whole sql file here please check it and tell me if any error are there ?
    STARTUP NOMOUNT
    CREATE CONTROLFILE SET DATABASE "ORCL" NORESETLOGS ARCHIVELOG
    -- SET STANDBY TO MAXIMIZE PERFORMANCE
    MAXLOGFILES 32
    MAXLOGMEMBERS 5
    MAXDATAFILES 512
    MAXINSTANCES 8
    MAXLOGHISTORY 7260
    LOGFILE
    GROUP 1 (
    '/u02/ORACLE/orcldata/log01a.dbf',
    '/u02/ORACLE/orcldata/log01b.dbf'
    ) SIZE 10M,
    GROUP 2 (
    '/u02/ORACLE/orcldata/log02a.dbf',
    '/u02/ORACLE/orcldata/log02b.dbf'
    ) SIZE 10M
    -- STANDBY LOGFILE
    DATAFILE
    '/u02/ORACLE/orcldata/system01.dbf',
    '/u02/ORACLE/orcldata/system02.dbf',
    '/u02/ORACLE/orcldata/system03.dbf',
    '/u02/ORACLE/orcldata/system04.dbf',
    '/u02/ORACLE/orcldata/system05.dbf',
    '/u02/ORACLE/orcldata/ctxd01.dbf',
    '/u02/ORACLE/orcldata/owad01.dbf',
    '/u02/ORACLE/orcldata/a_queue02.dbf',
    '/u02/ORACLE/orcldata/odm.dbf',
    '/u02/ORACLE/orcldata/olap.dbf',
    '/u02/ORACLE/orcldata/system10.dbf',
    '/u02/ORACLE/orcldata/system06.dbf',
    '/u02/ORACLE/orcldata/portal01.dbf',
    '/u02/ORACLE/orcldata/system07.dbf',
    '/u02/ORACLE/orcldata/system09.dbf',
    '/u02/ORACLE/orcldata/system08.dbf',
    '/u02/ORACLE/orcldata/system11.dbf',
    '/u02/ORACLE/orcldata/undo01.dbf',
    '/u02/ORACLE/orcldata/a_txn_data01.dbf',
    '/u02/ORACLE/orcldata/a_txn_ind01.dbf',
    '/u02/ORACLE/orcldata/a_ref01.dbf',
    '/u02/ORACLE/orcldata/a_int01.dbf',
    '/u02/ORACLE/orcldata/a_summ01.dbf',
    '/u02/ORACLE/orcldata/a_nolog01.dbf',
    '/u02/ORACLE/orcldata/a_archive01.dbf',
    '/u02/ORACLE/orcldata/a_queue01.dbf',
    '/u02/ORACLE/orcldata/a_media01.dbf',
    '/u02/ORACLE/orcldata/a_txn_data02.dbf',
    '/u02/ORACLE/orcldata/a_txn_data03.dbf',
    '/u02/ORACLE/orcldata/a_txn_ind02.dbf',
    '/u02/ORACLE/orcldata/a_txn_ind03.dbf',
    '/u02/ORACLE/orcldata/a_txn_ind04.dbf',
    '/u02/ORACLE/orcldata/a_txn_ind05.dbf',
    '/u02/ORACLE/orcldata/a_ref02.dbf'
    CHARACTER SET US7ASCII

  • HOW TO: Open SQL Developer from a batch file with specific tables opened

    I use SQL Developer daily as I develop database intensive programs.
    ** Question **
    How can I define a specific configuration of tabs (i.e. tables, procedures, etc) to be opened upon startup of SQL Developer?
    For example, creating a .BAT file to open SQL Developer with a specific set of table tabs already opened. This will save me the time every morning I use to open SQL Developer and configure all the tables I need opened.
    NOTE: I have tried various options of appending a table name to a command line starting sqldeveloper.exe. For example: ..\sqldeveloper.exe mydatabase.mytable. However, this only opens a worksheet tab with the name "mydatabase.mytable" but does not open my actual table.
    Any help will be appreciated.
    - Gary Davis

    what version are you using? Sql Dev 1.5?
    Not an exact answer, but you could try using Table FILTER
    click on your connection
    right button on TABLES
    click apply filter
    as for your question, check out:
    Re: EA1 - Automatically open connection list at startup?
    or
    SQL Developer

  • Modifying XML files with JDOM

    Hi:
    I've been trying to get up to speed with JDOM, and while it seems pretty intuitive, I've been having a problem w/ modifying XML documents.
    Namely, once I get a Document object from a (skeleton) XML file, do changes made to the Document object through, say, addContent() propagate to the original file? My gut feeling is no, although this was certainly what I had expected initially.
    Here's a code fragment of what I had tried to do to populate a barebones XML file:
                   Document doc = builder.build(output);
              // add 100 elements, all the same
              for (int count = 0; count < 100; count++)
                   Element curr = new Element("book");
                   // create child nodes for book
                   Element title = new Element("title");
                   title.addContent("Book " + (count + 1));
                   Element author = new Element("author");
                   author.addContent("Author " + (count + 1));
                   Element price = new Element("price");
                   price.addContent("Price " + (count + 1));
                   curr.addContent(title);
                   curr.addContent(author);
                   curr.addContent(price);
                   doc.getRootElement().addContent( curr );
              }

    Mikael,
    This sounds like one of the many quirks (perhaps bugs) related to how FrameMaker handles non-FM files in books. The current book model doesn't play well with XML files as chapters and this seems like yet another problem. Apparently, if an xref does not target another .fm file in the book, Frame assumes that the target file is not in the book and therefore will not be in the book PDF.
    There have been discussions here about this in the past. The solution that I use is to run an API client before publishing that converts all XML files to .fm files, and redirect all xrefs appropriately. Then, book features work as expected and PDFs come out as normal. This is not feasible, however, without the automation from the API client.
    There may be some who would say that the best approach is to use XML and books the way that the designers did account for... that is, the whole book becomes an XML document with entity references to the separate chapters. In my work, though, this model was not appropriate... rather, I needed a binary FM book to act like a book, except with XML files as chapters. So, I think I understand your situation.
    Is API programming or FrameScript an option for you? I think it may be the only way to get what you are looking for.
    Russ

  • Modify hbm file with DOM

    I modified hbm mapping using DOM, I read and save data in hbm, when read
    file mapping, that nodes in my Document xml is with default attributes which tags contained, example:
    Tag hibernate-mapping was saved attributes as default-lazy="true|false"
    auto-import="true|false" as soon as.
    I use DTDResolverEntity that is in hibernate package as DOM entity resolver.
    What�s happen when I save new hbm modified?
    Regards.
    fct

    <KG NAME="Exception Handling">
        <K> NAME="Error resisten" MAX="2" </K>
        <K> NAME="Using Finally clause" MAX="5" </K>
    </KG>You seem to be confused about what an attribute is, or perhaps about how empty elements--those with no text and no child elements--are formed.
    KG has the attribute NAME, and two child elements, both K.
    The Child elements K have no attributes and no child elements. Merely text.
    If you can't change that XML, then you'll have to do getText or whatever to get N="Err" Max="2" as a String, and then split() or StringTokenizer that String.
    However, I'd advise changing the XML. (I've abbreviated some of the names in the example becaues I'm lazy. You can of course keep the names you have.) <KG NAME="Exception Handling">
        <K NAME="Error resisten" MAX="2" />
        <K NAME="Using Finally clause" MAX="5" />
    </KG>
    <!-- OR -->
    <KG NAME="Exception Handling">
        <K NAME="Error resisten" MAX="2"></K>
        <K NAME="Using Finally clause" MAX="5"></K>
    </KG>
    <!-- OR -->
    <KG NAME="Exception Handling">
        <K>
            <NAME>Error resisten</NAME>
            <MAX>2</MAX>
        </K>
        <K>
            <NAME>Using Finally clause</NAME>
            <MAX>5</MAX>
        </K>
    </KG>

  • Opening a IDML File with a table and 1000 rows simply hangs

    Hello,
    1. I generate IDML files that consist of a table with (1000 rows*9 columns)  colour formatted cells. When I try to open the file it just hangs at "Open Document".
    So you're probably thinking, there's something wrong with my IDML File?
    2. I "place" an equivalent spreadsheet from Excel, with formatting. It transfers correctly. I save it as a IDML file, when I go to reopen this file,  same problem as above.
    3. In step 2, If I instead save the file as a INDD, the INDD file re-opens correctly & fast.
    Our company catalogue has about 11728 rows * 9 columns.
    I have a strange sense of Dejavu, and it all seems to be pointing to the way INDESIGN handles (or doesn't handle) XML
    http://forums.adobe.com/thread/756449?tstart=0
    thx

    Sorry for the wall of text!!
    Ya, i figured a non indesign solution was the way to go. Hence the LaTeX (Typesetting) + php thing. It didnt need to be in a table, but it needed to appear like a "table" format. Cells with each cell having borders etc and it will eventually go to print.
    IDX!? I'll need to investigate this file format
    Well not necessary to use excel, or tables, since I pull the information out  from a MySQL database anyway. I wanted to use IDML because once the file format is just simple XML and extremely easy to manipulate. My awesome theory was, if it was already in a table format, that would make it even easier to manipulate - all i would need to do is write php code to add new rows (Directly into the file). A designer could make the IDML file template file for us, and I could write a script that populates the data directly into it.
    We tried other methods such as merging XML into tag placeholders but while that worked fantastically on small amounts of data it grinded to a halt+crash on large amounts of data.
    Ideally we wanted designers to make a template, and I.T. to just come along and insert the data accordingly. It also needed to be perfectly print accurate without alot of messing around. XSLT would be an interesting alternative, but our designers are again not very XSLT / EXCEL/ XML / X-Anything savvy. It would still need to be a programmers nightmare to get it to appear correctly (eg. mine).
    Thanks for pointing out additional alternatives! There are some good things I had not considered.
    Although I have found some additional benefits using LaTeX; Automatic Index, and table of contents  (Sweet!) - it also handles any required text wrapping.
    I think I'm flagging this thread as more of a bug thread than a request for a solution
    We were looking into purchasing indesign server for some future endeavours but if I have no confidence in the desktop version of indesign, how can I be assured that the server version of indesign wont just cause the company more headaches down the line
    thX!! awesome

  • Avoid creation of log file for external table

    Hi
    This script is creating log file in the ext directory. How to avoid it. Can you specify the syntex.
    Thanks alot.
    Bhaskar
    CREATE TABLE datfiles_list
    (file_name varchar2(255))
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY ext_dir
    ACCESS PARAMETERS (RECORDS DELIMITED BY NEWLINE)
    LOCATION ('datfiles_list.txt')
    );

    Example
    CREATE TABLE datfiles_list
    (file_name varchar2(255))
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY ext_dir
    ACCESS PARAMETERS (RECORDS DELIMITED BY NEWLINE NOLOGFILE)
    LOCATION ('datfiles_list.txt')
    );

Maybe you are looking for

  • Workbook Printing Issues???

    Most of the clients work on Discoverer Plus so that they can develop & manage workbooks. But when it comes to printing Plus is missing a vital feature of Print Preview. I checked its available in Desktop version & Viewer but why its missing in Plus??

  • Rearranging Pages Specifically and Automcatically for Printing

    So i've written a few ebooks and now after some time I decided that I would like to print them and bind them. I see that I have an option to print as a booklet in printing options but that is not how I want to print my books, since in that case they

  • T60p after pressing Fn + blue key icon will not fade out

    The icon at the borrom center of the screen will not go away. As soon as I select Fn +brightness or Fn + sound, etc the little icon at the bottom of the screen stays forever. Re-booting and the latest updates don't help and I can't find a setting for

  • HT204150 The latest apple update erased all my contacts! Can anyone help me please?

    The latest apple update erased all my contacts

  • Apple Works Data Base Replacement

    Recently got a MacBook Pro going from 10.6.8 to 10.8.3.  I had used the data base program in Apple Works for MANY things.  I was told I would need to buy iWorks, but I can't see that it has a data base program.  Any suggestions would be greatly appre