Importing logical and physical model from Sybase power designer/Erwin

Hello,
We have several models created in Sybase Power designer, logical and as a well as physical. Is there a way to directly import models into Oracle designer?
Thank you for your help.
Syed

Hi Syed,
ERwin has a facility to export to Designer 2000. Of course you're probably not using Designer 6.0 or earlier so it's of little use.
I have been looking at a couple of tools for importing from ERwin: Reischmann Informatik’s TOOLBUS Interface for Oracle Designer and ALLFusion ERwin; and Meta Integration Technology’s Meta Integration Model Bridge (MIMB). Neither product is free (nor inexpensive) but if you've got a number of models to convert then the tools seem cheap by comparison. Also, none of the products that I've looked at recreate the actual diagrams (not that I expected them to).
I am leaning towards TOOLBUS as it provides more complete migration of Logical and Physical models (especially the linkages between the models) using Oracle Designer’s API rather than a DAT file as provided by MIMB.
Hope this helps,
Wayne Lehman
Avanti Business Systems Inc.

Similar Messages

  • Logical and Physical Models

    Hi All,
    I'm new to Designer. I need to produce a logical data model in Oracle Designer 10g. I have created a few tables in the RON and have used Design Editor to add these to a Server Model. I think this is giving me the physical model rather than the logical model.
    Can you please tell me if I'm going about this the wrong way ? I need the logical model to confirm with the non-technical people before I produce the physical model for the techies.
    Thanks

    Billy wrote:
    Hi,
    John - yes I have already checked all this, all looks ok. Also, I'm only using the REPOS_MANAGER account for now so permissions should not be an issue.
    Mark - when you say create an entity in the RON, I can create tables, how would I create an entity in the RON ? I can go to Diagrams in the RON and see my ERD.
    When I installed the repository I do remember having to go to the SYS account to grant an execute on a package to the REPOS_MANAGER user because one of the REPOS_MANAGER packages required it.
    Any direction would be appreciated ?
    Thanks
    BillyAh, but that IS the issue. You shouldn't use the repository owner account for your day to day work. Create another Oracle user and grant it privileges through the RAU. Then connect as that user to work in Designer. Oddly enough, the repository owner doesn't have the privileges that it needs - the privileges are stored in the repository, not database privileges.

  • Difference between OBIEE Logical Modelling and physical modelling

    HI.
    what is the difference between logical modeling (BMM) and physical modelling(Physical layer) in obiee admin tool
    please narrate it in definition format
    thank you
    rakesh

    Hi rakesh,
    Administrator tool consists of 3 layers
    Physcial layer:-It is typically first layer built in the repository.Contains objects representing the physical data sources to which the BI server submits queries.It may conatin multiple data sources.The common way is to import metadat from different databases.You can define joins after import if they are not defined.
    Business model and mapping layer:-It is defined as business or logical models of data and specifies the mapping between the physical and business layers.This is where the physical schemas are simplified to form the basis for the end user.We can say data is seperated into facts and dimension tables
    Presentation layer:-simplifies and organizes the business model to make it easy for users to understand and query
    go through the user guides for all the definition and subject
    Hope it helps you.my points?
    By,
    Kranthi
    Edited by: Kranthi.K on Sep 1, 2009 10:22 PM

  • Export logical model open all relational and physical model? -- Problem

    Hello,
    If I export only logical model ( file --> export --> To design Data Modeler) . Oracle Data Modeler open all relational and physical model, if I have 100 relational model open all, and this is very resource.
    Can it be avoided?
    Thanks.

    Ok, thanks
    This bug Will solved for version final Data Modeler 4.1 ?

  • What is a  Logical and Physical file path in sap?

    what is a  Logical and Physical file path in sap?

    Hi,
    Physical file is what you see from the OS level.
    Logical file is what ABAP code can call certain functions to read/write.
    Transaction FILE would link them together. Typically the logical path ends with "<FILENAME>", and the logical file refers to the logical path.
    To extract the physical path from the logical path name
    DATA: lf_mandt TYPE sy-mandt,
            lf_opsys TYPE sy-opsys.
      lf_mandt = sy-mandt.
      lf_opsys = sy-opsys.
    To extract the physical path from the logical path name
      CALL FUNCTION 'FILE_GET_NAME'
        EXPORTING
          client           = lf_mandt
          logical_filename = p_unix
          operating_system = lf_opsys
        IMPORTING
          file_name        = gwa_input
        EXCEPTIONS
          file_not_found   = 1
          OTHERS           = 2.
      IF sy-subrc EQ 0.
      Concatenating the physical path and the input unix file name
        CONCATENATE gwa_input p_file INTO gf_file .
      ENDIF.
    Reward if helpful.
    Regards,
    Ramya

  • Diff between logical and physical file path

    Hi ,
    Could you please explain difference between logical and physical file path's and their importance in ABAP.
    Thanks and regards,
    shyla

    Hi
    The function module FILE_GET_NAME convert a logical path into its corresponding physical path.
    The advantage of using logical pathes within your applications is obivous:
    If you need to change the physical path you just adjust it within transaction FILE yet no changes are required to your application.
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/25/ab3a57df3b11d189fc0000e829fbbd/frameset.htm
    The file names that you use in ABAP statements for processing files are physical names. This means that they must be syntactically correct filenames for the operating system under which your R/3 System is running. Once you have created a file from an ABAP program with a particular name and path, you can find the same file using the same name and path at operating system level.
    Since the naming conventions for files and paths differ from operating system to operating system, ABAP programs are only portable from one operating system to another if you use the tools described below.
    To make programs portable, the R/3 System has a concept of logical filenames and paths. These are linked to physical files and paths. The links are created in special tables, which you can maintain according to your own requirements. In an ABAP program, you can then use the function module FILE_GET_NAME to generate a physical filename from a logical one.
    Maintaining platform-independent filenames is part of Customizing. For a full description, choose Tools ® Business Engineer ® Customizing, followed by
    Implement. projects ® SAP Reference IMG. On the next screen, choose Basis Components System Administration ® Platform-independent File Names.
    For a more detailed description of the function module FILE_GET_NAME, enter its name on the initial screen of the Function Builder and choose Goto Documentation. On the next screen, choose Function module doc.
    Another way of maintaining platform-independent filenames is to use the Transaction FILE. The following sections provide an overview of the transaction.
    To create a logical filename, choose Logical filename definition, client-independent from the Navigation group box in Transaction FILE, then choose New entries. You define logical filenames
    You can either define a logical filename and link it to a logical path (as displayed here), or you can enter the full physical filename in the Physical file field. In the latter case, the logical filename is only valid for one operating system. The rules for entering the complete physical filename are the same as for the definition of the physical path for the logical file. To display further information and a list of reserved words, choose Help.
    If you link a logical path to a logical file, the logical file is valid for all syntax groups that have been maintained for that logical path. The filename specified under Physical file replaces the reserved word  in the physical paths that are assigned to the logical path. To make the name independent of the operating system, use names that begin with a letter, contain up to 8 letters, and do not contain special characters.
    Save your changes.

  • Logical and physical clear in ASO

    Hi There,
    I found one statement for Logical and physical clear in essbase dbag
    The process for logically clearing data completes in a length of time that is proportional to
    the size of the data being cleared.
    The process for physically clearing data completes in a length of time proportional to the
    size of the input data, not to the size of the data being cleared
    What does size of the input data actually means? How it is different from data being cleared.
    Thanks.

    What is interesting with these statements is based on them, you would think a logical clear would be slower than a physical clear. In reality, it is vastly faster. I took a 30 minute physical clear down to about 40 seconds with a logical clear. Logical clers create offsetting entries from the main cube in a slice to produce a result whila a physical clear deletes the actual data. The one thing about logical clears is rather than have #missing for cleared intersections you get zeros

  • Combining logical and physical elements in reports.

    It would be nice to be able to define in a more granular basis what I am able to include in a report.
    for example.
    I use the logical capabilities of the model as a more readable view of the physical, the physical always have table and column name limitations.
    Also I notice that most people just want to be able to see basic informaiton. for example:
    Table Name<logical>
    Table Name <Physical>
    Definition
    Column Name (logical), Column Name Physical, data type(physical), PK Flag, FK Flag, NULL Flag, Definition.
    That is it.
    We can always create a more comprehensive report as the one that already exists in the product.
    If I was able to get a link to the parent table that owns the FK even better.
    Thanks

    We can always create a more comprehensive report as the one that already exists in the product.We bet on that and this is the reason we export meta data to reporting repository - you know better your needs and can produce better report.
    DMRS_MAPPINGS table holds mappings between objects in logical and relational models. You can find some diagrams in reports directory.
    Philip

  • Issueduring verifying logical and physical dependencies of tablespaces.

    I am facing below issue with Transportable Tablespace during verifying logical and physical dependencies of two tablespaces.
    Oracle 10.2.0.2.0
    RHEL 5
    [oracle@prolinoradb1 ~]$ export ORACLE_SID=prodb136
    [oracle@prolinoradb1 ~]$ sqlplus /nolog
    SQL*Plus: Release 10.2.0.2.0 - Production on Sat Oct 7 07:46:07 2006
    Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
    SQL> connect / as sysdba
    Connected.
    SQL> exec DBMS_TTS.TRANSPORT_SET_CHECK('USER_DATA_TBS,USER_NDX_TBS',TRUE);
    BEGIN DBMS_TTS.TRANSPORT_SET_CHECK('USER_DATA_TBS,USER_NDX_TBS',TRUE); END;
    ERROR at line 1:
    ORA-01001: invalid cursor
    ORA-06512: at "SYS.DBMS_SYS_SQL", line 899
    ORA-06512: at "SYS.DBMS_SQL", line 19
    ORA-06512: at "SYS.DBMS_TTS", line 838
    ORA-04063: view "SYS.DBA_XML_TABLES" has errors
    ORA-06512: at "SYS.DBMS_TTS", line 867
    ORA-06512: at line 1
    SQL>
    I think some data dictionary script like catpatch.sql need to be run to resolve this issue but i didn't try it.
    Plz share your thoughts..
    Thnx

    Here i face another issue relates to transporting tablespace.
    I moved the datafiles from source db to target database (AIX 5.3 ->Windows 2003)
    Now when i tried to convert the datafile endianness to windows failing with below error...
    RMAN> CONVERT DATAFILE
    2> 'C:\tmpdir\tmpdir\tw_01.dbf',
    3> 'C:\tmpdir\tmpdir\tw_02.dbf',
    4> 'C:\tmpdir\tmpdir\tw_03.dbf',
    5> 'C:\tmpdir\tmpdir\tw_04.dbf',
    6> 'C:\tmpdir\tmpdir\tw_05.dbf',
    7> 'C:\tmpdir\tmpdir\tw_06.dbf'
    8> TO PLATFORM="Microsoft Windows IA (32-bit)"
    9> FROM PLATFORM="AIX-Based Systems (64-bit)"
    10> DB_FILE_NAME_CONVERT=
    11> "C:\tmpdir\tmpdir\", "E:\oracle\product\10.1.0\oradata\orcl\"
    12> PARALLELISM=5;
    Starting backup at 24-JUN-08
    using channel ORA_DISK_1
    using channel ORA_DISK_2
    using channel ORA_DISK_3
    using channel ORA_DISK_4
    using channel ORA_DISK_5
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 06/24/2008 17:19:27
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    Any idea?
    Source database is 10.1.0.3.0 and target database is 10.1.0.2.0. Does it matter?
    Message was edited by:
    GK Joe

  • Logical and Physical Standby on same Node

    Is it possible to have a logical and physical standby database for a primary database on the same node (i.e. primary on NodeA, logical and physical database of primary on NodeB)?
    Will there be any conflicts with data guard broker with this configuration or any problems I may encounter?

    From a technical point of view this is possible. Your standby node should be powerful enough to handle 2 instances. For even higher availability 3 dedicated nodes would be better. When Node B is down, both physical and logical standby are also down.
    Werner

  • Logical and physical file paths

    Hi,
    can anyone elobrate me  on what are logical and physical file
    paths ?

    hi,
    Follow this link
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3deb358411d1829f0000e829fbfe/frameset.htm
    File format determination (Required / optional fields and field checks).
    Logical File Path configuration through transaction 'FILE'. A new physical file path should be created on operating system level or an existing one can be used if agreed. The Basis team member should create a new file path at operating system level, if required.
    Hope this helps, Do reward.

  • Diff  between logical and physical page ?

    hi
    what exactly difference between logical and physical pages?
    where to set page size in report designer?
    after seting paper size in report designer can i readjust in print dialogue box?
    which is will be effected?
    please explain

    A logical page can contain several physical pages. Assume you want to create a format which is larger then your printer is able to print, then you can define a logical size, which contains n pages horizontally and m pages vertically.
    To set the page size for your report have a look at the properties in the main section of your paper layout.
    Regards
    Rainer

  • Can I check whole DB for logical and physical consistency?

    Assume I get somehow the impression that a part of a DB is somehow corrupted.
    E.g. due to hard disc sector errors or logical reference errors/changed foreign key values.
    How can I tell Oracle DB to check itself resp. to verify all the content inside for logical and physical integrity?
    Peter

    Use DBVerify to check corruption in the datafiles.
    Asif Momen
    http://momendba.blogspot.com

  • Diff logical and physical doc

    Hello BW Experts,
    What is the difference between the logical and physical documents.
    Thanks,
    BWer

    hi BWer,
    take a look
    http://help.sap.com/saphelp_nw2004s/helpdata/en/4e/668867df6a5c4591a4dc46631f5cc3/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/6c/69bd22418d11d1896e0000e8322d00/frameset.htm
    hope this helps.

  • Logical and physical rowid datatypes

    hiii
    can i know how logical and physical row id be helpful to a developer.
    if i am not wrong than physical row id remain constant and logical is on IOT and can change but what is its use how can i use this concept and where can i apply it ???
    thks

    810345 wrote:
    hiii
    can i know how logical and physical row id be helpful to a developer.If you read the Oracle document, its given following:
    Before you use rowids in DML statements, they should be verified and guaranteed not to change. The intended rows should be locked so they cannot be deleted. Under some circumstances, requesting data with an invalid rowid could cause a statement to fail.
    if i am not wrong than physical row id remain constant and logical is on IOT and can change but what is its use how can i use this concept and where can i apply it ???A row's logical rowid does not change as long as the primary key value does not change. This is less stable than the physical rowid, which stays immutable through all updates to the row.

