Bug page for global pages group?

Hello

When you assign a group of pages (page zero) to a world, I get the following error

Our environment is Oracle 11.2.0.3, apex 5.0.1 listener apex 2.0.1.

I was able to reproduce the problem apex.oracle.com.

Alan

pagegroup.JPG

Hi Alan,

Please let us know! It is indeed a bug and I tabled

Bug 21605583 - creator of the page: ora-01407 when changing global page attributes

This problem occurs if none of the attributes at the level of a global Page (aka Page zero) page is changed.

Solution: Use the view component for this change.

Concerning

Patrick

Tags: Database

Similar Questions

  • Why is there no page groups or groups of States?

    Another question because I just joined the forum.

    Why is there not an option for the States and group pages?  That would make my organizational life a lot easier if I could group all related pages and States in group folders, just like diapers.

    This seems very reasonable. During HTML export, these page groups could establish a hierarchy of folders in the root folder of the Web site.

  • 3407: cannot allocate space to store the property information for global cache

    Salvation of the experts on the issue of a load in ttisql as follows, statement

    CACHE LOAD domain_group GROUP COMMIT ALL 256 LINES;

    This exception is thrown, and I can't find anything with google:

    3407: cannot allocate space to store the property information for the global cache groups because the space in the partition of the temporary data is less than the minimum threshold of 3000000 bytes--of the Member MG2_alone2_1 of the grid

    My my_ttdb DSN is configed as follows:
    [my_ttdb]
    Driver=/home/TimesTen/TimesTen/tt1122/lib/libtten.so
    Data store = / home/timesten/data/database / my_ttdb
    LogDir = / home/timesten/logs
    PermSize = 4000
    TempSize = 32
    DatabaseCharacterSet = AL32UTF8
    OracleNetServiceName = amq_915

    The result of cachegroups is:

    Group cache CACHEUSER. DOMAIN_GROUP:

    Group cache type: asynchronous, Writethrough global (dynamic)
    AutoRefresh: No.
    Breeding: LRU on

    Table roots: GTLD_WHOIS_TEST. GTLD_DOMAIN
    Type of table: spread


    Child table: GTLD_WHOIS_TEST. GTLD_DOMAIN_STATUS
    Type of table: spread

    The County of gtld_domain table is 3,005 million records in the gtld_domain_status table.

    Waiting for your help, thank you.

    According to the error message you need to increase the temporary data partition which is the TempSize setting in your DSN.

    As point of departure set to 1000 and then to monitor it in ttIsql with the dssize command to see if it needs to raise more or may be reduced after a workload has been run.

    Tim

  • Replacement for the Working Group to el Capitan Manager?

    I recently built new servers, intending using open directory.

    The equipment I use are the new mac mini servers, with two 1 TB drives and 16 GB of memory.

    Historically I have used Workgroup Manager for direct starting, deployment of the printer files, user groups and others.

    Is there a replacement for the Working Group Manager who no longer works with el capitan (10.11.3)?

    The replacement is the Manager of service profile. See the built-in help of server for instructions begin. This is beta-quality software, at best.

  • Adding a printer already installed on the pc for the home group network

    I want to add a printer that is already installed on my computer for the home group network. Because it is already installed, it does not appear when the computer search possible printers to be added. I don't want to uninstall and reinstall - our relationship is much fragile. Help, please.

    Hello

    See if this helps you:

    http://Windows.Microsoft.com/en-us/Windows/install-printer-home-network#1TC=Windows-7

    Setting up a shared printer

    "The most common way to make a printer available to a home network is traditionally to connect to one of the computers and then tell Windows to share it. This is called a shared printer.

    The advantage of sharing a printer is that it works with any USB printer. Side tilted? The host computer must always be fed up, otherwise the rest of the network will not be able to access the shared printer. »

    ________________________________

    Homegroup: recommended links

    http://Windows.Microsoft.com/en-us/Windows7/HomeGroup-recommended-links

    Read this section:

    'Connecting to homegroup printers' under ' access to files and printers on other computers in the homegroup.

    http://Windows.Microsoft.com/en-us/Windows7/access-files-and-printers-on-other-HomeGroup-computers

    See you soon.

  • SQL query to search for the line that contains the identifier for each consecutive group

    Hello

    I'm on 11.2.0.3 Enterprise Edition.

    I have a strange request here - do not know if this is possible without going to procedure...

    Given these data of the sample:

    create table test_status (
      status varchar2(10),
      revision_id number,
      revision_timestamp timestamp);
    
    insert into test_status values ('PROPOSED', 1, systimestamp);
    insert into test_status values ('PROPOSED', 2, systimestamp);
    insert into test_status values ('PROPOSED', 3, systimestamp);
    insert into test_status values ('ACTIVE', 4, systimestamp);
    insert into test_status values ('ACTIVE', 5, systimestamp);
    insert into test_status values ('PROPOSED', 6, systimestamp);
    insert into test_status values ('PROPOSED', 7, systimestamp);
    insert into test_status values ('ACTIVE', 8, systimestamp);
    insert into test_status values ('ACTIVE', 9, systimestamp);
    insert into test_status values ('FINISHED', 10, systimestamp);
    insert into test_status values ('FINISHED', 11, systimestamp);
    insert into test_status values ('FINISHED', 12, systimestamp);
    

    Gives me:

    SQL> select *
      2  from test_status
      3  order by revision_id;
    
    
    STATUS     REVISION_ID REVISION_TIMESTAMP
    ---------- ----------- -----------------------------
    PROPOSED             1 25-SEP-14 04.49.47.954000 PM
    PROPOSED             2 25-SEP-14 04.49.47.962000 PM
    PROPOSED             3 25-SEP-14 04.49.47.966000 PM
    ACTIVE               4 25-SEP-14 04.49.47.969000 PM
    ACTIVE               5 25-SEP-14 04.49.47.972000 PM
    PROPOSED             6 25-SEP-14 04.49.47.976000 PM
    PROPOSED             7 25-SEP-14 04.49.47.979000 PM
    ACTIVE               8 25-SEP-14 04.49.47.982000 PM
    ACTIVE               9 25-SEP-14 04.49.47.987000 PM
    FINISHED            10 25-SEP-14 04.49.47.991000 PM
    FINISHED            11 25-SEP-14 04.49.47.996000 PM
    FINISHED            12 25-SEP-14 04.49.48.000000 PM
    
    
    12 rows selected.
    ws selected.
    

    I want to get this result:

    STATUS     REVISION_ID REVISION_TIMESTAMP
    ---------- ----------- ----------------------------
    PROPOSED             3 25-SEP-14 04.49.47.966000 PM
    ACTIVE               5 25-SEP-14 04.49.47.972000 PM
    PROPOSED             7 25-SEP-14 04.49.47.979000 PM
    ACTIVE               9 25-SEP-14 04.49.47.987000 PM
    FINISHED            12 25-SEP-14 04.49.48.000000 PM
    

    Then query the table ordered by Revision_Id, I would get the line containing the highest revision for each consecutive group of status values.  I am able to get the line containing the highest revision for each separate status, value, but I can't deal with the scenario where a state value reappears later.  In the case of the real world, it is a workflow and I need to take into account the fact that an element through the workflow may be redirected to the back front she proceeds forward again.

    Hope it makes sense.

    Thank you

    John

    Hi, John,.

    John OToole (Dublin) wrote:

    Hello

    I'm on 11.2.0.3 Enterprise Edition.

    I have a strange request here - do not know if this is possible without going to procedure...

    ...

    Do not no stinkin' procedure:

    WITH got_grp_id AS

    (

    SELECT the status, revision_id, revision_timestamp

    ROW_NUMBER () OVER (ORDER BY revision_id)

    -ROW_NUMBER () (PARTITION STATUS

    ORDER BY revision_id

    ) AS grp_id

    OF test_status

    )

    SELECT status

    MAX (revision_id) AS revision_id

    MAX (revision_timestamp) DUNGEON (DENSE_RANK LAST ORDER BY revision_id)

    AS revision_timestamp

    OF got_grp_id

    GROUP BY status, grp_id

    ORDER BY revision_id

    ;

    For an explanation of the technique of Difference sets used here, see

    Analytic Question lag and lead and/or

    Re: Ranking of queries

  • I recently bought two pictures for my youth group. When I looked behind them image is a larger image, but, when I downloaded it it's a smaller image. How can I get the enlarged image?      #93598775 & #18109349

    I recently bought two pictures for my youth group. When I looked behind them image is a larger image, but, when I downloaded it it's a smaller image. How can I get the enlarged image?#93598775 & #18109349

    Follow these steps: I downloaded my 10 free images and they all have the Adobe watermark on them, so I can't use them. Why do they have a watermark on them?

  • has someone at - he found a solution to the search for global marker?

    has someone at - he found a solution to the search for global marker?

    the glaring omission of global search for markers - or exclusion of metadata to the project search function marker - is a big handicap for any project of long form doc.

    Is there a work around or maybe a plan to remedy this bizarre situation in an upgrade?

    big fan of the first, and even if there is plenty of downturns, it seems as if there is always planned if solutions non-existent

    Thank you!

    Hi Charliepus,

    Sorry about that. Create a feature here: http://adobe.ly/feature_request

    Thank you
    Kevin

  • Hide the headings for specific users/groups

    Hello

    Is this possible with WEBhelp, hide/Exclude subjects for specific user groups / users?

    Currently, we use html/chm help. There is a project for our main software. I have another project for an add-on that is integrated in the table of contents of the main project using the merged help function. We only install help for this module when the customer has purchased this module. So the customers who do not have this module do not have help to make it.

    It is possible something similar with WEBhelp (Pro)? I ask because we go to WEBhelp (Pro). In this case, there is no help by the customer file, but one for all the world. Is there a way to display only the additional items to customers who use this module?

    * The only way I can think is to integrate all this into a single project and publish twice (one with and one without the themes of the additional module) using the tags of the construction. Or is there a way to let the RoboEngine/RoboServer merger it on the fly, but based on the criterion that the customer has the module?
    * This additional help project can be added to the main help as a teaser for other customers also use this module (others cannot buy unless you are a franchisor of a group of specific hotel for which we have developed the module)

    Thank you

    Hi John-Pierre. RoboServer this is impossible on the fly. Tags of the generation are the way to go. Simply create a new tag, apply it on the subjects you want no franchises user to see, then apply the tag to your SSL to exclude it from the output. Viola, you have your username not franchisees to help. Simply remove this label from construction of the SSL for users of franchises so that they get everything. You can also create two identical WehHelp Pro SSL - 1 vote against and no label construction and the other with a construction tag to avoid you to have to remember to add/remove.

    How your application will know files that help write? Is this a separate executable? I know that it is possible for the INSTALLATION. EXE to check the license before installing the modules, but I never went to the bottom of this line.

    BTW, build tags can be used on all types of output.

  • Determine a value for each record for the whole group

    < < Sorry I pasted erroneous results earlier > >

    Hello

    I have a table (in production, join the many tables, but for simplicity, I created a table), which has a few related accounts grouped by ACCT_GRP_ID I have to write a SQL (not a PL/SQL), who should have all columns of this table and an extra column "FLAG". For GA_CD = BBC, FLAG must have a value of 'No Show', if the APP_DT of at least a recording with the group is less than the current year also all the records in the group will have a value of 'Show '. For the record no BBC FLAG must always be 'Show '.

    DDLS
    {code}
    CREATE TABLE ACCOUNTS
    (NUMBER OF ACCT_GRP_ID,
    GA_CD VARCHAR2 (10),
    AGNT_NAME VARCHAR2 (50).
    NUMBER OF CASE_NUM
    NUMBER OF FUND_AMT
    DATE OF APP_DT,
    STATUS VARCHAR2 (10));

    INSERT INTO ACCOUNT VALUES (1, 'BBC', 'SAMANTHA, JOSE, 12345, 234.33, 2 AUG 2008', ' PLACED');
    INSERT INTO ACCOUNT VALUES (1, 'BBC', 'SAMANTHA, JOSE, 12346, 331,13, 24 APR 2009', ' PLACED');
    INSERT INTO ACCOUNT VALUES (1, 'BBC', 'SAMANTHA, JOSE, 12347, 201,27, 13 FEB 2009', ' PLACED');
    INSERT INTO ACCOUNT VALUES (2, 'BBC', ' MARK, ROSS, 12348, 98.12, 31 MAY 2009', 'PLACE' ");
    INSERT INTO ACCOUNT VALUES (2, 'BBC', ' MARK, ROSS, 12349, 121.00, 25 JUNE 2009', 'PLACE' ");
    INSERT INTO ACCOUNT VALUES (2, 'BBC', 'BRAND, ROSS, 12350, 11.00, 27 JUNE 2009', 'CLOSED');
    INSERT INTO ACCOUNT VALUES (3, 'BBC', "RAJ MALIK", 12351, 89.00, 31 DEC 2008', 'PLACED');
    INSERT INTO ACCOUNT VALUES (3, 'BBC', "RAJ MALIK", 12352, 22.00, 26 OCT 2008', 'PLACED');
    INSERT INTO ACCOUNT VALUES (4, 'BBC', 'SHANE, WILLS', 12353, 443.00, 7 JUNE 2009', 'PLACE');
    INSERT INTO ACCOUNT VALUES (5, 'BBC', 'JANE, WALLACE, 12354, 74.00, 17 JAN 2009', ' PLACED');
    INSERT INTO ACCOUNT VALUES (NULL, 'BBC', 'ROSY, BETH', 12355, 124.00, 21 MAR 2009', 'PLACE');
    INSERT INTO ACCOUNT VALUES (NULL, 'STAR', 'TINA, WZWICK', 22330, 89.00, 31 DEC 2008', 'PLACED');
    INSERT INTO ACCOUNT VALUES (NULL, 'STAR', 'YANA, KORVIN', 27351, 22.00, 26 OCT 2008', 'PLACED');
    INSERT INTO ACCOUNT VALUES (NULL, 'STAR', 'SARA, YUI', 22352, 443.00, 7 JUNE 2009', 'PLACE');
    INSERT INTO ACCOUNT VALUES (NULL, 'STAR', 'MIKE, TROY, 22453, 74.00, 17 JAN 2009', ' PLACED');

    COMMIT;
    {code}

    Required result:
    {code}
    APP_DT GA_CD AGNT_NAME STATE BOITE_ FUND_ ACCT_ INDICATOR
    AMT NUM GRP_ID
    1 SAMANTHA, JOSE PLACE 12347 201.27 BBC 13/02/2009 no show
    1 SAMANTHA, JOSE PLACE 12346 331.13 BBC 24/04/2009 no show
    1 SAMANTHA, JOSE PLACE 12345 234.33 BBC 08/02/2008 no show
    MD2 BBC BRAND, ROSS CLOSED 12350 11 6/27/2009 see the
    MD2 BBC BRAND, ROSS PLACED 12349 121 6/25/2009 see the
    2 BRAND of BBC, ROSS PLACE 12348 98.12 show of 31/05/2009
    3 BBC RAJ MALIK not PLACED 12352 22 10/26/2008 no show
    3 BBC RAJ MALIK not PLACED 12351 89 12/31/2008 no show
    4 BBC SHANE, WILLS PLACE 12353 443 6/7/2009 see the
    5 BBC JANE, WALLACE PLACE 12354 74 1/17/2009 see the
    STARS of MIKE, TROY PLACED 22453 74 1/17/2009 see the
    See the BBC ROSE, BETH PLACED 12355 124 3/21/2009
    STAR SARA, YUI PLACED 22352 443 6/7/2009 see the
    TINA, WZWICK STAR PLACED 22330 89 12/31/2008 see the
    YANA STAR, KORVIN PLACED 27351 22 10/26/2008 see the
    {code}

    As in the results Group 1 has a record with the date of 2008 for the whole group getting 'No Show'. Group 2 has all the records this year, so he gets the 'Show '.
    Help, please!

    Published by: Kuul13 on June 25, 2009 13:31

    Published by: Kuul13 on June 25, 2009 13:43
    I think I'm really having a BAD BAD day... Sorry again... I don't need the domain TOT_FUND_AMT...

    Hello

    Thanks for posting the DDL and DML statements. This helps a lot.

    I don't understand the output, however. Do you want to really two rows of output for each row in the table? The tot_fund_amt is copied from somewhere else? More important still, the results do not include the new flag column. Isn't the point of all of this question? It's good to describe how the indicator is calculated, but you have to show, too.

    I think you want analytical MIN function to find the first app_dt in each group, like this:

    SELECT  a.*
    ,     CASE
              WHEN  ga_cd = 'BBC'
              AND   MIN (app_dt) OVER ( PARTITION BY  ga_cd
                                          ,              acct_grp_id
                                        )  < TRUNC (SYSDATE, 'YYYY')
                    THEN  'No Show'
                    ELSE  'Show'
         END     AS flag
    FROM     accounts   a
    ;
    

    Output:

    . ACCT
      _GRP GA                     CASE     FUND
       _ID _CD  AGNT_NAME         _NUM     _AMT APP_DT     STATUS FLAG
    ------ ---- --------------- ------ -------- ---------- ------ -------
         1 BBC  SAMANTHA, JOSE   12345   234.33 08/02/2008 PLACED No Show
         1 BBC  SAMANTHA, JOSE   12346   331.13 04/24/2009 PLACED No Show
         1 BBC  SAMANTHA, JOSE   12347   201.27 02/13/2009 PLACED No Show
         2 BBC  MARK, ROSS       12348    98.12 05/31/2009 PLACED Show
         2 BBC  MARK, ROSS       12349   121.00 06/25/2009 PLACED Show
         2 BBC  MARK, ROSS       12350    11.00 06/27/2009 CLOSED Show
         3 BBC  RAJ, MALIK       12351    89.00 12/31/2008 PLACED No Show
         3 BBC  RAJ, MALIK       12352    22.00 10/26/2008 PLACED No Show
         4 BBC  SHANE, WILLS     12353   443.00 06/07/2009 PLACED Show
         5 BBC  JANE, WALLACE    12354    74.00 01/17/2009 PLACED Show
           BBC  ROSY, BETH       12355   124.00 03/21/2009 PLACED Show
           STAR TINA, WZWICK     22330    89.00 12/31/2008 PLACED Show
           STAR SARA, YUI        22352   443.00 06/07/2009 PLACED Show
           STAR MIKE, TROY       22453    74.00 01/17/2009 PLACED Show
           STAR YANA, KORVIN     27351    22.00 10/26/2008 PLACED Show
    

    Note that the NULL acct_grp_id is a group. PARTITION BY acct_grp_id is of course necessary, but we must also, PARTITION BY ga_cd all non-BBC lines will be included in this group. In other words, we are unwilling reported as 'No Show', all ROSY just because TINA or JANA had an early app_dt.

  • solve bugs Pages 5.6.2 or permanently using 4.3

    I seem to get weird apostraphe and other data on my pages documents and RELY ON this WORK to get the work done. for over a year it has been a problem on my machines running the mavericks, and then yosemite where I MANUALLY open all my documents pages by selecting 4.3 which seems to show the documents very well.

    I tried a number of different ways to get my computers to open these documents ALWAYS WITH 4.3, but nothing seemed to happen. so I'm having constantly to close documents and reopen in 4.3.

    then there's a weird extra aggravation where, if I want to reproduce a pages document, I am prompted to update the document 4.3 for some reason any?

    at one point, I got a very detailed answer to one person, but to be honest, my brain locked up when someone told me there was another problem with documents pages get damaged when stored on dropbox and I just let fall the whole issue because I was too terrified imagine I've damaged data in dropbox.

    Anyway, nobody knows what the State of affairs on the resolution of these horrible instead of workflow problems?

    All documents Pages, whether they are those created by the Pages ' 09 v4.3 or Pages v5.6.2, store application in the document as application: Pages.app. Cannot set the application of the opening in the Finder Get Info Panel to always be the Pages ' 09 v4.3, because Pages v5.6.2, which is located in Applications will dominate. And now, you have discovered that documents v5 Pages are not directly compatible with Pages ' 09.

    Several years ago, Dropbox to list documents Pages ' 09 no-Package compatible with their site folder. Now, they list no document documents officially supported Apple {Pages, Numbers, Keynote}. Many people store their documents on Dropbox Apple anyway. If the files are lost or damaged, don't expect Dropbox to offer any assistance.

    If you download a word docx file in Google Drive, it will remain intact. Download a Pages document and Google Drive will attempt to decompress/unzip the document, because the software of the site has not been programmed to understand that Apple documents are in their final form - like documents of Microsoft.

    When you try to open documents v5 Pages in Pages ' 09 v4.3 via the file selector, you will get the information panel that you need a newer version of the Pages. It's just saying you (in a confused way)-that you tried to open a document in Pages v5 inconsistent through the selector of Pages ' 09. You need your version of 5 Pages to open it (via a double-click). Pages ' 09 documents via the document title bar red light closing does not complete Pages ' 09. It will continue to operate and ambush double-click to open documents v5 Pages. He will tell you that any index.xml file missing - a format internal unique in the Pages documents prior to the publication of v5 Pages.

    Apple has had three years to fix Pages v5 and not him have not eradicated many bugs or deficiencies in the application. Pages ' 09 v4.3 was abandoned three years ago. It is not a permanent solution as Apple does not take care to avoid damaging this application beyond usability with the next updates of OS X. It's roulette and the history of the processing of Apple solutions.

  • 4.0.2 bug - Page export and import of the issues

    When you export an individual page in an environment (for example, a development environment), and then import it into another environment (in this example, the QA environment).
    a. all models associated with this page is lost and you will need to go to edit the page and select Page templates, regions, buttons, elements, etc.
    b. If you import a page of interactive report that already exists in the environment that you import in, registered version of the interactive report that existed for the page are lost.

    Well, in the environment we had, if we HAD a critical bug, we might plan a failure and install the new changes approx. would be low since we had our own house built SSO application... Migrate us app integration, would go through a test script and confirm the app was ready and DBA migrate app all pl/sql code supported production...

    Since they have existed in 3 separate workspaces, we could NOT only copy pages between apps...

    It was a small price to pay for the audit-ability...

    Thank you

    Tony Miller
    Webster, TX

    What happens if you were really stalking a paranoid schizophrenic... They would know?

  • Portal Page, the Page groups and access - AUDIT

    Hi all

    I have a client who has an Intranet Portal that contains hundreds of pages with different conditions of access.

    They would like their portal, checking that they are planning to give it an overhaul and erase all old pages.

    A list of information they would like to include:
    (1) a list of all current pages (possibly showing the hierarchy),
    (2) a list of the user who has access to each page
    (3) the last time a page has been visited and possibly some stats on how many times she visited


    Is there a way to get this type of audit information? This functionality is provided in the portal?

    I leaned on these forums - people have asked the same questions, but it doesn't seem to be an answer.

    I have no idea where to start, so any information would be appreciated!

    Amanda.

    Hi Amanda,.

    For such a solution, you need to use several sources and write a custom solution. and to be honest with you, generally, it is not inclined to simply publish or State all these scripts custom in public forums. However, for works custom / advanced for a smart developer, a set of indicators should be enough.

    you will need to write scripts to run on your pages to collect the data you are looking for.
    You can get the list of pages in a number of ways. including using wwsbr_api. or just go and extract from the table wwpob_page$.

    to search for access privileges, you can discover the use of this table: portal.wwsec_sys_priv$
    for example;
    Select the separate name of portal.wwsec_sys_priv$ where object_type_name = 'PAGE '.
    Please see this note. [311982.1 ID]

    for usage statistics, Portal 10.1.4 offers a performance monitoring tool. you order it and then can get statistics on how many times those that have been visited. You can search in the Portal performance analysis oracle documentation.

    hope that helps!
    AMN

  • We get an error display Omniportlet page groups

    I get the following error message when you try to view an OmniPortlet after trying to pass the URL of a web site.

    Error (Portlet: 100, provider: 94762712)

    Someone knows this?

    It turns out that when our host changed our URL somehow the Omniportlet Portlet provider was is no longer 'registered' correctly. Restoring the OmniPorlet provider we now have access to our Omniportlets again.

  • How to configure firefox for deployment without group policy

    So my search resulted in my understanding there is no group policy for FF. I don't know FrontMotion Firefox, but I want to leave that as a last resort for now.

    I need to find a solution to add a location of CIP to the proxy but also to set the home page. I guess there is a preferences file in a location that I can modify and put all those who have the FF, but I was not able to find it.

    Can someone point me in the right direction?

    Thank you!

    Hi JHBPJF, you may refer to the following article to deploy a central settings for your firefox installations file: http://kb.mozillazine.org/Locking_preferences

Maybe you are looking for