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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

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

  • 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

  • Import designer repository error

    I am trying to import a designer repository using RAU but I have seen several errors about ORACLE error 942. One of them is:
    IMP-00017: following statement failed with ORACLE error 942:
    "CREATE DIMENSION "PROMOTIONS_DIM" LEVEL "PROMO" IS ("PROMOTIONS"."PROMO_ID""
    ") LEVEL "SUBCATEGORY" IS ("PROMOTIONS"."PROMO_SUBCATEGORY_ID") LEVEL "CATEG"
    "ORY" IS ("PROMOTIONS"."PROMO_CATEGORY_ID") LEVEL "PROMO_TOTAL" IS ("PROMOTI"
    "ONS"."PROMO_TOTAL_ID") HIERARCHY "PROMO_ROLLUP" ("PROMO" CHILD OF "SUBCATEG"
    "ORY" CHILD OF "CATEGORY" CHILD OF "PROMO_TOTAL") ATTRIBUTE "PROMO" LEVEL "P"
    "ROMO" DETERMINES "PROMOTIONS"."PROMO_NAME" ATTRIBUTE "PROMO" LEVEL "PROMO" "
    "DETERMINES "PROMOTIONS"."PROMO_END_DATE" ATTRIBUTE "PROMO" LEVEL "PROMO" DE"
    "TERMINES "PROMOTIONS"."PROMO_BEGIN_DATE" ATTRIBUTE "PROMO" LEVEL "PROMO" DE"
    "TERMINES "PROMOTIONS"."PROMO_COST" ATTRIBUTE "SUBCATEGORY" LEVEL "SUBCATEGO"
    "RY" DETERMINES "PROMOTIONS"."PROMO_SUBCATEGORY" ATTRIBUTE "CATEGORY" LEVEL "
    ""CATEGORY" DETERMINES "PROMOTIONS"."PROMO_CATEGORY" ATTRIBUTE "PROMO_TOTAL""
    " LEVEL "PROMO_TOTAL" DETERMINES "PROMOTIONS"."PROMO_TOTAL""
    IMP-00003: ORACLE error 942 encountered
    ORA-00942: table or view does not exist
    I have the same versions (dev suite 10g and database 10.2.0.2) with the source designer. Both of them are on Windows XP.
    Both of the repositories are using the tablespace with exactly same name(this may be irrelevant). When I start importing, I already have some data in that tablespace in the target repository. DSGNR users on both repositories are using that tablespace as default tablespace.
    Anything wrong here? I did upgrade database from 10.2.0.1 to 10.2.0.2 myself before export/import designer repository. Not sure if this is caused by the unsuccessful update? I did not see error in database upgrade.
    Your input is highly appreciated.
    Jennifer

    Yes the is a problem here.
    You have incompatable import export tools between Designer and the DB.
    In the Repository install manual it states:
    Step 5b - (Oracle 9i or 10.2 DB) Install Oracle 9i or 10.2 Import and Export Utilities
    Before installing Designer Repository on an Oracle 9i or 10.2 database, you need to set up the installation workstation to use the Oracle 9i or 10.2 import and export utilities. To do so, perform the following steps at the workstation from which you will be running the repository installation:
    From the Oracle 9i or 10.2 installation media, install the Oracle 9i or 10.2 import and export utilities in a dedicated Oracle home.
    In the Windows Registry, locate the key named:
    HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_HomeName\REPOS61
    where HOMEn is the home number of the home installed into for a multiple Oracle home environment, but is not present where the default Oracle home is being used.
    Change the value of the EXECUTE_IMPORT and EXECUTE_EXPORT variables to point to the new Oracle home. Thus, if the new Oracle home is d:\des_9i, the settings would be:
    d:\des_9i\bin\exp.exe
    d:\des_9i\bin\imp.exe
    If you have the 10.2 DB on the same machine then just point the registry to thoes tools and if you dont you will need to install the 10.2 client with admin privleges to get the imp/exp tools installed and then point the registry to them.
    hope that helps.
    Michael

  • How to Active face Time on my iPhone 4s remember its design for saudhi arabia plz help me now its using Sri Lanka

    Hi guys Help me
    How to Active face Time on my iPhone 4s remember its design for saudhi arabia plz help me now its using Sri Lanka its not jeilbroken & Never like do it I heat jeilbroken I need to active my resriction face time with apple & leagle mode plz help
    Thank you all

    FaceTime is not available for iPhones purchased in Saudi Arabia as stated in this article: http://support.apple.com/kb/HT1937
    So unfortunately that iPhone will never have FaceTime.

  • Help!!! Designer/Repository 6i install fails on Win with 8i

    I get the following error when trying to install
    Designer/Repository on Windows 2000 with 8i enterprise (8.1.7):
    Orainst.exe has generated errors and will be closed by windows.
    You will need to restart the program. An error log is being
    created. Where do I find the error log? Is it oraninst.log?
    There is no error in that file. What do I do?

    I have the same problem. It is sad that no one got back to you
    I get the following error when trying to install >Designer/Repository on Windows 2000 with 8i enterprise (8.1.7):
    Orainst.exe has generated errors and will be closed by windows.
    You will need to restart the program. An error log is being
    created. Where do I find the error log? Is it oraninst.log?
    There is no error in that file. What do I do?

  • Certified Operating Systems for use with Oracle Designer Repository

    Hi all,
    We have Oracle Designer Repository version 10g(9.0.4.3.14) installed on Microsoft Windows 2000. As our OS and Network team is going to migrate the OS from Windows 2000 to Windows 2003, I want to know if Windows 2003 is certified for our Designer version or not.
    Thanks in advance.
    Iman

    I think you misunderstood Mark's statement. Oracle Designer has two distinct but tightly related parts. One is the Oracle Designer Client, which is a client/server application that only runs on Microsoft Windows. The latest versions are certified for Windows XP R3, but you'll have to check the current certification matrix to see on what OSs your version of the Designer client are certified.
    The other part is the Oracle Designer Repository. This is a set of tables, views and stored procedures that are installed in an Oracle database. The Oracle database can be on any OS or hardware for which that version of the database is certified. There is a certification matrix to show the certified versions of OS and database, and a separate matrix to show certified combinations of database and repository.
    The Oracle Designer Repository and the Oracle Designer client must be matched, but basically, if you run the Repository Administration Utility against a lower version of the repository, it will give you an option to upgrade the repository to the version that is compatible with your client. If you run against a higher version of the repository, it just won't work, and you'll have to upgrade your client.
    Unfortunately, the certification matrices seem to have disappeared from OTN, so they are only available through My Oracle Support.

  • Getting Started on Designer Repository

    Hi
    I need to install, create designer repository on Windows 2003 including data model. Where can I get a starting point to learn all about Oracle designer - Installation, Administration etc.
    I haven't found any good document for beginner so far. I downloaded Installation document from oracle, but it does make little sense to me as I have absolutely no idea on designer.
    Please shed some light on this.
    I will also need to migrate existing data model to the new repository.
    Thanks for the help!
    - fa

    1. you need to have the standard or enterprise edition of the database.
    then you can use my script to get a repository created. Of course you will need to change things to set it to your database and not mine. But here it is.
    After you install the IDS 10G in a new oracle home on the Client windows PC you will find the intall manual under:
    start - programs- Oracle Developer Suite - Designer documentation - Repository instalation Guide
    The following are the step I use to build a new repository
    You will need to set paths and names as you desire for your local PCs and repostiory.
    -- Step 1
    Log on as SYS
    This is so you can get the path name of your datafiles:
    select file_name, tablespace_name from dba_data_files;
    -- D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\TEMP_65.DBF
    create tablespace constant_grow_indexes
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\constant_grow_indexes_01.dbf'
    size 4000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace constant_grow_TABLES
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\constant_grow_tables_01.dbf'
    size 15000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace dependency_indexes
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\dependency_indexes_01.dbf'
    size 5600k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace dependency_tables
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\dependency_tables_01.dbf'
    size 9000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace diagram_indexes
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\diagram_indexes_01.dbf'
    size 1000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace diagram_tables
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\diagram_tables_01.dbf'
    size 2000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace lob_data
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\lob_data_01.dbf'
    size 1200k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace rapid_grow_indexes
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\rapid_grow_indexes_01.dbf'
    size 250000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace rapid_grow_tables
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\rapid_grow_tables_01.dbf'
    size 500000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace system_meta_indexes
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\system_meta_indexes_01.dbf'
    size 20000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace system_meta_tables
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\system_meta_tables_01.dbf'
    size 30000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace temporary_indexes
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\temporary_indexes_01.dbf'
    size 5000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace temporary_tables
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\temporary_tables_01.dbf'
    size 9000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace version_indexes
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\version_indexes_01.dbf'
    size 9000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace version_tables
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\version_tables_01.dbf'
    size 12000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    -- Step 2
    Make sure you ave plenty of space in your system tablespace
    select tablespace_name, sum(bytes)/1024/1024 from dba_free_space
    group by tablespace_name;
    alter tablespace system add datafile
    'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\system03.dbf' size 140m;
    -- Step 3
    As SYS
    create user owner identified by owner default tablespace users
    temporary tablespace temp;
    --Run this file as SYS
    @ D:\Designer_Home\IDS10_1_2\repadm61\UTL\CKROROLE.SQL
    GRANT EXECUTE ON DBMS_LOCK TO owner;
    GRANT EXECUTE ON DBMS_PIPE TO owner;
    GRANT CREATE TABLE TO owner;
    GRANT CREATE VIEW TO owner;
    GRANT CREATE PROCEDURE TO owner;
    GRANT CREATE SYNONYM TO owner;
    GRANT CREATE SEQUENCE TO owner;
    GRANT SELECT ON v_$nls_parameters TO owner WITH GRANT OPTION;
    GRANT SELECT on sys.V_$PARAMETER TO owner;
    GRANT SELECT ON dba_rollback_segs TO owner;
    GRANT SELECT ON dba_segments TO owner;
    GRANT CREATE ANY SYNONYM TO owner;
    GRANT DROP ANY SYNONYM TO owner;
    GRANT CREATE PUBLIC SYNONYM TO owner;
    GRANT DROP PUBLIC SYNONYM TO owner;
    GRANT ck_oracle_repos_owner to owner;
    GRANT CONNECT, RESOURCE TO owner;
    GRANT dba TO owner;
    --(If you want Row Level Security (RLS) on)
    GRANT execute on dbms_rls to owner;
    -- Step 4 Adding a user
    create user user65 identified by user65 default tablespace users
    temporary tablespace temp;
    GRANT CONNECT, RESOURCE TO user65;
    GRANT CKR_OWNER TO USER65;
    GRANT CREATE TABLE TO user65;
    GRANT CREATE VIEW TO user65;
    GRANT CREATE PROCEDURE TO user65;
    GRANT CREATE SYNONYM TO user65;
    GRANT CREATE SEQUENCE TO user65;
    GRANT SELECT ON dba_rollback_segs TO user65;
    GRANT SELECT ON dba_segments TO user65;
    GRANT CKR_OWNER TO USER65;
    GRANT EXECUTE ON SDD_ACC_PRIV_LIST TO USER65;
    GRANT EXECUTE ON SDD_SYS_PRIV_LIST TO USER65;
    GRANT SELECT ON SDD_DEPENDENCY_TYPES TO USER65;
    GRANT SELECT ON I$RM_ELEMENT_TYPES TO USER65;
    GRANT SELECT ON SDD_GLOBAL_NAMES TO USER65;
    GRANT EXECUTE ON JR_UTIL TO USER65;
    GRANT EXECUTE ON JR_SYSTEM_UTIL TO USER65;
    GRANT EXECUTE ON CKMIGFUN TO USER65;
    -- Step 5
    The following are the recommended minimum settings.
    optimizer_mode = Choose
    compatible = 9.0.0 # for an Oracle9i database
    compatible = 8.1.7 # for an Oracle8i database
    max_enabled_roles = 30
    sort_area_size = 262144
    sort_area_retained_size = 65536
    hash_area_size = 1048576
    optimizer_index_caching = 50
    optimizer_index_cost_adj = 25
    shared_pool_size = 32000000
    db_block_buffers # comment out on an Oracle9i database
    db_block_buffers = 2000 # on an Oracle8i database
    open_cursors = 3000
    processes = 100
    db_file_multiblock_read_count=16 # for a 4K Oracle block size
    db_file_multiblock_read_count=32 # for a 2K Oracle block size
    db_file_multiblock_read_count=8 # for a 8K Oracle block size
    Step 5b - (Oracle 9i or 10.2 DB) Install Oracle 9i or 10.2 Import and Export Utilities
    Before installing Designer Repository on an Oracle 9i or 10.2 database, you need to set up the installation workstation to use the Oracle 9i or 10.2 import and export utilities. To do so, perform the following steps at the workstation from which you will be running the repository installation:
    From the Oracle 9i or 10.2 installation media, install the Oracle 9i or 10.2 import and export utilities in a dedicated Oracle home.
    In the Windows Registry, locate the key named:
    HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_HomeName\REPOS61
    where HOMEn is the home number of the home installed into for a multiple Oracle home environment, but is not present where the default Oracle home is being used.
    Change the value of the EXECUTE_IMPORT and EXECUTE_EXPORT variables to point to the new Oracle home. Thus, if the new Oracle home is d:\des_9i, the settings would be:
    d:\des_9i\bin\exp.exe
    d:\des_9i\bin\imp.exe
    -- Step 6
    Log on to the Repository Admin Utility of Designer
    start - programs- Oracle Developer Suite - Designer - Repository Admin Utility
    Install Repository button
    Make sure both check boxes are checked(one is grayed out) Next
    Select the proper tablespace for the seletced box
    Start the install.
    I wish you well.
    Michael

  • Dropped Design Repository from OWB

    I accidentally dropped the design repository from OWB. A backup copy has been restored to the DB, but still it's missing. Please help.

    What OWB release you used and how did you create backup?
    If OWB release is 9.2 and backup has been created with Oracle exp utility then you can try to use script Restore_repos.txt from OWB Sample code page (this is the sequence of actions for restoring design repository). Find this script at
    http://www.oracle.com/technology/sample_code/products/warehouse/index.html
    Maybe this document will work and for OWB10gR1 but I don't sure.
    Regards,
    Oleg

  • Does the designer not use on 9i?

    At the past,i use the designer 6i rel4 on the 8.1.7 a long
    time,while i upgrade the database to 9i,i can not use designer.
    I have installed 9i client on the client.All of the process
    seems Ok.But when i execute the designer,after enter the
    Login,the designer will be closed immediately.
    Does the designer not use on 9i?
    Thanks.

    I've been facing the same problem. We installed Oracle Designer
    6i R4 (Repository version=6.5.52.2) on Oracle 9i
    While creating the repository, some of Designer views failed
    (CI_ROOT_APPLICATION_SYSTEMS, CI_CONTAINER_ELEMENTS,...)
    Both views, have CONSTRAINTS name as one of their columns.
    Oracle 9i, does not accept that name in creating the view. We
    renamed the column to CONSTRAINTS1 to let the process go on.
    Afterwards, designer is not connecting properly, compaining
    that "CDR-20043 - Non-versioned repository has no workarea or
    insufficient privileges"
    Does Oracle Designer 6i R4 works on Oracle 9i ?????
    Please help!

  • Error while saving a workflow via sharepoint designer: Server-side activities have been updated. You need to restart SharePoint Designer to use the updated version of activities.

    While saving a workflow using SharePoint designer on a SharePoint site, I get the following error: 
    Server-side activities have been updated. You need to restart SharePoint Designer to use the updated version of activities.
    Steps to recreate error:
    Login to the WFE server hosting IIS and workflow manager, open SharePoint Designer 2013 and login to a SharePoint site.
    Access the list using SharePoint Designer 2013, in the workflow section, click new workflow. 
    In the new workflow dialog, enter workflow details, click save (see screenshot below).
    Error message is displayed as below:
    After restarting SharePoint Designer, the saved workflow is not seen in the site/workflows or list/workflow section.
    Workaround
    When the above steps are repeated while accessing the site via SPD from any other box besides the WFE/Workflow manager host server, the error is not encountered and its possible to save/publish workflows.
    Notes
    Workflow Manager 1.0 is installed.
    The site has been registered with Workflow manager using Register-SPWorkflowService
    cmdlet.
    Any clue on why is this happening?

    Hi Vivek,
    Please close your SharePoint Designer application, clear/delete the cached files and folders under the following directories from your server installed SharePoint Designer, then check results again.
    <user profile>\appdata\roaming\microsoft\SharePoint Designer\ProxyAssemblyCache
    <user profile>\appdata\local\microsoft\websitecache\<sitename>
    http://www.andreasthumfart.com/2013/08/sharepoint-designer-2013-server-side-activities-have-been-updated/
    Thanks
    We are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Server Side activties have been updated. You need to restart SharePoint Designer to use the updated version of activities.

    Hello,
    I have the following scenario for the installation of EPM 2013 environment:
    1 Server running Windows 2008 R2 SQL Server 2008 R2 Service Pack 2
    1 Windows Server 2008 R2 Standard SP1, running Sharepoint 2013 Enterprise (Standard Initially installed and then migrated to the Enterprise in order to install Project Server 2013), Project Server 2013 and Workflow 1.0 (2013).
    After configuring and validating the configuration of Workflow 1.0 by http://server_name.example.com:12291 page and also check the Application Services in Central Administration and receive the Workflow Status = Connected.
    Alright, but when I run the SPD 2013 RTM to test the creation of Sharepoint Workflow 2013, I get the following warning:
    "Server Side activties have been updated. You need to restart SharePoint Designer to use the updated version of activities."
    I've tried:
    a. Restart SPD2013;
    b. Restart Server 2013 and Sharepoint Workflow 1.0;
    c. Reinstall and reconfigure Workflow 1.0
    And the message is always displayed, preventing the use of Workflow Sharepoint 2013.
    Can anyone help me, I'm in the middle of a deployment to a customer.
    Print of alert

    How did you uninstalledLanguage Pack from SharePoint 2013 ? when I googled it I found that language pack cannot be uninstall@
    http://technet.microsoft.com/en-us/library/cc262108.aspx
    "If you no longer have to support a language for which you have installed a language pack, you can remove the language pack by using the Control Panel. Removing a language pack removes the language-specific site
    templates from the computer. All sites that were created that have those language-specific site templates will no longer work (the URL will produce a HTTP 500 - Internal server error page). Reinstalling the language pack will make the site functional again.
    You cannot remove the language pack for the version of SharePoint 2013 that you have installed on the server. For example, if you are running the Japanese version of SharePoint 2013, you cannot uninstall the Japanese language support for SharePoint 2013."

  • Help in designing a Query

    Hello Everyone,
       I want you help in designing a query that involve OACT,OJDT,JDT1,OBGT and BGT1
    Actually I want a report that shows accounts Budget quarterly and its expenditure quarterly as well..
    Like shown below
    Account Name
    Budget from Jan to March
    Budget from April to June
    Budget from July to Sept
    Budget from Oct to Dec
    Expenditure from Jan to Mar
    Expenditure from Apr to June
    Expenditure from July to Sept
    Expenditure from Oct to Dec
                     Parameters would be Fiscal Year and Date range and Account name
    Can anyone please help me out in that one
    Thanks in advance

    Looking at the test data I have in these tables, it would appear impossible to join them all in one query without using UDFs...
    They don't share any columns.

  • Help.I uninstalled ios8 using the directions on the web site and now all my apps,mail are gone.I backed up to iTunes first but when I try to sync to get everything back,it starts and then says it has failed.What do I do now.Thanks.Jane

    Help.I uninstalled ios8 using the directions on the web site and now all my apps,mail are gone.I backed up to iTunes first but when I try to sync to get everything back,it starts and then says it has failed.What do I do now.Thanks.Jane

    The first time an iPhone is connected to iTunes that is used to sync with another iPhone or iOS device, you are prompted to transfer the backup for the other iPhone or iOS device or to set up the iPhone as a new iPhone.
    The former does as provided - it transfers the backup for the other iPhone or iOS device to the iPhone replacing all data on the iPhone that is included with the backup being transferred. The latter does nothing allowing you to make your various selections for the iPhone sync preferences with iTunes.
    This is designed to be done right away with a new iPhone.
    If you don't have a backup for the iPhone with iTunes on your computer and don't have an iCloud backup that hasn't been updated since choosing to transfer the backup for your iPod Touch to the iPhone, the data that was on the iPhone is gone.

  • Performance Problem on Designer Repository

    Hello,
    We have performance problem on Designer Repository database, I run system statistics, recreate objects, truncate temporary tablespaces, but compile forms runs very slowly, on top sql is this sql statement:
    SELECT MAX(1)
    FROM I$SDD_WA_CONTEXT CTXT
    WHERE CTXT.OBJECT_IVID = :B1
    AND CTXT.WORKAREA_IRID = JR_CONTEXT.WORKAREA
    AND CTXT.WASTEBASKET = JR_CONTEXT.WASTEBASKET
    how optimize this statement?

    jr_wastebasket.purge_insignificant_versions helps, I drop old versions of forms
    Edited by: Vazha_Mantua on Mar 27, 2009 9:24 AM

