Is it possible to disable a Sequence?

Is it possible to disable a sequence. In the documentation below i can't find an option to disable a sequence.
http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_2011.htm#SQLRF00817

Is it possible to disable a sequenceHow are you using the sequence ? Sequences are often used to populate/update columns when inserting/updating rows. If so, and assuming you can "disable" the sequence, what happens at the next insert/update ?
Anyway, if "disable" has the same meaning as disable a trigger or a constraint, then no, that's not possible.

Similar Messages

  • Can it be possible to disabled F12 key on boot sequence?

    Hi,
    Lenovo G570
    Can it be possible to disabled F12 key on boot sequence.
    I want to avoid the use of CD for booting.

    I have the bios provided with a supervisor password (SVP).
    At the moment I can with SVP press F12 at boot loose, the boot sequence to
    Make CD and boot the computer from CD. I will indeed preventaccurate.

  • Is it possible to disable multiple logins?

    Is it possible to disable multiple logins by the same user on different computers? I have network hosted user accounts. I need a way to NOT make it possible for user A to go to client Mac A, login and leave himself logged in there then go to client Mac B and login there also. This is creating some unpleasant effects on the server - naturally!
    Any easy way to accomplish this? Perhaps through Profile Manager?
    Thanks!

    Simon,
    Thanks for the reply but I need some elaboration.... "the "Login" preferences for users and groups".... what exactly are we referring to? I don't see such option (or atleast the way it's written), in either Server app or Profile Manager. Are we talking about the same OS X version?
    Thanks.
    P.S. Despite the fact that I have enabled the option in Profile Manager to logout all users on all computers after 30 minutes of inactivity, I have noticed that the iMac clients don't log out the users after the said time...

  • Is it possible to disable the 'edit layout' link on the record detail page

    Is it possible to disable the 'edit layout' link on the record detail page? Not the homepages, I know there is a switch for that, but I thought there was one for the detail pages?
    I want to disable this as I dont want users saving their own layouts, they must stick to the related sections defined in the default layout. The problem is that if they are to have access to certain related lists when an opportunity is of a certain type but NOT other types. If they have saved the layout (using the 'Edit Layout' link), and change the record type, they will see related sections that have been set to 'Not available' in the default layout (ie step 4) for that 'type'.

    Robbo, at this time it not possible to disable the Edit Layout on the record detail page.

  • Is it possible to disable the screen saver for a certain app?

    Is it possible to disable the screen saver just while a certain application is running?
    The app seems to crash when the screen saver comes on.
    Just so you know, application I'm using is Hogwasher; a newsgroup reader.

    Not really. Just disable it manually when you run that application. Then, send off a bug report to the app's developer and tell him to update it for the latest Tiger. Alternatively, use another newsgroup reader.

  • Possible to disable crtl+alt+del button on HP Slate 500?

    Hello
    I was wondering if it is even possible to disable the crtl+alt+del button on HP Slate 500? As my company has me reviewing the unit to be possibly used within our company but one of the requirements is to be able to lock the tablet down. And one of the things they want is to prevent people from being able to use the crtl+alt+del to access task manager since the plan is to lock windows to one open application. But I can't see any settings in the bios to disable that button. And there are no oblivious options I can find on the Slate and the button does not appear to be controlled by a priority HP software product. The only other way I could think of doing it would be to somehow disable it from the registry.?

    This can be done using the Pro version or higher of windows 7, using gpedit and/or administrative templates you can control everything a user account can do or not do.
    gpedit.msc in a run command opens the group policy editor
    http://technet.microsoft.com/en-us/library/cc753298.aspx

  • ICloud - is it possible to disable that feature after downloading Maverick OS X?

    I have a Mac desktop with OS X 10.8.5 and an iPhoto library of 10,500 photos. The version of iPhoto is 8.1.2 and there has been some 'conflict' between the two so apparently I have to first dowload the latest OS X (Maverick) so I can then down load the newest iPhoto version ( 9.5.1).
    I note the iCloud feature in Maverick and am simply wondering that after I have completed the download is it possible to DISABLE the iCloud feature?
    Any assistance will be greatly appreciated. Cheers … David

    The iPhoto Library can be backed to to any external HD as long as it is formatted OS X Extended (journaled).  So make sure you WD SmartDrive is formatted as such.  You don't need any WD software to access such a HD drive if it's formatted correctly for Macs.
    Just drag the entire iPhoto Library package to the EHD for a one time backup.  To keep it current you can use an external HD with Time Machine or use a backup application that can do incremental backups, i.e. backing up only new or modified files after the first full backup.  Apps like Synk Pro and Chronosync can do incremental backups.

  • Is it possible to disable the OAWebBeanConstants.IGNORE_MESSAGES

    greetings all .... is it possible to disable the OAWebBeanConstants.IGNORE_MESSAGES . i have this ....................
    {                  OAMessageTextInputBean bi = (OAMessageTextInputBean)webBean.findIndexedChildRecursive("BI") ;
    System.out.println("BI"+bi.getValue(pageContext));
    if ((bi.getValue(pageContext)) != null)
    {                pageContext.setForwardURLToCurrentPage(//"OA.jsp?page=/oracle/apps/ap/MainPG",
    null,
    false, // Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
    OAWebBeanConstants.IGNORE_MESSAGES);
    System.out.println( "PM");
    OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean);
    String paramPR = prnum2;
    Serializable paramPRParamList[] = { paramPR};
    am.invokeMethod("paidManuallyUpdate", paramPRParamList);
    System.out.println( " THE VALUE OF THE Cancel RB IS " + canx.getValue(pageContext));
    prnum1.setValue(pageContext, "");
    pReason1.setValue(pageContext , "");
    //either one of these confirmations will work . i use one or the other
    throw new OAException("Payment Has Been Updated To Paid Manually", OAException.CONFIRMATION);
    //or
    OAException msg = new OAException("Updated To Paid Manually", OAException.CONFIRMATION);
    pageContext.putDialogMessage(msg);
    the problem is if i include the setForwardURL my confirm messages dont work. if i dont include the setForward they work.
    is there a way to do the setForwars so i can redirect the page and make the table inactive and also use the confimations. i can see its going past my system.prints. it just isnt popping up my confirmations as i believe its due to the IGNORE_MESSAGES.
    any insight ....
    cheers.

    Hi,
    SetForward*()...It lets the current page processing complete. Your following code will complete its processing, after that it will be forwarded to next page.
    ForwardImmediately.... Forwards immediately without letting remaining code process.
    However, a good thing is pageContext of the same page is forwarded. That means, if you did pageContext.putDialog(message), in current page, that will be forwarded in both the cases to next page. Hence, for your problem...
    use putDialog method, as stated in previous post and
    use forward url as CONFIRMATION, NOT AS ERROR OR IGNORE_MESSAGE.
    pageContext.setForwardURLToCurrentPage(//"OA.jsp?page=/oracle/apps/ap/MainPG",
    null,
    false, // Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
    OAException.CONFIRMATION); //WHAT YOU HAVE PUT IN DIALOGS AND WANT TO SHOW IS CONFIRMATION.
    Please try this.
    Abdul Wahid

  • Is it possible to disable the optimized compiler in LabVIEW 2010

    Hello,
    I have a project that take 3 minutes in LabVIEW 8.6 to build and now with LabVIEW 2010 it take 10.5 minutes. 3x more longer.
    In fact my project as 61 .lvproj for a total of 4300 vi's that take 1 hour to build. If I interpolate, the entire build process will take 3 hours in LabVIEW 2010. This is not acceptable
    I know that the new compiler optimize the code for better performance, but if I don't need better performance.
    Is it possible to disable the optimized compiler in LabVIEW 2010 with an INI key in LabVIEW.ini.
    Dany Allard
    Dany Allard
    Solved!
    Go to Solution.

    Jarrod S. wrote:
    One Application Builder setting you might try out to make builds go much more quickly is the Remove Unused Members of Project Libraries checkbox and the Modify Project Library File after Removi....
    This can drastically cut down the build times. Note, however, that this option does not work well if your application will load external plug-in VIs when it runs, because the libraries of those plug-in VIs may conflict with the modified libraries in the executable file. If you don't have a plug-in architecture, this will not affect you.
    The "Remove unused members of project libraries" was already selected but not the "Modify project library file after removing unused members" and selecting this cut the build time from 10.5 min to 4 min.
    Thank you Jarrod for this tips
    Dany
    Dany Allard

  • My Iphone stolen Is it possible to disable it by serial number

    my Iphone stolen
    Is it possible to disable it by serial number or Appl co?

    The only way to locate/disable/erase any lost/stolen iPhone is through Find My Phone or a similar app. However, this requires that Find My Phone be setup/activated, on your phone, before it was lost/stolen. You would then login at iCloud.com & try to locate it. This requires the phone be turned on & have an Internet connection. There is no other way to locate a lost/stolen iPhone. Apple can't/won't help you, nor will your carrier. Report the loss to the Police, your carrier & Insurance company. Change all of your passwords.
    If your carrier offers Blacklisting & they Blacklist the phone, it will be unusable as a phone.

  • It's possible to disable custom color from color picker?

    Hi guys!
    I've searched in the threads about color picker but I found anything about it...
    It's possible to disable the option to select a custom color? I work in a enterprise who makes softwares to brazilian clients, and not everybody understands english phrases...
    Another way it's to translate the option, but I don't know if is possible too.
    Thanks!

    You definitely need to add the stylesheet to the Scene, not to anything else. If you take my example and change
    scene.getStylesheets()...
    to
    root.getStylesheets()...
    you'll see that it won't work any more.
    The difference between this and the css you used is that the css you used is applied to the display of the color picker button; you need to apply styles to the popup (the color palette), which is not contained in your VBox or AnchorPanes. Notice how the font has changed for the name of the color in the button, but it hasn't changed for the "Custom Color" label you are trying to remove.
    Somewhere there is some code that is adding the VBox you are subclassing to a Scene, and setting that scene into a stage. Your best option (perhaps second best option, see below) is to find that code so you can add the stylesheet to the Scene itself.
    If you're working within a framework someone else has written, and can't access or change the code where the scene is defined, you have another option that I can see. Every Node has a scene property that refers to the scene to which that node belongs. So you could observe changes to that property and when it's updated, add the stylesheet to the scene.
    So here is a hack to make my original hack work, in the event that you cannot access the scene directly, for some reason:
    final String suppressCustomColorCss = getClass().getResource( "noCustomColorPicker.css").toExternalForm();
    colorPicker.sceneProperty().addListener(new ChangeListener<Scene>() {
    @Override
      public void changed(ObservableValue<? extends Scene> observable,
      Scene oldScene, Scene newScene) {
      if (newScene != null) {
      List<String> cssClasses = newScene.getStylesheets();
      if (!cssClasses.contains(suppressCustomColorCss)) {
      cssClasses.add(suppressCustomColorCss);
    This code basically says "when the color picker becomes part of a new scene, add the stylesheet to that scene".
    At this point, you're applying hack on top of hack to get the effect you need. I think if I were in this situation I would just go ahead and define my own color picker. All you really need is a MenuButton, a property to hold the selected color, and a popup with a layout of controls to choose an arbitrary color. It would be a bit of work, but shouldn't be too hard. If you take this option (which I think may be your best bet), it's more work now but it will be clear what you are doing - when you (or other programmers on your team) come back to the code later you'll understand how it works much better.
    You should also file a couple of feature requests. One for API to enable/disable the option to choose a custom color, as this seems like a reasonable piece of functionality to have. The other should be for properly internationalized text for the labels in the color picker, as these are currently just hard coded into the source code in English.

  • Is it possible to disable New Message sound for SPAM messages?

    I inherited a role email account which receives an incredible amount of spam. Mail's SPAM filters do a good job or routing these messages to the SPAM box and keeping them out of my inbox, but I still receive a "New Message" sound notification every time a new SPAM message arrives. Is it possible to disable the "New Message" sound alert for SPAM messages while still receiving the alert for new messages that arrive in my inbox?
    Thanks,
    jason

    Try this:
    Go into Preferences -> General and uncheck the box that says "Play sounds for other mail actions".
    I'm not sure if it will work since that's really still "new" mail, but it might be worth trying.

  • LMS 4.2.2 DFM still not possible to disable Duplicate IP false positives?

    I found one discussion about Cisco Works 2.6 where it is pointed out that duplicate IP alerts cannot be disabled in LMS.
    Now I have a installation with 2 core switches, one has all VLAN Interfaces up, the second one the same interfaces with SAME IP addresses in shutdown state.
    DFM still recognizes these similar IP configuration on two boxes as duplicate ip situation, but it shouldn't because they are all shutdown.
    Is it possible to disable these false positives in DFM?
    Thanks for any hints!

    I found one discussion about Cisco Works 2.6 where it is pointed out that duplicate IP alerts cannot be disabled in LMS.
    Now I have a installation with 2 core switches, one has all VLAN Interfaces up, the second one the same interfaces with SAME IP addresses in shutdown state.
    DFM still recognizes these similar IP configuration on two boxes as duplicate ip situation, but it shouldn't because they are all shutdown.
    Is it possible to disable these false positives in DFM?
    Thanks for any hints!

  • Possible to disable "server connection interrupted" message?

    I have a mac mini (running lion) connected to the TV as a media center with a Time Capsule 4gen. as a router with all my media on. Connected to the Mac mini via cable. The problem is that I verry often get the message "server connection interrupted" on my mac mini. it could be in the middle of a movie playing from the TC and it does not stop playing but the message pops up (internet and wireless also works normal when this happens), witch is really annoying! I then have to do share screen on it from my macbook and press ignore. So my question is; does anyone know what could be the reason for this and have any ideas i coud try to fix it? if not does anyone know if it is possible to disable the message in question or make it "autoignore" it or anything?

    Not at the moment.. it is a bug.
    https://discussions.apple.com/message/17118907#17118907

  • Is it possible to Disable Right Mouse click In WebDynpro Java Application??

    Dear Experts,
    Is it possible to Disable Right Mouse click In WebDynpro Java Application??
    If yes then kindly suggest how.
    Warm Regards,
    Upendra Agrawal

    What is the use-case?
    Armin

Maybe you are looking for

  • Need BAPI Name for updation of Subcontracting scheduling line agreement

    Hi All,         Can anybody please tell me BAPI Name for updation of Subcontracting scheduling line agreement from EKET table? Note: BAPI_PO_CHANGE is not useful for me. Thanks and Regards, Atul.

  • Memory leak in Convolution

    The attached VI shows a memory leak in the Convolution routine in LabVIEW 8.6.1.  There is no memory leak in 8.2.1 - I have no other versions to test it on. Cheers ~ Greg Solved! Go to Solution. Attachments: ConvolutionMemoryLeak_86.vi ‏9 KB

  • Getting my purchased tv shows

    hi i purchased a season of surface. it takes me forever to get them downloaded to itunes ie.. out of 11 episodes and two weeks i have only gotten 3 to itunes and to my ipod. it takes a whole day to get one. my computer is more than capable i'm on dir

  • Libc/stdio bug in Solaris!?

    Hello, I was testing the following code using gcc + cc on Solaris 10 x86 & Solaris 8 sparc, both times it breaks. It breaks inside a call to fprintf. According to the man-pages I should not do a read after write without a flush/position change (which

  • Single invoice creation with reference two sales document type

    Hi, I have created Sales contract & Sales Order.I want to create single Invoice with reference to both sales contract & sales order. Please give me the solution how to do that??????????? Thanks, Miku.