Files in assistants/dbca/templates

The files in $ORACLE_HOME/assistants/dbca/templates (on 9i) appear to be pre-built, template, databases.
Data_Warehouse.dfj
Transaction_Processing.dfj
I'm assuming these are ok to remove.. I will never use them.
Am I correct? Seems a bit of a waste of space for something I'll never use.
Regards,
SMF 8)

Hello,
My mistake, the files are *.dfj as you say.
I am using Oracle 9i on a Windows server. I will look into the files on the disks and i will check if any of my colleagues have these files in thier systems too.
Thanks again.
I don't know what may have occurred to delete them!!!

Similar Messages

  • Any different between the dbca templates

    i use dbca to create db on RAC, i see many different template file in $ORACLE_HOME/assistants/dbca/templates/
    like
    Data_Warehouse.dbc General_Purpose.dbc Seed_Database.dfb
    example01.dfb New_Database.dbt Transaction_Processing.dbc
    example.dmp Seed_Database.ctl
    i do not know .dfb ,.dmp , .ctl ,what 's these use for?

    859340 wrote:
    i use dbca to create db on RAC, i see many different template file in $ORACLE_HOME/assistants/dbca/templates/
    like
    Data_Warehouse.dbc General_Purpose.dbc Seed_Database.dfb
    example01.dfb New_Database.dbt Transaction_Processing.dbc
    example.dmp Seed_Database.ctl
    i do not know .dfb ,.dmp , .ctl ,what 's these use for?DBCA uses patterns, or otherwise called Templates, which create either a new database with existing patterns or a pattern itself based on an existing base. The following are the template files that DBCA can create:
    •.dbc - Database Clone (for a new database)
    •.dbt - Template Database (for an existing database)
    These templates, which are in the form of XML files, contain information about the database including database options, init.ora parameters, and storage attributes (datafiles, tablespaces, controlfiles and redologs).
    The demo templates such as Data_Warehouse.dbc, General_Purpose.dbc, Transaction_Processing.dbc, and New_Database.dbt are available at the following location:
    ORACLE_HOME/assistants/dbca/templates
    source:-http://download.oracle.com/docs/cd/B16240_01/doc/em.102/e14500/appdx_creating_db_templates.htm
    example.dmp -->It is a template for creating a Default Schema's with Data including the SYS
    refer:-Re: Issue extracting Oracle's example.dmp
    The datafiles for the seed database are stored in compressed RMAN backup format in a file with a .dfb extension. The seed database control file is stored in a file with .ctl extension. (This file is needed only when storing datafiles in Automatic Storage Management (ASM) disk groups or as Oracle managed files.) The .dbc file contains the location of the seed database datafiles and contains the source database name used to mount the control file.
    source:-http://download.oracle.com/docs/cd/B28359_01/server.111/b28301/install003.htm#BABEGFCG

  • DBCA templates - PGA and SGA using "percentageMemTOSGA" parameter

    Hi all,
    I am trying to configure a DBCA template to perform silent database creations on servers at our client sites. The amount of RAM could vary from server to server. For this reason, I am specifying the following parameters:
    customSGA=false
    percentageMemTOSGA=70In principle, this works pretty well - my DB is created with a suitable value for SGA_TARGET based on the RAM available on the server. However, the value that it uses for PGA_AGGREGATE_TARGET is too small for our needs. From experience, we can get by with a smaller SGA, but we need a relatively large PGA.
    I have tried specifying the parameter "pga_aggregate_target" in the template (and thus trying to "override" the decision of DBCA) but DBCA ignores my "hard-coded" value for this and sets pga_aggregate_target according to (presumably) some calculation based on:
    - The amount of RAM available
    - The value of "percentageMemTOSGA"
    - Some "other" value which tells DBCA how to divide up the %age memory it will take between SGA and PGA
    So, my question is:
    Does anybody know how to effectively use both "percentageMemTOSGA", and:
    EITHER:
    * tell DBCA how to split the memory that it will use from RAM (in this case 70%) between pga_aggregate_target and sga_target (some parameter maybe like "percent_to_pga" and "percent_to_sga")
    OR (not as useful but better than no control):
    * specify explicitly a value (or percentage) for pga_aggregate_target, but leave the value of sga_target to be decided based on the percentageMemTOSGA
    I hope I've explained that well enough...
    Regards,
    Ados

    I've checked the help for dbca (I'm currently running from the command prompt in "silent" mode) and don't see anything about recording the creation - how would I do that? Or are you referring to using the GUI, creating a database, and then saving the template? If it's that, that's what I did first, then editing the template for my tests - I don't see the parameter(s) that I'm looking for in the template.Ados,
    I did the same what you did. Run dbca in GUI mode and generate template only now in template file I see there is a parameter to set these value. For your reference I am posting the content of that file:
    <?xml version = '1.0'?>
    <DatabaseTemplate name="orcl" description="" version="10.2.0.3.0">
    <CommonAttributes>
    <option name="ISEARCH" value="false"/>
    <option name="OMS" value="false"/>
    <option name="JSERVER" value="true"/>
    <option name="SPATIAL" value="true"/>
    <option name="ODM" value="true">
    <tablespace id="SYSAUX"/>
    </option>
    <option name="IMEDIA" value="true"/>
    <option name="XDB_PROTOCOLS" value="true">
    <tablespace id="SYSAUX"/>
    </option>
    <option name="ORACLE_TEXT" value="true">
    <tablespace id="SYSAUX"/>
    </option>
    <option name="SAMPLE_SCHEMA" value="true"/>
    <option name="CWMLITE" value="true">
    <tablespace id="SYSAUX"/>
    </option>
    <option name="EM_REPOSITORY" value="true">
    <tablespace id="SYSAUX"/>
    </option>
    <option name="HTMLDB" value="false"/>
    </CommonAttributes>
    <Variables/>
    <CustomScripts Execute="false"/>
    <InitParamAttributes>
    <InitParams>
    *<initParam name="pga_aggregate_target" value="808" unit="MB"/>*
    <initParam name="processes" value="150"/>
    <initParam name="db_recovery_file_dest_size" value="1024" unit="MB"/>
    <initParam name="control_files" value="(&quot;{ORACLE_BASE}/oradata/{DB_UNIQUE_NAME}/control01.ctl&quot;, &quot;{ORACLE_BASE}/oradata/{DB_UNIQUE_NAME}/control02.ctl&quot;, &quot;{ORACLE_BASE}/oradata/{DB_UNIQUE_NAME}/control03.ctl&quot;)"/>
    <initParam name="sga_target" value="1536" unit="MB"/>
    <initParam name="compatible" value="10.2.0.3.0"/>
    <initParam name="background_dump_dest" value="{ORACLE_BASE}/admin/{DB_UNIQUE_NAME}/bdump"/>
    <initParam name="job_queue_processes" value="10"/>
    <initParam name="db_name" value="orcl"/>
    <initParam name="user_dump_dest" value="{ORACLE_BASE}/admin/{DB_UNIQUE_NAME}/udump"/>
    <initParam name="dispatchers" value="(PROTOCOL=TCP) (SERVICE={SID}XDB)"/>
    <initParam name="audit_file_dest" value="{ORACLE_BASE}/admin/{DB_UNIQUE_NAME}/adump"/>
    <initParam name="db_domain" value=""/>
    <initParam name="open_cursors" value="300"/>
    <initParam name="db_block_size" value="8" unit="KB"/>
    <initParam name="db_recovery_file_dest" value="{ORACLE_BASE}/flash_recovery_area"/>
    <initParam name="undo_tablespace" value="UNDOTBS1"/>
    <initParam name="core_dump_dest" value="{ORACLE_BASE}/admin/{DB_UNIQUE_NAME}/cdump"/>
    <initParam name="remote_login_passwordfile" value="EXCLUSIVE"/>
    <initParam name="undo_management" value="AUTO"/>
    <initParam name="db_file_multiblock_read_count" value="16"/>
    </InitParams>
    <MiscParams>
    <databaseType>MULTIPURPOSE</databaseType>
    <maxUserConn>20</maxUserConn>
    <percentageMemTOSGA>40</percentageMemTOSGA>
    <customSGA>true</customSGA>
    <archiveLogMode>false</archiveLogMode>
    <initParamFileName>{ORACLE_BASE}/admin/{DB_UNIQUE_NAME}/pfile/init.ora</initParamFileName>
    </MiscParams>
    <SPfile useSPFile="true">{ORACLE_HOME}/dbs/spfile{SID}.ora</SPfile>
    </InitParamAttributes>
    <StorageAttributes>
    <DataFiles>
    <Location>{ORACLE_HOME}/assistants/dbca/templates/Seed_Database.dfb</Location>
    <SourceDBName>seeddata</SourceDBName>
    <Name id="1" Tablespace="SYSTEM" Contents="PERMANENT" Size="480" autoextend="true" blocksize="8192">{ORACLE_BASE}/oradata/{DB_UNIQUE_NAME}/system01.dbf</Name>
    <Name id="2" Tablespace="UNDOTBS1" Contents="UNDO" Size="25" autoextend="true" blocksize="8192">{ORACLE_BASE}/oradata/{DB_UNIQUE_NAME}/undotbs01.dbf</Name>
    <Name id="3" Tablespace="SYSAUX" Contents="PERMANENT" Size="240" autoextend="true" blocksize="8192">{ORACLE_BASE}/oradata/{DB_UNIQUE_NAME}/sysaux01.dbf</Name>
    <Name id="4" Tablespace="USERS" Contents="PERMANENT" Size="5" autoextend="true" blocksize="8192">{ORACLE_BASE}/oradata/{DB_UNIQUE_NAME}/users01.dbf</Name>
    </DataFiles>
    <TempFiles>
    <Name id="1" Tablespace="TEMP" Contents="TEMPORARY" Size="20">{ORACLE_BASE}/oradata/{DB_UNIQUE_NAME}/temp01.dbf</Name>
    </TempFiles>
    <ControlfileAttributes id="Controlfile">
    <maxDatafiles>100</maxDatafiles>
    <maxLogfiles>16</maxLogfiles>
    <maxLogMembers>3</maxLogMembers>
    <maxLogHistory>1</maxLogHistory>
    <maxInstances>8</maxInstances>
    <image name="control01.ctl" filepath="{ORACLE_BASE}/oradata/{DB_UNIQUE_NAME}/"/>
    <image name="control02.ctl" filepath="{ORACLE_BASE}/oradata/{DB_UNIQUE_NAME}/"/>
    <image name="control03.ctl" filepath="{ORACLE_BASE}/oradata/{DB_UNIQUE_NAME}/"/>
    </ControlfileAttributes>
    <RedoLogGroupAttributes id="1">
    <reuse>false</reuse>
    <fileSize unit="KB">51200</fileSize>
    <Thread>1</Thread>
    <member ordinal="0" memberName="redo01.log" filepath="{ORACLE_BASE}/oradata/{DB_UNIQUE_NAME}/"/>
    </RedoLogGroupAttributes>
    <RedoLogGroupAttributes id="2">
    <reuse>false</reuse>
    <fileSize unit="KB">51200</fileSize>
    <Thread>1</Thread>
    <member ordinal="0" memberName="redo02.log" filepath="{ORACLE_BASE}/oradata/{DB_UNIQUE_NAME}/"/>
    </RedoLogGroupAttributes>
    <RedoLogGroupAttributes id="3">
    <reuse>false</reuse>
    <fileSize unit="KB">51200</fileSize>
    <Thread>1</Thread>
    <member ordinal="0" memberName="redo03.log" filepath="{ORACLE_BASE}/oradata/{DB_UNIQUE_NAME}/"/>
    </RedoLogGroupAttributes>
    </StorageAttributes>
    </DatabaseTemplate>
    Regards.

  • Install datamining and unicode support using dbca template

    Hi All
    We are creating a 11g release 1 db on linux using the Amazon AMI.
    There is this script in /home/oracle/run_dbca.sh
    And we would like to have uni-code support so we can display Chinese/Japanese or whatever multibyte character.
    We would also like to have DataMining option installed
    How do I modify the *.dbt or *.dbc fille in /u01/app/oracle/product/11.1.0/db_1/assistants/dbca/templates
    do this?
    Is there a documentation for how to write the XML construct for these??
    -Thanks so much for the help!

    xwo0owx wrote:
    Hi All
    We are creating a 11g release 1 db on linux using the Amazon AMI.
    There is this script in /home/oracle/run_dbca.sh
    And we would like to have uni-code support so we can display Chinese/Japanese or whatever multibyte character.
    We would also like to have DataMining option installed
    How do I modify the *.dbt or *.dbc fille in /u01/app/oracle/product/11.1.0/db_1/assistants/dbca/templates
    do this?
    Is there a documentation for how to write the XML construct for these??
    -Thanks so much for the help!It's been so long since I've used one of the stock templates that I don't remember what options are available under them, but it occurs to me that sometimes - particularly for complex requirements - you just have to choose "custom" and walk through the entire wizard, checking very possible option. It's not all that hard.

  • DBCA Template (.dbt) file SYNTAX?

    Hi!
    I am looking to customize a DBCA template file (.dbt) and have searched the 10G documentation and MetaLink with out success on how to do this. I am looking for the syntax / content of these files. Some examples would be great! I am especially interested in setting up my own variables for file locations, etc.
    Thanks in advance!
    Dave Venus

    Hi!
    Thanks for your help. Do you have a specific manual that would help? I can find descriptions of the templates that Oracle provides but nothing on the actual XML entries themselves and the values that can be entered, etc.
    I have looked at some information on response files but have yet to see how they are used to generate a template file.
    Thanks again for your time and help!
    Dave Venus

  • Syntax of DBCA Template files (.dbt)

    Hi!
    I am looking for documentation on the content / syntax of DBCA template (.dbt) files. I have searched the 10G documentation and MetaLink without success. Any help or hints is appreciated. I am especially interested in setting up my own variables for file locations, etc.
    Thanks!
    Dave Venus

    Hi!
    Thanks for your help. Do you have a specific manual that would help? I can find descriptions of the templates that Oracle provides but nothing on the actual XML entries themselves and the values that can be entered, etc.
    I have looked at some information on response files but have yet to see how they are used to generate a template file.
    Thanks again for your time and help!
    Dave Venus

  • Lost Assistants and Templates

    i apparently trashed my assistant and templates folders and can't find my original appleworks disk. any ideas how i can restore appleworks to normal?
    thanks

    The only way that you'll be able to restore your Apple Works files is to reinstall them. You don't mention which computer you have - it may be that Apple Works is available on the bundled disks (or that it's on a bundled disk for one of your older computers). Let me know what computer(s) you have and I may be able to point you to the right disk. Failing that, you may need to turn to eBay.

  • How to call a help file from a WAD Template button

    Hi All
    I need to implement a button in a web template when I press the button it displays another HTML or text file it is mainly on help on the report.
    I am just wondering how to store this HTML or text file in the system and what function to implement in the web template button ti display this text or HTML when the button is pressed.
    Thanks
    Karen

    Hi Karen,
    Please try this out:
    With WAD 3.5 it's easy. You could use javascript function: window.open().
    window.open("/sap/bw/Mime/Customer/.../file.htm","NewWindow","width=750,height=700,left=100,top=100");
    Try using the SCRIPT Item in WAD 7.0. You can use the same code within the SCRIPT Item and call the function which has been defined in the Script Item, in the XHTML part of the Template.
    It may help.
    Or put the file in another web template and on click of a button, the new template opens up and displays the content of the file.
    Not sure though if the latter one would be useful, its just a thought.
    Hope it Helps,
    Regards,
    Amit

  • Steps in converting a xml file with an rtf template to a pdf

    Hey all,
    What are the steps in converting a xml file with an rtf template to a pdf using XML Publisher from command line.
    Thanks
    Ravi

    I don't have any code to do exactly what you wish, but it shouldn't be too difficult and http://www.dadhi.com/2007/06/generate-and-store-pdf-file-in-same.html is a good starting point.
    Paul

  • How to use par file as a iView template

    Hi All,
    I created a PAR file for Hover TLN menu from ne of the blogs in SDN.
    I have uploaded it into EP and could run it sucessfully.
    Now I need to use this par file as a ivew template to host my webdynpro solution is it possible if so how to do it? Basically I downloaded URL Iview par file into nwds and added jsp files as per hover tln menu blog. so i want to use this modified par file to host google page with hover tn menu.
    your help is well appriciated.
    Thanks & Regards,
    Sai krishna
    Edited by: Konchada Sai Krishna on Feb 9, 2009 2:40 AM

    Hi Konchada,
    Check these links....
    http://help.sap.com/saphelp_nw04/helpdata/EN/f5/eb50360e6a11d7b84900047582c9f7/content.htm
    This is a little bit more elaborate..
    http://help.sap.com/saphelp_nw04/helpdata/EN/c4/fd584289e59041e10000000a1550b0/content.htm
    Thanks & Regards,
    Meenakshi

  • 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.

  • Where can i get transport file for bc400's template programs to import

    hi
    where can i get transport file for bc400's template programs to import to miniwas
    would like to do the exercises for tw10 and tw12
    regards
    jan

    Thanks Spencer.
    I downloaded it, etc. and that didn't work. 
    It actually seems to work the same way as before I downloaded that driver, meaning, it prints but leaves it in the "# Document Pending" status.
    Since the wireless HP print server isn't working (No connectMgr.exe file) there's no connection and therefore the doc won't print.
    RE: Print/Server software out of date.  The software was working for many months after originally installing it on this laptop.  Then it just stopped.  Now it can't find the .exe file and that's odd.  
    If I could find that file I could just save it where it needed to be and I'd be good to go.
    Thanks for the help.
    Going to uninstall and reinstall again, just for fun.  I'll report back.
    J

  • Editing Assistants and Templates

    I am using a G4Powerbook with OS X 10.4.9. How on earth do I edit the assistants and templates in "starting points"? Most of these are ugly and just clutter the thing. (I have created a few templates, and they are hard to find because of all the other icons.) Also, how can I get rid of all the icons filling up the "recent items" tab of starting points? I've tried moving them to trash, but usually the message is "can't be moved because item has been deleted." !!
    I can't seem to find the appropriate utility, and Pogue's section on "permissions" in his book seems to be all about iChat, which I don't use.
    Any suggestions?
    Thanks, SwissMaggie

    The templates live in Applications>Appleworks (folder)>Starting Points>Templates and you could either trash them or move them to somewhere else.
    You can automatically clear out the recent items and also the auto-save items: open AppleScript Editor and paste this into it:
    tell application "Finder"
    activate
    select (every item of folder "Recent Items" of folder "Starting Points" of folder "AppleWorks User Data" of folder "Documents" of folder "username" of folder "Users" of startup disk)
    move selection to the trash
    select (every item of folder "AutoSave" of folder "AppleWorks User Data" of folder "Documents" of folder "username" of folder "Users" of startup disk)
    move selection to the trash
    close windows
    end tell
    obviously replacing 'username'. Save as an application somewhere, and then add it to your startup items in Preferences>Accounts so that it will run on each startup.
    Or if you want to remove them manually, the script shows you where they live.

  • Dbca template migration between 10.2.0.1 and 10.2.0.3

    Hello Oracle experts,
    Question: Is there anyway I could upgrade my 10.2.0.1 dbca template to work with 10.2.0.3?
    Background:
    We have bunch of custom dbca seed templates created from 10.2.0.1, which allows rapid setup of database with per-defined data. Recently, the decision is to upgrade to 10.2.0.3.
    In 10.2.0.3, when trying to create database from 10.2.0.1 templates, dbca would always fail at 40%, and Oracle instance terminated with ORA-01092. The database is unable to open after restore. Metalink Doc. 556639.1 clearly suggested dbca templates between these two versions are incompatible.
    So is there any utility we could use to upgrade templates to new patchset? Otherwise the only alternative I could think of is create 10.2.0.1 database for each template, then upgrade to 10.2.0.3, and take another template. This is tons of work given the number of templates we have and their size.
    I truly appreciate any suggestion which would save me few weekends of work.
    Regards

    The difference is HUGE, thats more than 5 years of bugfixes.
    Fixes / enhancements which may cause a notable change in behaviour:
    Note:565424.1 CURSOR_SPACE_FOR_TIME Deprecated in 10.2.0.5 / 11.1.0.7 / 11.2.0.1
    10097176 Different date format in alert log of 10.2.0.5
    6459643 OS username (OS_USER) and hostname in audit records (or SYS_CONTEXT) are not consistent for database links
    6155146 Wrong results from query rewrite with pushed predicate
    6023472 Collection of changes to auditing
    Note:745407.1 Changes to DEFAULT roles
    6322324 OS audit trail should include length of attribute values
    6085625 Wrong child cursor may be executed which has mismatching bind information
    5483301 Cardinality of 1 when predicate value non-existent in frequency histogram
    5082178 Bind peeking may occur when it should not
    4954651 Wrong Results / Dumps from view with select list subquery 
    4279598 Change to default behaviour for keeping LDAP client connections open
    4871035 Disable "row shipping" by default in 10.2.0.2 onwards
    Regards
    Ed

  • Error - The file must match the template type. Upload one file per language

    hi,
    Error - The file must match the template type. Upload one file per language and territory combination.
    i am getting above error while registering RTF template in oracle application e -business suite using XML publisher admistrator responsibility.
    My work :
    i generated xml output using concurrent program.
    for this i used standard PO report,
    the executable name: POXPRPOP.
    i designed the template using MS Office word (for RTF template)
    for this :
    <?start: body?>
    <? for-each: G_Headers?>
    VENDOR:
    <?POH_VENDOR_NAME?>
    <?POH_VENDOR_COUNTRY?>
    PURCHASEORDER NO.
    <?POH_PO_NUM?>
    SHIP TO:
    <?C_COMPANY?>
    <?POH_SHIP_ADDRESS_LINE1?>
    <?POH_SHIP_COUNTRY?>
    BILL TO:
    <?C_COMPANY?>
    <?POH_BILL_ADDRESS_LINE1?>
    <?POH_BILL_COUNTRY?>
    <?end for-each?>
    <?end body?>
    saved this file as "Purchasing.rtf" on desk top
    i registered data definition
    name:purchase order data definition.
    code : short name of concurrent program.
    i try to create template Or register the template in oracle e-business suite.
    name: purchasing template
    code: concurrent program short name
    type : RTF.
    file : browse from desk top (purchasing.rtf)
    language:english
    territory: US.
    but i am getting above error
    could any one help to come out of this problem.
    thank you
    regarding,
    sai krishna@cavaya

    Hi,
    I am getting the error as
    The file must match the template type. Upload one file per language and territory combination.
    I have checked the template name. It doesn't exist already. Please help me.
    Thanks in Advance,
    Jeganathan

Maybe you are looking for