Designer 10.1.2.5.0 can not be standalone?

I applied Designer 10.1.2.5 patchset on top of standalone Des 10.1.2.4, no Developer Suite (I also tried a fresh installation of Des 10.1.2.5), when I started Oracle Designer, RAU, or RON I got this error:
"This application has failed to start because frmd2f.dll was not found. Re-installing the application may fix this problem"
I copied the file from another Developer Suite installation, I got a new error, every time I copied the files indicated by the error message, I always got the same error with a different file name needed. The last error message related with psoasyn (?) and orapls10.dll (I forget the exact error message). Fyi, I am using Oracle DB Client 10.2.0.4.
Do we have to install complete Oracle Developer Suite to install Oracle Designer 10.1.2.5? Now, I re-installed Oracle Designer 10.1.2.4, and it works well (no error appears).
Thanks.
Edited by: Hasnur Ramadhan on Oct 20, 2008 1:18 PM

You need to install Repository in Oracle 10g and create the Repository in RAU before you can start using Designer.
Follow the following steps to have Designer properly installed. Enjoy it.
Preparation:
1.     Increase Virtual Memory of your PC
•     Right-click on My Computer, Properties
•     Click on “Advanced” tab; Click on Performance’s [Settings]
•     Click on “Advanced” tab; Click on Virtual Memory’s [Change]
•     Change Maximum Size to 1535MB (Default was 768MB): Note you must have swap space of 1535MB
•     Click on [Set], [OK], [OK], [OK]
2.     Stop all anti-virus programs
3.     Unzip ds_windows_x86_101202_disk1.zip files to C:\Disk1 and ds_windows_x86_101202_disk2.zip to C:\Disk2
4.     Assume that you have installed Oracle 10g Release 2 before installing Developer Suite 10g R2.
5.     If you are using Chinese Windows XP or 2003 Server, please set both Regional Settings and Input Locale to English prior installation of Developer Suite 10g R2.
Part 1: Steps to install Developer Suite
1.     Double-click on C:\Disk1\setup.exe
2.     Click on [Next]
Enter Name: Ora10gDSR2 (default was DevSuiteHome1)
Enter Path: C:\oracle\product\Ora10gDSR2 (default was C:\DevSuiteHome_1)
Click on [Next]
3.     Select the radio button for “Complete (1.11GB)”
•     Click on [Next]
Provide Outgoing Mail Server Information:
Enter outgoing mail (SMTP) server: e.g. mail.netvigator.com (if you are using Netvigator)
This is the same as the setting for your Outlook for your ISP.
Click on [Next]
Click on [Install]
Click on [Exit], [Yes]
Part 2: Steps to setup Designer 10g
Part A:
Time Taken: 30 minutes to 60 minutes depending on the speed of your PC’s CPU
1.     Login SQL Plus as “SYS” with password “ora10g_manager” and connect string of “orcl as sysdba”
2.     Copy the sql file in the zip file with this Word file to c:\ with no folders
3.     Start the script file
SQL> @C:\des10g_for_ora10gR2.sql (If you have installed Oracle 10g Release 2)
•     Neglect Errors as the script will drop existing objects and re-create them. If existing objects cannot be dropped, then errors may appear but these will not affect the schema definition for Oracle Developer Suite 10g.
Copy the contents of the following SQL script and save to a text file called “des10g_for_ora10gR2.sql”
Run SQL Plus, login as SYS and start command “@C:\des10g_for_ora10gR2.sql”.
You may inspect the spooled file for any error logs in c:\designer10gins_local.txt
You may delete this file after installation.
rem -------------------------------------------------------------------------------------------------
rem des10g_for_ora10gR2.sql Revised 28/Jun/2005 (This script is for Oracle Release 2)
rem Copy the file to c:\
rem Run SQL Plus, login as SYS
rem SQL>@C:\des10g_for_ora10gR2.sql
rem Assume Global Database Name is orcl
rem Assume Oracle 10g program is installed in C:\oracle\product\10.2.0\Db_1
rem Assume Oracle 10g datafiles are installed in C:\oracle\product\10.2.0\oradata\orcl
rem Assume Designer 10g R2 is installed in C:\oracle\product\Ora10gDSR2
rem ----------------------------------------------------------------------
set echo on
spool C:\designer10gins_local.txt
rem No need to start the sql script catproc.sql in Oracle 10g as the objects and packages
rem have been created already in Oracle 10g
rem @C:\oracle\product\10.2.0\Db_1\rdbms\admin\catproc.sql
REM Use this script to build tablespaces for the repository
REM Create tablespaces for repository tables
prompt Creating tablespace for repository tables (DES10g)
create tablespace DES10g
datafile 'C:\oracle\product\10.2.0\oradata\orcl\D10D1ORCL.DBF' size 400m
autoextend on
next 10m maxsize
unlimited default storage
(maxextents unlimited)
REM Create Index tablespace for repository indexes
prompt Creating tablespace for repository indexes (DES10g_I)
create tablespace DES10g_I
datafile 'C:\oracle\product\10.2.0\oradata\orcl\D10I1ORCL.DBF' size 300m
autoextend on
next 10m maxsize
unlimited default storage
(maxextents unlimited)
@c:\oracle\product\ora10gDSR2\repadm61\utl\ckrorole.sql
create user REPOS_OWNER identified by REPOS_OWNER
default tablespace DES10g
quota unlimited on DES10g
quota unlimited on DES10g_i
temporary tablespace temp;
grant alter session to repos_owner;
grant create database link to repos_owner;
grant create type to repos_owner;
GRANT EXECUTE ON DBMS_LOCK TO REPOS_OWNER;
GRANT EXECUTE ON DBMS_PIPE TO REPOS_OWNER;
grant connect, resource,CK_ORACLE_REPOS_OWNER to REPOS_OWNER;
grant create table to REPOS_OWNER;
grant create view to REPOS_OWNER;
grant create any trigger to REPOS_OWNER;
grant create procedure to REPOS_OWNER;
grant create any index to REPOS_OWNER;
grant create any sequence to REPOS_OWNER;
grant create synonym to REPOS_OWNER;
grant create any synonym to REPOS_OWNER;
grant select any sequence to REPOS_OWNER;
grant select any table to REPOS_OWNER;
grant create role to REPOS_OWNER;
grant create public synonym to REPOS_OWNER;
grant create session to REPOS_OWNER;
GRANT DROP PUBLIC SYNONYM TO REPOS_OWNER;
grant drop any synonym to REPOS_OWNER;
GRANT SELECT ON sys.v_$nls_parameters TO REPOS_OWNER WITH GRANT OPTION;
GRANT SELECT on V_$PARAMETER TO REPOS_OWNER;
GRANT SELECT ON dba_rollback_segs TO REPOS_OWNER;
GRANT SELECT ON dba_segments TO REPOS_OWNER;
grant dba to REPOS_OWNER;
grant connect,resource,CK_ORACLE_REPOS_OWNER to REPOS_OWNER;
grant execute on sys.dbms_pipe to REPOS_OWNER;
grant execute on sys.dbms_lock to REPOS_OWNER;
spool off
rem ----------------------------------------------------------------------------------------------------------
Part 3: Setup TNSNAMES for Developer Suite 10g
Explanation:
•     There are TWO Oracle Homes on your Server. One for Oracle 10g Database R2 and one for Oracle Developer Suite 10g R2.
•     The settings for TNSNAMES.ORA have been configured when you installed Oracle 10g but NOT when you installed Developer Suite 10g.
Steps: Copy the file “tnsnames.ora”
From: C:\oracle\product\10.2.0\db_1\ NETWORK\ADMIN (for Release 2)
To: C:\oracle\product\Ora10gDS\network\admin
Alternatively, add the following script to tnsnames.ora in C:\oracle\product\Ora10gDSR2\NETWORK\ADMIN\tnsnames.ora
ORCL =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = orcl)
Part 4: Setup Repository Administration Utility
1.     Run Repository Administration Utility
•     Click on [Start], All Programs, Oracle Developer Suite – Ora10gRDR2, Software Configuration Manager, Repository Administration Utility
2.     Login as repos_owner with password “repos_owner” and connect string of “orcl”
Enter Username: repos_owner
Enter Password: repos_owner
Enter Connect String: orcl
Click on [OK]
3.     Install Repository
Click on icon
Click on [OK]
Click on [Yes]
4.     Change the Index Tablespace to DES10G_I
The default settings are:
Change all Index Tablespaces from DES10G to DES10G_I
Enable the radio button for Repository to Medium (Default was Small)
Click on [Start]
Click on [Yes]
Click on [OK], [Cancel]
Click on File, Exit
Part 5: Run Designer 10g for the first time
•     Click on [Start], All Programs, Oracle Developer Suite – Ora10gRDR2, Designer, Oracle Designer
Enter Username: repos_owner
Enter Password: repos_owner
Enter Connect String: orcl
Click on [OK]
Designer 10g Release 2 is successfully configured for your immediate use now.
Part 6: Enable Version Support in Designer 10g
Click on [Start], All Programs, Oracle Developer Suite - Ora10gRDR2, Software Configuration Manager, Repository Administration Utility.
Click on [Yes]
Click on [OK], [OK]
In Repository Object Utility window, click on File, Exit
Part 7 Run Designer 10g and connect as repos_owner via connect string orcl
Run Designer 10g, connect as “REPOS_OWNER" with Pssword “repos_owner” and Connect String: orcl
Click on [OK]; Click on Repository Object Navigator icon; Click on Utilities, Import
Follow the normal steps to import Designer 10g dmp file into Designer10g's Repository
Click on Utilities, Import
Click on [Next]
Neglect any warning message window if appears.
Right-click on GLOBAL SHARED WORKAREA, Refresh Workarea, [OK]
All Entities, Tables, Diagrams can now be accessed. It may be necessary to regenerate modules in Function Hierarchy Diagrammer if you could not find modules in Design Editor.

