Creating 9i Designer Repository using SCM in 10g Database

Hi, Can I create a 9i Designer repository (using SCM) in a 10g database ?
Thanks,
Purav

Hi,
You can find the documentation at the following location:
http://www.oracle.com/technology/products/designer/supporting_doc/des10g_9045/cmnhlp72/rep_insgde/igttl_9i.htm
Thanks.

Similar Messages

  • Can 10G express be used to create an application for use with a 10G instanc

    Hi
    Can 10G express be used to create an application for use with a 10G instance? I am new to Oracle 10G. I like the interface for creating applications, maintaining users, etc. Can this tool be pointed at a regular instance of 10G so that applications can be created against a regular 10G database not the express database?
    Can PL/SQL proceedures that are created in 10G express also be migrated to a 10G database?
    Thanks in advance
    Dean-O

    Can 10G express be used to create an application for use with a 10G instance?Yeah, that's the whole point from a marketing perspective ;)
    Can this tool be pointed at a regular instance of 10G so that applications can be
    created against a regular 10G database not the express database?Yes but it's a different version. Check out:
    http://www.oracle.com/technology/products/database/application_express/index.html
    Can PL/SQL proceedures that are created in 10G express also be migrated to a 10G database?Yes they can!
    ~Jer

  • The connection has failed while creating a New Repository using Oracle BI 11g Administration Tool

    hi
    In the BI Administration Tool when i try to create a “New Repository…” faced The connection has failed I try all of these solutions but dident work..
    1-configured my “System DSN"
    2-enter “TNS_ADMIN” for the “Variable Name” field and for the “Variable Value” enter the location of my OBIEE
    3-copy the sqlnet and tnsnames.ora files into E:\obiee11gtmt\Oracle_BI1\network\admin and E:\obiee11gtmt\oracle_common\network\admin
    4- put this in DSN with connection type OCI 10g/11g (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP) (HOST = IP Addr)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = ORCL) ))
    please help me
    regard

    1.Place tnsnames.ora file in the following paths,
    E:\obiee11gtmt\oracle_common\network\
    E:\obiee11gtmt\Oracle_BI1\network\admin
    2.Navigate to
    E:\obiee11gtmt\instances\instance1\bifoundation\OracleBIApplication\coreapplication\setup\
    Open user.sh file in a notepad
    Set Tns_names paths as shown below with your tnsnames.ora file’s location,
    set TNS_ADMIN=C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\ADMIN
    The above path is of your installed Database tnsnames.ora file
    I guess you didnt do this step. This will solve your issue.
    Restart all the services
    If helpful, please mark the answer.
    Srikanth

  • Unable to create the Master repository Using ODI 10.1.3.5.0 on windows

    Hello,
    I have installed the ODI 10.1.3.5.o on windows environment. I am using sql server 2008.
    When i am trying to create the master repository it was not creating, When i am tested the connection it was successfull, but when i am click on OK it not performing.
    I have down loaded Microsoft SQL Server JDBC Driver 3.0 and copied sqljdbc4.jar in to D:\OraHome_1\oracledi\drivers.
    And also installed java 6 on my machine.
    Please help me.
    Regards,
    Krishna
    Edited by: 897734 on Dec 14, 2011 3:03 AM

    Hi krishna,
    Check *3.2 Creating Repository Storage Spaces* in below URL, Hope this may helps you
    http://docs.oracle.com/cd/E21764_01/integrate.1111/e12643/admin_reps.htm
    Regards,
    Phanikanth

  • Unable to create File System Repository using Network Path

    Hi All,
    I am trying to create a File System Repository.
    I created a networkpath and windows system and used the same while creating File Repository according to the steps in help.
    With out using Networkpath(i.e.,If I use IP address,I am able to create File System Repository).
    But with the network path,it throws the following error as seen in Component Monitor.
    <b>Startup Error:    The localroot does not exist: C:\usr\sap\IGTE\j2ee\j2ee_00\cluster\server\NWP_001
    My network path is NWP_001
    </b>
    Did any one face this problem?
    Any help please........
    Rgds,
    Santhosh

    Hi,
    I am getting the same error even if I replace(\) by slashes(/).
    I tried on EP6SP12 as well as EP6SP2 and got the same error on both.
    The repository is searching for a folder named with
    n/w path on the portal server itself(i.e, it is searching in the following folder
    <b>C:\usr\sap\IGTE\j2ee\j2ee_00\cluster\server\NWP_001
    My network path is NWP_001</b>),instead of searching on the remote system.
    Can any one help me in solving the problem
    Thanks in Advance.
    Rgds,
    Santhosh

  • Help to design repository using BerkeleyDB

    Hi,
    I am trying to design a repository using BerkeleyDB but not sure what will be the best design.
    Here is the scenario:
    I have one Schema under which we can multiple classes of Java Objects to be stored.
    Eg: Under Schema1, we can store any of the objects from three classes A, B, C.
    Alll have the same schema.
    I want to persist all the objects of any of the class A, B, C coming in the system.
    Key is the time at which they enter the system.
    So key is time and value is Instance of any of the object A, B,C.
    So we can have duplicates i.e. multiple instances coming at the same time.
    A,B,C are POJO Java Objects so I don't have control over their implementation.
    From my understanding
    Schema should map to the Environment.
    Within one Environment, we can have different databases for each A, B, C since they have different class definitions.
    What should I use DPL or Base APIs?
    If using Base API's how to write MyTupleBinding because the definition of the class can be available after system gets configured.
    Is there any way to write a generic TupleBinding class which can convert any Java Object to an Entry and vice versa.
    If using DPL how to define Entity, Persitent Entities etc.
    User can query on any column of a POJO object so we have no information about secondary keys.
    Please provide me your suggestions.

    Hi,
    Key is the time at which they enter the system.So key is time and value is Instance of any of the object A, B,C.
    So we can have duplicates i.e. multiple instances coming at the same time.>
    Instead of using the time only as the key, use a two part key {time, sequence} to make the key unique. That will give you a unique primary key and also allow you to lookup records by time using the first part of the key.
    A,B,C are POJO Java Objects so I don't have control over their implementation.Can you add annotations to these classes? Are they Serializable?
    From my understandingSchema should map to the Environment.
    Within one Environment, we can have different databases for each A, B, C since they have different class definitions.>
    Yes.
    What should I use DPL or Base APIs?If you can add annotations to the classes, use the DPL. If not, and the classes are Serializable, you could use SerialBinding. Otherwise, you'll have to write tuple bindings.
    If using Base API's how to write MyTupleBinding because the definition of the class can be available after system gets configured.Is there any way to write a generic TupleBinding class which can convert any Java Object to an Entry and vice versa.>
    The only way to do that is use Java reflection to discover the fields in the classes. This is a lot of work, but is how such things are done in Java.
    If using DPL how to define Entity, Persitent Entities etc.If you can't add annotations, you could write a custom subclass of EntityModel. But that's an advanced use case, and it won't work if there is no unique primary key field in each class.
    User can query on any column of a POJO object so we have no information about secondary keys.You can do one of the following:
    1) Define no secondary keys and iterate over all records in a database when doing a query (queries are expensive if there are lots of records).
    2) Define every field as a secondary key (writes are expensive and lots of disk space is used if there are lots of fields).
    3) Try to dynamically determine when queries are frequently done on a field, and dynamically add a secondary key at that time (lots of work to implement).
    Please provide me your suggestions.Please answer my questions above and then I'll suggest an approach. If the POJO classes are required to be Seriallizable, your task will be greatly simplified.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Installation of Design Repository using OWB Rel 1

    I installed OWB Rel 1 on server and then try to create Design Repository.
    It did not work as error appears on first screen " Can not connect o database - verify connect information". I provided correct information (sys user/password, host name, service name, port number) and tried different things e.g. instead of host name ip address etc. But result was same.
    any body can help me to sort this out?

    Hi,
    i´m not sure but i think you must give a connect string, in an explicit sequence.
    Well, maybe you better have a look at the Guides of Installation.
    Watch there: http://www.oracle.com/technology/documentation/index.html
    Regards
    Lone Wolf

  • Designer Repository Migration: 9i to 10g

    Hi All,
    We need to migrate designer repository from oracle 9i to oracle 10g.
    Please give us the steps to do it.
    Thanks in advance.
    Regards,
    Ateet

    Please follow :
    http://www.oracle.com/technology/products/designer/supporting_doc/des10g_9046/cmnhlp72/rep_insgde/igrepos_904.htm#UpgradingAnExistingRepository
    http://www.oracle.com/technology/products/designer/documentation.html
    Regards
    Rajesh

  • How to create tshirt design tool using flex

    hi all,
    i want to create a tshirt design tool using flex,user can customize using this tool to create his tshirts and designs,
    how to get the layouts and requiremnts in flex?
    if any useful suggesion please share guys,
    cheers,
    B.venkatesan.

    Shanila,
    I cannot open the document reference you provided. However, in my view, a workflow design document is no difefrent than any other technical design documen (TDD)t. It may have few different sections to enumerate the process and actual steps.
    I have always used a standard TDD, per my client templates, and then added the sections needed to list the workflow specific items.
    Prasanna Adavi,PMP,MCTS,MCITP,MCT TWitter: @prasannaadavi Blog: http://www.prasannaadavi.com

  • How to the find the Delete records/Statement used in Oracle 10g database?

    Hi all,
    I am Using Oracle 10g Database release 2 on Windows 2003 Server Enterprise Edition... Last week One of my user has deleted important records from my database,i need to find who did this... is there any way to find out ...Please Advice me ....One More thing i have not enabled the Auditing features in My database .....
    Thank You
    Shan

    Rajesh Lathwal wrote:
    Use log miner ..
    Regards
    RajeshEven with that, if he wants to know WHO, he will have to have previously enabled extended logging ....

  • Can I create 6i designer/developer tables on local 9i database

    I recently installed a new 6i developer on a P4 xp pro system. The 8i database wasn't installed, but a lot of 8i files were. When I tried the same install on my home Win2000 system a fully populated 8i database was installed.
    On the xp system I have a 9i personal Oracle database. Can I install the 6i designer/developer scripts on the 9i database or do I have to create an 8i database? Are there any pitfalls?
    I have recieved conflicting opinions on this. I am hoping someone can confirm this - one way or the other. If possible, could you refer me to a document on how to do this.
    Thanks
    Glenn

    Sorry, the documentation included with the developer software has dates of 2001. I just found the newer Nov 2003 docs on the web.

  • Using SCM with 10g developer suite

    i am using Oracle SCM utilities with 10g developer suite. can any body tell me that is there any way-out, or mechansim exists so that i can add existing coded objects in the database (e.g. procedures, functions, or table definitions) into the repository, and can check-out those objects...make the changes in them, and then check-in back, and SCM repository automatically maintains the history for those database objects (procedures, functions). i don't want to use any designer tool for this purpose. i want to make changes at the code level and want that version history be automatically maintained. tell me that whether oracle SCM can do this or it works only with the definitions created through oracle designer. Or any other alternative solution will also be highly appreciated.
    thanks

    Alibaba
    Thanks for your response, it was my mistake in having typoed in bad host name in runtime preference.
    Thx again for your time, the forms are running now.

  • Want to create flash design websites using creative suite cs5.5/beginner

    Hello everyone! I would really like to learn how to create a great flash design website. I already have website hosting with 2 different companies for two different websites that I have not added content to yet. But I want to add my own templates and and custom feel , design and graphics to and I want it to be great! I have downloaded the dreamweaver free trial and I am seriously considering purchasing Adobe creative suite cs5.5 like tomorrow along with the tutorial that has to be purchased separately. I am a beginner to creating websites and I would really appreciate it if someone could point me in the right direction or let me know if I am already headed there by purchasing the complete tutorial for cs5.5. Does any one know if I will be making a smart move?

    I suggest a visit to Lynda.com. Check out the video training there. This link will get you a one week trial. http://bit.ly/fcGpiI
    Bob

  • Which ojdbc14.jar JDBC driver to use for Oracle 10g database

    When ODI is installed there seems to be an Oralce JDBC driver in place in the drivers folder (ojdbc14.jar).
    When we connect to an Oracle datastore and point to a table and use the 'reverse' function to populate the columns - it sort of works OK but does not bring back the datatypes properly. This is found to be when the Oracle table has UNICODE character datatypes NCHAR and NVARCHAR. If a table has CHAR and VARCHAR it is all OK but any table that has UNICODE datatyoe has a problem.
    Is this likely to be the JDBC driver ?
    We have tried replacing this ojdbc14.jar with the older classes12 and this, as expected, did not resolve the issue.
    We then tried replacing it with the latest 10.2.0.4 ojdbc14.jar but again no difference.
    Does anyone have any experience with Oracle JDBC drivers and what release level to use - and using against UNICODE datatypes in tables ?
    Regards

    Our problem is that when we use 'reverse' to populate the columns from a physicla table in an Oracle database - ODI is obviously 'seeing' the ORacle table and is correctly understanding the columns in the table and defining them in it's model - but wherever there is a column with a datatype in the ORacle database of NCHAR or NVARCHAR it fails to populate the datatype or the 'length' of these columns. If I manually try to specify the datatype these 2 unicode data types do NOT exist in the pull down list of datatypes.
    I see what you are asking - if these datatypes are actually defined as datatypes within the actual technology - I cant access my lab right now but will check as soon as I can. Thanks for the suggestion.

  • Do we hav to create a separate repository for Designer Repository??

    Hi
    I have created a repository using a Repository Assistant. Do we have to create a separate repository for Designer Repository??? If so, how do we create a Designer Repository??
    Message was edited by:
    user536189

    Hi,
    The basic installation of OWB paris makes a repository owner and a repository user for you.
    This owner serves as the design repository owner as well as the runtime repository owner.
    For creating your mappings and deploying and executing them you just need to associate a target schema with the repository owner which you can do from the repository assistant from within the design center.
    I hope you are talking about OWB paris and I have been able to guess your question correctly.
    Regards
    -AP

Maybe you are looking for