How to alter the cache of sequences

Hi,
I upgraded my Designer to the latest version (9.0.2.8). When I now generate a table to the database then Designer creates an alter statement for the sequence to set the cache to 20.
Is this new functionality? How can I change this?
Regards,
Vincent Botteman

I found the definition of the sequence on the "DBA Admin" tab. The property Cache didn't contain any value. If I enter 0 as value and generate from the "DBA Admin" tab then Designer don't change the sequence in the database because their values matches.
If I generate the table from the "Server Model" then Designer still wants to change the cache value.
I think this has something to do with a default value (= 20)that Designer uses when one generates from the "Server Model".

Similar Messages

  • Custom Search portlet : how to sort the result in sequence (Portal 10.1.4)

    With a Custom Search portlet how to Sort the Result By Sequence. i.e. by respecting arrangements of the items in the page of contents?
    Actually the Results Options "Order By" are : Create Date, Author, Creator, Date Updated, Display Name, Last Update by, Publish Date, Score.
    Is there an action to add the "Sequence" Order By result Option?
    Great thanks for your kind help.
    Best regards

    No, I agree that it is functionality that should be added to the product, but it
    is not a bug because it was not written to do this.
    It is a short coming of the product.
    Cheers,
    Ersan

  • Need HELP (Project Issue) : Having 3 individual VIs, datalogger.vi, start vi, amksms.vi done. (How to run the VIs in sequence order - datalogger start amksms combine into 1 VIs? )

    Need HELP (Project Issue) : Having 3 individual VIs, datalogger.vi, start vi, amksms.vi done.
    (How to run the VIs in sequence order - datalogger > start > amksms combine into 1 VIs? )

    VIs in icon.
    how would it able to run in the sequence order:
    data first, follow by start and lastly amk sms.
    Attachments:
    dsa.jpg ‏10 KB

  • Custom Search Portlet : How to Sort the Result By Sequence (Portal 10.1.4)

    Customer request: With a Custom Search portlet how to Sort the Result By Sequence. i.e. by respecting arrangements of the items in the page of contents?
    (Like it's possible in MyOracle)
    Actually the Results Options "Order By" are : Create Date, Author, Creator, Date Updated, Display Name, Last Update by, Publish Date, Score.
    Is there an action to add the "Sequence" Order By result Option?
    Great thanks for your kind help.
    Best regards

    No, I agree that it is functionality that should be added to the product, but it
    is not a bug because it was not written to do this.
    It is a short coming of the product.
    Cheers,
    Ersan

  • How to alter the appearance of Notification in Worklist

    I am trying to work out how to alter the appearance of the reponse section of a workflow notification accessed via the worklist.
    I have set up three options in a Lookup group. They appear as a row of buttons across the bottom. As a contrast in the PO Approval workflow notification Oracle has the Lookup list as a drop down box with the options.
    How is this done, where can I find some documentation?
    Thanks,
    Michael

    The number of possible responses (buttons) determines whether buttons are rendered or a pop list is shown
    I am trying to work out how to alter the appearance of the reponse section of a workflow notification accessed via the worklist.
    I have set up three options in a Lookup group. They appear as a row of buttons across the bottom. As a contrast in the PO Approval workflow notification Oracle has the Lookup list as a drop down box with the options.
    How is this done, where can I find some documentation?
    Thanks,
    Michael

  • How to clear the cache files in folder Temporary Internet Files

    When one user opens files such as pdf. or doc. from Portal,  the same file will be downloaded into the Temporary Internet Files folder. if another user copied the files out of the Temporary Internet Files folder from this computer and save to someplace else, then we face one security problem.
    So my question is: How to clear the cache files in folder Temporary Internet Files??  Can we delete the files automatically when close the files in Portal??
    or is there some ways to make encrypty???
    Thanks very much!

    Hello,
    this is a basical security problem which should be resolved by the OS standard security setup . No other user should have access to the temporary file folders in the personal directory. The user account must be secure. Normaly your security problem should not be a problem if basic security exists on the clients.
    You can resolve this problem if every user has his own account on the client
    The users having no administration permissions on the clients
    The folder for the temporary internet files is placed in the personal profile folder of the user account.
    On default no other user has access rights to you personal folder, this means the client OS is setup correctly.
    You can setup the IE that no temporary files are saved (but it reduces performance)
    You can enable IE to delete automaticly the temporary files if IE is closed.
    Hope it helps.
    Regards
    Alex

  • Teach me how to create the opening "hallway" sequence using Adobe After Effects

    I need to create a memorial video for a loved one that passed away. Can someone teach me how to create the opening "hallway" sequence using AE? here is the video from youtube: https://www.youtube.com/watch?v=4191kcW07f0 . Thanks

    I'll give a very brief overview but, presuming that you are new to After Effects, understanding and executing on this overview will require learning the basics of After Effects.
    You'll be creating a 3D scene based on a few 3D layers: one each for the floor and each wall. Each of those 3D layers will be a precomposition layer; the wall layer with the pictures will be based on a precomposition in which you have placed your pictures as individual layers. You will create some 3D lights shining down from above. You'll create a 3D camera that you will then animate to move down the hallway.
    As I said, that is a very brief overview. Understanding each of those pieces will require some learning. After Effects is not a simple application, so you do need to be prepared to put in some learning time if you are going to do this yourself. Here is the place to start: http://adobe.ly/AE_basics
    All that said, I would recommend that you hire someone to do this for you. Learning a new and complex creative application under the time pressure (and other pressure) that you are under may be too much to ask.

  • How to flush the cache of a JCO repository ?

    Does anybody now how to flush the cache of the JCO repositories of pools managed by Netweaver application server without restarting the JVM ?
    The reason I'm asking is that, whenever a tables or structure changes on ABAP side (CRM,  IS-U, R/3), even though we redeploy the J2EE applications, they do not see the new definitions, and we have to restart the JVMs.
    This is particularily annoying in an "high availability" production environment such a ours.
    We need a close to 24/7 up time, and putting down the JVM for even a few minutes is becoming a problem.
    I'd like to be able to manually flush the repositories when needed.
    For example, is it possible to write a small java application that could perform the flush on a single request ?
    I did not try writing any code to do so yet, but I guess this snippet can do the work:
    IRepository rCRM = JCO.createRepository("FLUSH_CRM", "java:comp/env/eis/pool_crm")
    while (rCRM !=null)
       String [] crmFuncts  = rCRM.getCachedFunctionInterfaces()
       String [] crmStructs = rCRM.getCachedStructureDefinitions()
       for (int i=0; crmFuncts!=null && i<crmFuncts.lenght; i++)
          rCRM.removeFunctionInterfaceFromCache(crmFuncts<i>);
       for (int i=0; crmStructs!=null && i<crmStructs.lenght; i++)
          rCRM.removeStructureDefinitionFromCache(crmStructs<i>);
       rCRM = rCRM.getNextRepository();
    Does it ?
    Edited by: Croussette Yves on Jun 9, 2008 8:46 PM
    Edited by: Croussette Yves on Jun 9, 2008 8:47 PM

    Hi,
    Please check these link:-
    1.[https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/3219]
    2.https://www.sdn.sap.com/irj/scn/thread?messageID=601915
    3.https://www.sdn.sap.com/irj/scn/thread?messageID=135202
    Best Regards,
    Atul Bhatia

  • How to delete the cache from Presentation Services(Web UI)

    Hi,
    How to delete the cache from Presentation Services(Web UI) and from rpd also.

    Hi,
    For Presentation services cache refer : http://gerardnico.com/wiki/dat/obiee/presentation_service_cache
    For RPD Cache :
    Admin tool(rpd) > Manage > Cache > Action > Purge
    or check following links
    http://gerardnico.com/wiki/dat/obiee/event_table
    http://oraclebi.blog.com/automating-cache-purging-without-using-obiee-scheduler/
    cheers
    Aravind

  • How to increment the date using sequence?

    how to increment the date using sequence?
    01-jan-10
    02-jan-10
    30-jan-10

    794244 wrote:
    how to increment the date using sequence?
    01-jan-10
    02-jan-10
    30-jan-10This doesn't look like a task where a sequence is usefull.
    A sequence is a number generator that guarantees that multiple sessions will all get a different number.
    Even if the sequence is fetched for differnent users (=sessions) that the same time.
    This in turn means that the value returned by the sequence will depend on actions done in other sessions.
    Typical task: create a new unique primary key number. The number MUST be different in all sessions.
    In your case I guess that the same logic should work regardless of the session that executes it. So you need a "number generator" that works indepented from other session values. There are several ways to create such a numbered list.
    The basic idea is to create a select statement that simply returns as many rows as you need. And then use ROWNUM as the number generator. Examples how to do this have already been given. LEVEL works also in hierarchical queries.
    if my interpretation of your requirement is right, then all answers that really used a sequence seem to be wrong. Even if the output looks ok. At best they are just slow. To create new sequence values is a complex task and the database needs a little time for all the synchonization issues that come with it. At worst it will have gaps in the sequence because other sessions used the same value while the numbers were created.
    Edited by: Sven W. on Sep 20, 2010 2:08 PM

  • How to clear the cache in the portal browser

    Hello Experts,
    Iam unable to clear the cache in the portal. I tried  clearing the Navigation cache , PRT cache,PCD cache,Database cache,UME cache.
    The senario is in the browser if iam logging with some user X , he should see only 1,2,3 countries, and if i logg off and again logg in the same browser with different user he is seeing same 1,2,3 countries unlike he should see 4,5 countries.
    But if iam opening in different browser iam getting the correct one with cache cleared.
    I want to acheive this in the same browser.
    Qucik help in solving out this cache problem is appreciable.
    Regrds,
    Manasa.

    There is one more important cache: the HTTP Provider Service cache (in VA).
    To find out why the browser is showing the same languages, analyze what the server is sending to the browser with HTTPWatch or Firebug and look at the cache flag. Also check what is the iView cache parameter? Is it user, session, shared or none?
    How do you do the logoff? The best thing is to make sure that the HTTP Session is killed. If not, the portal may send data that is cached for the HTTP Session to the browser. When you open a new browser, you will also open a new HTTP Session. That could be the cause why it is working with a new browser instance.
    br,
    Tobias

  • How to get the loaded client sequence file path/name?

    I added a step in Process model, and wanted to get currently loaded client sequence file name/path. I used the variable of "SequenceFile.Path" but then I realized what I would get is the process model file path, not loaded client sequence file path/name. How can I get loaded client sequence file path/name?
    Thanks!
    Jacky

    I dont understand what you are trying to achieve.  Can you provide more information.
    If you are trying to dynamically load and run a client sequence file at run time you need to make a couple of calls to the TS API from inside the process model, Engine.GetSequenceFileEx to get a reference to your sequence identified by its pathname, and then Execution.ClientFile to tell the process model which sequence you want to run.
    Steve
    There are 10 types of people in the world that understand binary, those that do and those that don't.

  • How to return the newly generated sequence id for an INSERT statement

    A record is to be inserted into a table with a sequence for the primary key. The newly inserted sequence value is to returned on successful insertion. Is it possible to do all this in a single statement (say executeUpdate or any other) using java.sql.* ?
    E.g.: - A student record is to be inserted into the STUDENT table. There is a sequence (by name Student_ID_SEQ) on the primary key Student_ID. Student_ID_SEQ.nextval will generate the new sequence id which will be provided as input to the SQL statement (say statement.executeUpdate) along with other student attribute values. On insertion the created sequence id should be returned. And all this should happen in a single statement (single call to database). Stored Procedures can accomplish this. But is this feasible without the use of Stored Procedures?
    Thanks.

    a better aproach is to generate the auto key on the
    database side, not on the application side.That's his problem - since the database is supplying the key for the new record his application which executed the SQL has no way to identify the record that was just added. I just create the key on the app server and accept the likelihood of overlap (which is extremely small).
    Here is a more technical explanation:
    Table Person
       ID,
       Name,
       Phone Number,
       Age
    }The field ID is an autonumber, and all other fields are not unique.
    Now, when this code executes:
    PreparedStatement pst = conn.prepareStatement("Insert Into Person (Name, Phone Number, Age) Values ?, ?, ?");
    pst.setString(1, "John");
    pst.setString(2, "405-444-5555");
    pst.setInt(3, 44);
    pst.executeUpdate();How can the app determine the ID of the person just added since no query is possible which is guaranteed to select just the record that was inserted?
    Since I am generally against Stored Procedures I would develop a way to insure that your keys were unique and generate them inside the app server.

  • How important are the Cache Backup Battery Modules

    I have finally gotten my raid in full speed by selecting write cache and drive cache options in the raid admin. It looks like cache backup batteries are recommended for those options, but I don't have any. How critical is it to have those batteries ? I work with broadcast video and 12 client setup.

    If you aren't using a UPS, they are very important. If you suddenly lose power with the cache enabled, there will be data that was written to cache but not to disk. That data will be lost -- this could cause data loss and/or corruption of the volume.
    If you have a UPS (actually, two separate UPSes with one side of the RAID connected to each), then the battery back-up modules are less important. What they do is maintain power to the cache for at least 72 hours in the event of a power failure. So long as you get power back to the RAID within this window, data will be safely pushed from the cache down to the disks on the RAID.
    For $300, I think it's an easy choice, personally.

  • How to verify the caching

    My Queries are not caching even i enabled chaching in NQScinfig.ini file. How to verify and resolve the problem. Please suggest the answer.

    Are the physical tables underlying your queries actually flagged as "cacheable" in your RPD?
    Did you restart your BI Server enabling caching in the NQSConfig?
    With the server running: what do the Oracle BI Management MBeans say about the caching parameter?