Maybe you are looking for

  • Itunes 10.5 crashes and won't sync my iphone

    I have downloaded the software udpate on my Mac Mini that I use to sync my iPhone with.  It offered me an update to iTunes and the iPhone.  I backed up the iPhone and transferred purchases whilst it was downloading the iOS update.  It then updated th

  • XSLT Related to the mapping part.

    Hello all , Can You send me the Details related to XSLT for Mapping and Links Related to the same. Thanks,. Srinivasa

  • I bought iPad 4 WIFI/LTE/3G, 64GB, Retina Display, Black.

    My iPad Model A1459. I Live in Saudi Arabia and I notice the LTE network never been active, only 3G network available. Is this model supports LTE networks in Saudi Arabia. Do I need to change it to Model A1460. I like my iPad but I don't like using i

  • Initialization fail during downtime of r/3

    Hi, I ran the setup tables for sales , 11 during downtime. The initialization for 2lis_11_V_ITM failed and now the system is back and running. I deleted the init now and ran the initialization again, it is good. So, If i understand it right, Any docu

  • JAAS: Swing & Web implementation

    Hi, I want to use the JAAS mechanism in 2 applications: one of them is a swing application and the other is a web application. I would like to use the same interface for both applications. I implemented it in the "swing way": using my own callbackHan