Similar Messages

  • Dashboard Designer: - restrict permissions so viewers/visitors can NOT open designer?

    Is there a way to prevent users in SharePoint from seeing and opening Dashboard Designer?
    I only want groups that have contribute rights to even see it, for people who just view it causes confusion when they see the "Performance Point" ribbon and then "Dashboard Designer"
    Thanks!

    Hi,
    I understand you need to hide library ribbon from users who just have viewer permission, then I assume these users should have rights to click it to create and edit dashboard. That is to say, the ribbon is disabled for these users.
    Please check the article below to hide disabled ribbon for users:
    https://alinimer.wordpress.com/2014/09/22/hiding-a-sharepoint-20102013-disabled-ribbon-buttons-by-user-permissions-using-css/
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Rebecca Tu
    TechNet Community Support

  • I can not uninstall my existing creative suite.  How to do it?

    I have a crative suite 4 Design Premium in the computer that can not be uninstalled.  I want to replace a new version.  Can I install a new version of creative suite without uninstalling the old one.

    yes.
    but you should be able to uninstall if you want, too.  what os and what have you tried doing to uninstall?

  • Can not see two fields in Crystal 2008 Developer explorer/designer view

    I am currently developing crystal 2008 reports against the salesforce.com database using version 12.0.0.683 CR Developer Full version. I am using an updated driver that was provided in July or Aug 08 in order to view self referencing fields. The problem is that when I try and report against one of the tables (lead history) I cannot view two of the fields (New Value and Old Value)? I can see these two field (New Value and Old Value) in the database expert as the last two fields in the actual table, but the two fields are missing when I go into the explorer/designer view. In Salesforce, these two fields can not be filtered on, but I can export all the values in this table using Salesforece Apex data loader.

    Please re-post if this is still an issue to the OnDemand Forum or purchase a case and have a dedicated support engineer work with you directly

  • I have purchased Wedding Style By Miracle Design - it is showing in the downloads but I can not get it into lightroom - I am using a mac and the instructions are for windows.

    I have purchased Wedding Style By Miracle Design - it is showing in the downloads but I can not get it into lightroom - I am using a mac and the instructions are for windows.

    Return, cancel, or exchange an Adobe order

  • How can I see if my program is for more than one user? We think we have bought in design for more users, but can not find out how to get in for more than one?

    How can I see if my program is for more than one user? We think we have bought in design for more users, but can not find out how to get in for more than one?

    If you bought a CC for team, you can log in at http://adobe.com and insert the e-mail that you gave at the moment at the purchase and than you can manage and see you product/plan/team.
    If I was not clear you can use the following link to help you solving your issue:
    Creative Cloud Help | Manage your Creative Cloud for teams membership
    If your not clear about this situation, contact with an agent of Adobe, by chat or phone. Use the following link to see the type of support you have on this matter:
    http://adobe.com/getsupport
    I think this will help you.
    Regards

  • Adobe can not validate the serial number for CS6 Design Standard. What goes wrong?

    After purchasing and downloading and installing the CS6 Design Standard package serial number is requested,. After completing the SN (as sent) I get the following message: "We can not validate this serial CS6 Design Standard". What am I doing wrong

    That entries are blocking the product to reach Adobe servers.
    Move your hosts file to desktop and open it from there.
    Then remove entries like " 127.0.0.1 lm.licenses.adobe.com " ( There should not be any Adobe related entries )
    Once you have removed, close hosts window.
    The drag the file back to etc folder and replace it with original hosts file.. ( open hosts once again and confirm there are no adobe entries.
    Then try.

  • Error Design Studio - I can not open the DB anymore

    Dear All
    I am facing a big issue with Design Studio
    I was working on a DB and suddenly I can not see it .
    I can open it and see outline , DSs properties but I can not see the preview . I get the error below.
    I have no idea what happens - I get no error script problem in the DB - I dunno what it is wrong with it.
    I have tried to open the RSTT trace but I see no trace  with LOC_000001.
    Thanks in advance for your help . I will appreciate that
    regeards
    Manu
    ERROR
    Termination message sent INFO Recording RSTT trace with ID "LOC_000001"... com.sap.ip.bi.base.appli [...]
    While processing the current request, an exception occurred which could not be handled by the application or the framework.
    Log ID:
    8f13d621-0fb0-4ce4-9ba0-e9a559973fe4
    Failed to process request. Please contact your system administrator.
    To facilitate analysis of the problem, keep a copy of this error page.
    We are sorry for the inconvenience.

    I wrote the following code on start up and all the DS are set to load in script but it does not work - no ds is loaded
    CROSSTAB_09.showLoadingState("loading...");
    CROSSTAB_10.showLoadingState("loading...");
    CROSSTAB_11.showLoadingState("loading...");
    CROSSTAB_12.showLoadingState("loading...");
    CROSSTAB_13.showLoadingState("loading...");
    CROSSTAB_14.showLoadingState("loading...");
    CROSSTAB_15.showLoadingState("loading...");
    CROSSTAB_16.showLoadingState("loading...");
    CROSSTAB_17.showLoadingState("loading...");
    APPLICATION.doBackgroundProcessing();
    //APPLICATION.doBackgroundProcessing();
    if (DS_COUNTER == 1)
    {CROSSTAB_09.hideLoadingState();DS_TABLE1.loadDataSource();}
    else if
    (DS_COUNTER == 2){CROSSTAB_10.hideLoadingState();DS_TABLE2.loadDataSource();}
    else if
    (DS_COUNTER == 3){CROSSTAB_11.hideLoadingState();DS_TABLE3.loadDataSource();}
    else if
    (DS_COUNTER == 4){CROSSTAB_12.hideLoadingState();DS_TABLE4.loadDataSource();}
    else if
    (DS_COUNTER == 5){CROSSTAB_13.hideLoadingState();DS_TABLE5.loadDataSource();}
    else if
    (DS_COUNTER == 6){CROSSTAB_14.hideLoadingState();DS_TABLE6.loadDataSource();}
    else if
    (DS_COUNTER == 7){CROSSTAB_15.hideLoadingState();DS_TABLE10.loadDataSource();}
    else if
    (DS_COUNTER == 8){CROSSTAB_16.hideLoadingState();DS_TABLE7.loadDataSource();}
    else if
    (DS_COUNTER == 9){CROSSTAB_17.hideLoadingState();DS_TABLE9.loadDataSource();}
    if (DS_COUNTER < 9)
    {DS_COUNTER = DS_COUNTER +1;
    APPLICATION.doBackgroundProcessing();

  • I purchased Adobe Design Standard in June 1993 and have not downloaded it until now. when I click on the software on my account there is no download button. How can I download the software I purchased so long ago? I hope it is not money down the drain. Is

    I purchased Adobe Design Standard in June 1993 and have not downloaded it until now. when I click on the software on my account there is no download button. How can I download the software I purchased so long ago? I hope it is not money down the drain. Is there any phone number available so I can talk to an Adobe employee?

    Which version of Design Standard are you asking about?  I don't think any Creative Suite packages existed in 1993.  I think the first CS came out in 2003.

  • Sharepoint Online Can not edit anything in Sharepoint designer as Site collection administrator

    Dear all,
    I am using sharepoint online and sharepoint designer 2013. Things were working fine but one day it suddenly stopped working. I have assigned site collection administrator to several accounts and I tried on different computers. I can not edit anything in
    sharepoint designer 2013. Can not edit workflows, can not edit lists. Everything seems to be bugging out. I have reinstalled sharepoint designer and tried on different computers, all of them behave the same. I checked on all accounts I assigned site collection
    admin to, they all have full control over everything. I can edit lists on the sharepoint site with no problem. Anyone knows what's going on?
    I also created another blank site, same thing happens.
    -Timothy

    Are you able to edit site in IE?
    Try below:
    http://blogs.technet.com/b/namkh/archive/2013/04/18/quot-the-web-site-has-been-configured-to-disallow-editing-with-sharepoint-designer-quot.aspx
     One straight forward way of doing it is from the UI (Which did not work in my case though :(  )
      1.  Right-click the ONET.XML file ( at \Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\SiteTemplates\<var><Service></var>\xml) for the site definition and open it with Notepad
           If you see “DisableWebDesignFeatures=wdfopensite” section in the one.xml that means your site has been configured to disallow SharePoint designer.
          You can remove this section from the file and should be able to access the site in designer now
    2.   If you are unable to get rid of “DisableWebDesignFeatures=wdfopensite” or find the correct onet.xml corresponding to your site definition, here is a simple script I put together to see if Designer is disabled on the site using the property
    vti_disablewebdesignfeatures2 and update it as required.
    Manage Permissions and Control Access to Sharepoint Designer
    http://support.microsoft.com/kb/2592376
    If this helped you resolve your issue, please mark it Answered

  • Why can not you thought of improving the design of power adapters for mac book pro from damage so easily?

    why can not you thought of improving the design of power adapters for mac book pro from damage so easily?

    I congratulate you. you are very lucky because I hurt my less than two years taking all possible care. and have found that this has happened to many people more

  • Dreamweaver CS3- can not paste from Word into Design mode window

    Have been away from DW for a while, and upon return having a
    bit of difficulty with paste function for text. I can select text
    in design mode/window; I can type in design mode, but I can not
    paste into design mode. I can only paste in code view or the code
    half of split view. Is there a setting/preference I have set wrong?
    Thx

    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=dd550772
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "[email protected]" <[email protected]>
    wrote in message
    news:gfsk14$htv$[email protected]..
    > File>Import> Word Document is not an option I am
    offered. Also, I'm not
    > really
    > interested in importing a whole Word doc, just a line of
    text or so. I
    > think a
    > cut and paste from Word to DW ought to work?
    >

  • Adobe can not validate the serial number for Creative Suite 6 Design, what's going wrong?

    After purchasing and downloading en before installing the CS6 Design Standard package on my Apple (iMac), the serial number is requested.  After completing the SN (as sent), I get the following message: "We can not validate this serial CS6 Design Standard". What am I doing wrong?

    That entries are blocking the product to reach Adobe servers.
    Move your hosts file to desktop and open it from there.
    Then remove entries like " 127.0.0.1 lm.licenses.adobe.com " ( There should not be any Adobe related entries )
    Once you have removed, close hosts window.
    The drag the file back to etc folder and replace it with original hosts file.. ( open hosts once again and confirm there are no adobe entries.
    Then try.

  • Acrobat Pro 7, Windows 7 and Office 2010. C: blocked by GPO. Designer application can not save. Ther

    Hello,
    Please I need some help if possible. I just recently upgraded a user to Windows 7 with Office 2010 and reinstalled her Acrobat 7. We locked down c: thru GPO, and it seems this is causing an issue when she uses Designer. She and click save or save as all she wants but nothing happens. If I log in under admin (i can see c:) everything works fine, if possible could someone lead me to the solution. We can not open c: for her, if there is a registry edit where i can change the default location that would be great.Thanks in advance.
    Paul

    If the Win7 is a 64-bit system, you will need to upgrade the Acrobat to XI. AA 7 will work with Win7, 32-bit, after some playing around but will not be automatic. I am specifically referring to printing to the Adobe PDF printer. PDF Maker will definitely not work with OFFICE 2010, that requires AA X with updates as a minimum.
    For AA7, the AcroTray function will probably fail (it did for me on a 64-bit system). In fact, you will likely not even get a printer. I was able to install an HP PS printer (color should probably be selected) and change the name to the Adobe PDF printer. Then change the port to file. When you print to the printer, it will create a PS (actually listed as PRN) file that can then be opened in Distiller to complete the process of the PDF creation. For most users, this is not an obvious solution -- I even did it with AA5 on a 32-bit Win7. Because of the issues, it is strongly recommended to upgrade (at this point it is a new purchase since AA9 is needed for the upgrade at present) to AA XI. Sorry for the bad news, but AA7 is 8 years old and is ancient in software terms (OK, I still have it on some XP machines).

  • .xlsm Can't exit design mode because Control 'Command Button 3' can not be created

    I have several Windows 7 Enterprise machines that cannot open one .xlsm file properly. When it opens, it is opening in Design mode rather than as a spreadsheet with macros. My users are getting the error "Can't exit design mode because Control
    'Command Button 3' can not be created". All our machines have Office 2010 ProPlus, but this file will only open on the XP PC's that have yet to be upgraded. Any ideas?

    Hi,
    How do you create the button in Excel 2010? Just insert the control manually or insert it using a macro?  This issue may be caused by the controls aren't instantiated before you can exit design mode.
    Please try the method:
    Code can only run after all controls are instantiated and properly connected. Make sure every file needed for the control is available before trying again.
    Quote from:
    http://msdn.microsoft.com/en-us/library/office/gg251344(v=office.14).aspx
    Regards,
    George Zhao
    TechNet Community Support

Maybe you are looking for

  • How to download explanation texts of Payment Terms.

    Hi All MM Experts, I am a ABAPer.One of the MM consultant in our project wants to download the payment terms with the explanation texts (which is usually in multi line) in OME2 transaction. I have tried table T052 and T052U but it didn't help. Any po

  • VGA memory problem.....

    My VGA memory have 64MB DDR...but sometimes when i start pc it will lost memory ..sometimes it's just have 16MB....sometimes 32MB...never perfectly display to 64MB. And the 3D Mark2001 SE also cannot run..and show the error message tell me about memo

  • FM for compairing The values of two TR

    hi Experts, FM for Compairing transport request (TR) based on the   primary key  values assosiated with that . Regards Amit kumar Edited by: Amit Kumar on Sep 10, 2008 10:59 AM

  • How do I get JPGs to show up crisp in my video??

    When I use JPGs in adobe premier (no matter what resolution) the text on them becomes pixelated and illegible. What can I do to render the text on a jpg so that it is crisp and can be read. is there a better format? tiff? gif? do I have to render the

  • Disk Warrior help

    hi, here's my situation. 2.5 dual with 3.5 gigs of RAM. Running Tiger. hard drive i believe is a Hitachi (whatever is the default drive) and is 160 gigs. I was editing in DVPSP 3 and it kept quiting on me. so i restarted. when i did the OS did not co