Maybe you are looking for

  • LabView Run-Time Engine 2009 installation failure

    Hi, I have problem to install Labview Run-Time Engine 2009. This error occur: Die Installation von NI VC2008MSMs x86 ist auf Grund des folgenden Fehlers fehlgeschlagen. Auf den Windows-Installationsdienst konnte nicht zugegriffen werden. Die kann vor

  • Unable to load the transactions"

    Hi All, I have established the JCO connection between SAP and xMII. However, in the Routing Rules tab of iDOC listener, I am getting the error as " Unable to load the transactions" Can anyone help me in this? Best Regards, Ajit Dubal.

  • Opmn failed to start

    Hi, I am getting the follwing error while starting the OPMN services for the Oracle Application server 10gR2 . 08/12/18 16:38:22 [4] ONS server initiated 08/12/18 16:38:22 [2] BIND (Can't assign requested address) 08/12/18 16:38:22 [2] 10.187.152.76:

  • CFQuery - Excel file

    Hello, everyone. I'm trying to take a query object and insert the data into an Excel file.  I've tried the CFCONTENT/CFHEADER route, and I get the error message about the file not being the same type as the extension. Is there a better way to get dat

  • Events in maintenance view

    I was trying to put some checks through event in maintenance view. It is working while creating a new entry. But in case an exisiting entry is being modified it is not working. Pls help.