Maybe you are looking for

  • Purpose of certificate in the Operation manager store - ADCS server.

    Hello, I do have win 2003 ADCS server. When I do mmc snap in for local computer, I can see one of the certificate under operation manager expiring soon. Can anyone please tell me the purpose of operation manager store - ADCS server. Thanks

  • Error in Pl/sql code

    create or replace PACKAGE BODY SF_CSD_CreateOrder AS G_PKG_NAME CONSTANT VARCHAR2(30) :='SF_CSD_CreateOrder'; PROCEDURE Create_Order p_api_version_number IN NUMBER, p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE, p_commit IN VARCHAR2 := FND_API.G_FAL

  • 0FIAR_C03 Open line items

    Hi, I am trying to load open items using 0FIAR_C03, i am in confuse to choose between 0FI_AR_3 AND 0FI_AR_4. Which one must i choose to pull open items from bsid table, but i needs to add SHKZG, DMBTR,WRBTR, INFAE, UMSKS,ZUDNR FIELDS TO THAT EXTRACT

  • Add attachment button disapear from Customer screen ( framework )

    We did some personalizations in 12.1.2; for one reason ( we don't know why ) add attachment butotn disappear from attachment tab in client screen ( framework ) any idea Thanks Marc

  • I can't install the drivers for my Nom

    I have Windows XP. We just got a Nomad, and I installed everything from the CD. As it went through the install, it would pop up a message that says "An error occured while setting up the driver." I've uninstalled and reinstalled the program 3 times,