Disable or drop OTN profile

hi,
I use a shared log in in oracle.com through which i access OTN and oracle university. I need to disable or drop OTN profile but want to retain the university log in.
Please advice.

Yes you can disable a constraint using:
alter table
table_name
DISABLE constraint
constraint_name;
check if on delete also disabled in this case. I guess it is.

Similar Messages

  • How do I disable the drop down box which appears below the Search Box (which shows previous searches) when I start typing in my search topic

    Hi I would like to know how to disable the drop down box which appears below the search box on the start page when I start to type in my search topic. If for example the first letter I type in is an S then it shows a list of previous searches of sites beginning with the letter S.

    This is stored in the Firefox form history. For details of how to clear form history and prevent Firefox from storing any more form history see https://support.mozilla.com/kb/Form+autocomplete

  • How can I change my email address in my OTN profile?

    Would be great if you (otn people) could implement something like that
    Thanks
    Maurice

    Sorry for the inconvenience.
    Here's information from the OTN FAQ:
    Membership Information
    Q:      How do I change the e-mail address in my membership profile?
    A:      OTN's membership management system does not let you change your email address in your membership profile. Please create a new account with the new email address you wish to use.

  • How do i disable the drop down menu every time i type suggestions come up

    when i open up firefox then type in a site i want there is a suggestion drop down its very annoying as i keep looking up to the screen can i disable it and how cheers

    To control the Location bar drop-down list, click Tools > Options (''in Firefox 8: Firefox button > Options > Options'') > Privacy, in the "Location Bar" section choose one of the options (choosing "Nothing" will cause the drop-down to not show).
    *See --> https://support.mozilla.com/en-US/kb/Options%20window%20-%20Privacy%20panel
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Drop in profile speed.

    Hi There!
    I'm on the 40/10 BT product and most of the time my profile is around 38Mbps down and 10Mbps up. Over the past week I have checked my profile using the BT speed tested and have found that it has dropped down to 31Mbps and stays there. I have powered off the HH3 and the Fibre modem for around 10 mins and when I check a while later the profile is stuck at 31Mbps.
    A while ago I ran the BT speed estimation and it said that with the 80/20 product I should have an expected speed of around 72Mbps down and 20Mbps up. Now when I run the BT speed estimation is says that my line should have a maximum speed of 35Mbps !
    What has caused this to drop ?
    There has been no change to my system of phone line.

    Email yesterday from BT to say that they've tested my line and found a line fault between my home and the cabinet.
    BT OR engineer arrived at my house just after 9am today.
    Did some testing on my line and the cabinet. Got my profile reset.
    Did a speed test, but profile still at 31.36Mbps.
    I'll wait to see if it changes.

  • Blur control disabled for Drop Shadow Effect and Filter

    Win2k Pro
    2GB Ram
    AICS 11.0.0
    This is odd: the blur control in the Drop Shadow Effect and Filter dialog boxes is disabled. It seems to me there was a time it was ENabled.
    This is the situation for both vector and bitmap objects. I've played with Document Raster Settings.
    Truth be told, I _did_ reinstall Illustrator last year and have not used it much since.
    Any insights you can share?
    Thanks

    Please excuse this post ... didn't mean for it to appear as a reply under <br />another post.  My apology.<br />lk<br /><br /><br /><br /><[email protected]> wrote in message <br />news:[email protected]..<br />>I purchased a vector image from istockphoto ... when I opened the file in<br />> illustrator it is just an outline without color.  I select the outlines <br />> but<br />> can't fill it with color!  What am I missing?<br />><br />><br />><br />><br />><br />> <[email protected]> wrote in message<br />> news:[email protected]..<br />>> Win2k Pro<br />>> 2GB Ram<br />>> AICS 11.0.0<br />>><br />>> This is odd: the blur control in the Drop Shadow Effect and Filter dialog<br />>> boxes is disabled. It seems to me there was a time it was ENabled.<br />>><br />>> This is the situation for both vector and bitmap objects. I've played <br />>> with<br />>> Document Raster Settings.<br />>><br />>> Truth be told, I _did_ reinstall Illustrator last year and have not used<br />>> it much since.<br />>><br />>> Any insights you can share?<br />>><br />>> Thanks<br />>

  • Disable or drop on delete cascade

    can i disable or delete
    on delete  cascade
    without dropping the foreign key constraint?

    Yes you can disable a constraint using:
    alter table
    table_name
    DISABLE constraint
    constraint_name;
    check if on delete also disabled in this case. I guess it is.

  • Disable or drop trigger, is there a difference?

    Firstly let me explain the scenario, a developer created a trigger on a TABLE owned by another schema to insert into his own schema. Anyway it did not work and gave him various errors through TOAD that I do not have copies of. He disabled the trigger but the errors continued. It was only when the trigger was dropped that the error ceased. My question is Is there something different between disabling a trigger and dropping it apart from the obvious? I also have to explain that this is on a very old database version 7.3.4.4.0 on solaris. I do know why disabling it would not mean it was ignored therefore effectively acting as if it did not exist at all much like if it was dropped from the database. Any suggestions?
    The trigger was eventually recreated and a public synonym creation on the table that was to be inserted into solved the errors. But why did disabling the trigger still mean errors where thrown out.
    Edited by: user648977 on 02-Sep-2009 00:32

    user648977 wrote:
    what if the trigger was invalid before being disabled and was then disabled, is it still properly being disabled?Let's demonstrate it with simple example:
    SQL> create table test (id number);
    Table created.
    SQL> create table test2 (ddate date);
    Table created.
    SQL> create or replace trigger trg_test before insert on test
      2  begin
      3  insert into test2 values(sysdate);
      4  end;
      5  /
    Trigger created.
    SQL> insert into test values(1);
    1 row created.
    SQL> select * from test2;
    DDATE
    02-SEP-09
    SQL> alter trigger trg_test disable;
    Trigger altered.
    SQL> insert into test values(2);
    1 row created.
    SQL> select * from test2;
    DDATE
    02-SEP-09
    SQL> alter trigger trg_test enable;
    Trigger altered.
    SQL> create or replace trigger trg_test before insert on test
      2  begin
      3  insert intoooooooooooooooo test values(sysdate);
      4  end;
      5  /
    Warning: Trigger created with compilation errors.
    SQL> insert into test values(3);
    insert into test values(3)
    ERROR at line 1:
    ORA-04098: trigger 'USER.TRG_TEST' is invalid and failed re-validation
    SQL> select * from test;
            ID
             1
             2
    SQL> select * from test2;
    DDATE
    02-SEP-09
    SQL>

  • KM navigation iview - how to disable folder drop down menu?

    Hi all!
    Portal version: EP7 SP9; I am trying out KM navigation iview opportunities.
    My goal is to create an iview where user can only download folder items (files); and in the same time I would like to disable all the drop-down menus there.
    For example, folder itself has a drop-down menu; also there is one for each of the files. So, is it possible disable/remove these associated drop-down menus for each accordant item within KM navigation iview?
    All ideas/comments will be appreciated!
    Thanks,
    --- Kaspars

    Hi,
    Probably yo mean the hover menu next to the displayname of a resource.
    KM navigation iview has a layoutSet associated (see PCD property layoutset). Find the layoutset in System Admin -> System config -> KM -> Content management -> User Interface -> Settings -> LayoutSet (click <i>show advanced options</i> if you did not so). Here you have some collectionRenderers and resourceRenderers set.
    The hovermenu represents the commands for the resources itself, so you click the resourceRenderer. Here yo can see a property called <i>Command display</i>. Set it to <b>off</b>. Now the menu should be not visible for the resources in KM navigation.
    To setup which commands should be visible you have to set <b>Command Groups</b>. For more info see:<a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9d/233f989a5ba64fa44ed6e0823286ee/frameset.htm">SAPHELP: Commands and Command Groups</a>
    Hope this helps,
    Romano

  • Disable drag & drop in cs2 bridge

    Can I disable cs2 bridge drag & drop?

    Hi,
    See this discussion javascript - Disable Drag and Drop on HTML elements? - Stack Overflow and try accordingly.
    also accordion has events such as detachSectionsReorder check if it is useful for your requirement.
    Regards,
    Chandra

  • Adding skin to SkinnableContainer disables drag/drop ability.

    Hi all,
    I'm having a bit of a problem with a SkinnableContainer. The code defining the SkinnableContainer looks like:
      <s:SkinnableContainer
                                            id="actionContainer1" width="100" height="100"
                                            dragEnter="dragEnterHandler(event, 'actionGroup1')" dragDrop="dragDropHandler(event, 'actionGroup1')">
                                            <s:HGroup id="actionGroup1" height="100%" width="100%">
      </s:HGroup>
      </s:SkinnableContainer>
    and I have a skin defined as:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark" height="100" width="100">
      <!-- host component -->
      <fx:Metadata>
                        [HostComponent("spark.components.SkinnableContainer")]
      </fx:Metadata>
      <!-- states -->
      <s:states>
                        <s:State name="disabled" />
                        <s:State name="normal" />
      </s:states>
      <!-- SkinParts
              name=contentGroup, type=spark.components.Group, required=false
              -->
              <s:Rect left="0" right="0" top="0" bottom="0" radiusX="5" radiusY="5" >
      <s:stroke>
                                  <s:SolidColorStroke color="#ff00ff" weight="4" />
      </s:stroke>
      </s:Rect>
              <s:Group id="contentGroup" left="0" right="0" top="0" bottom="0">
      <s:layout>
      <s:BasicLayout />
      </s:layout>
      </s:Group>
    </s:Skin>
    If I add styleName="DropboxSkin" to the skinnablecontainer (actionContainer1), then it appears that my dragEnterHandler refuses to accept the drag source. Is there any reason this might be occurring? Removing it returns the functionality back to how it was and the drag source is accepted.
    Thanks very much,
    Alastair

    With Pages you can add text   and then drag and drop  photos from iPhoto to wherever you want and resize just by clicking on the photo and dragging a corner:
    The text wrap is automatic so you just move the photo to get the wrap effect you want.
    You can save the document as a PDF file for printing.

  • Disable Drag & Drop in Tree for some nodes

    It is very easy to enable Drag and Drop on Tree controls. How
    do I disable some Nodes from being dragged? I do not need all nodes
    to be draggable.

    The trick is not to use the tree drag* properties of the
    control and instead use the DragManager to do custom drag and drop.
    This allows to listen to mouse down events and evaluate
    whether to useDragManager.doDrag() to initiate a drag.

  • Disable URL Drop-down in IE on Palm Treo Pro?

    One of the biggest frustrations I have with my (Sprint) Treo Pro is that when I enter a URL directly in the URL bar in IE, the program puts up a drop-down that offers suggestions for matching URLs. This would be a fine option -- and it is on a desktop PC -- except that at least on my Palm it takes so long to generate these lists that, depending on the URL, it can take multiple seconds for it to so much as echo each character I type. It can be particulary bad when editing a long URL; I've taken to googling URLs because it doesn't take so long to type them into Google's search box. The question I have is, is there any way to simply turn this feature off?
    Post relates to: Treo Pro T850 (Sprint)

    There was no setting that I could find in our lab Treo Pro. There could be a 3rd party program that can turn this off for you or even using a different web browser completely.

  • I have disabled the drop down menu system during run-time on a VI. How do I get it back?

    This occurred when I made a custom menu but deleted it and replaced the menu with the default.
    Thanks

    In LabVIEW 6 go to VI Properties>Window Appearance>Customize>Show Menu Bar. In LabVIEW 5 it's VI Setup>Window Options>Show Menu Bar.

  • Able to drag drop items of combobox but want to disable 1st item

    Hello Sir,
    I am able to drag drop elements of the combobox.
    Here is my code...
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" xmlns:local="*" xmlns:utils="adobe.utils.*" xmlns:controls="qs.controls.*" initialize="init()">
    <mx:Script>
    <![CDATA[
    import mx.events.DragEvent;
    import mx.events.ListEvent;
    import mx.controls.dataGridClasses.DataGridColumn;
    import mx.controls.ComboBox;
    import mx.controls.Alert;
    [Bindable]
    public var str:String = "";
    public var comboLength:int;
    public function init():void
    var xml:XML = <test>
    <col>
    <col1>one</col1>
    </col>
    <col>
    <col1>two</col1>
    </col>
    <col>
    <col1>three</col1>
    </col>
    <col>
    <col1>four</col1>
    </col>
    <col>
    <col1>five</col1>
    </col>
    <col>
    <col1>six</col1>
    </col>
    <col>
    <col1>seven</col1>
    </col>
      </test>;
      cb1.dataProvider = xml;
      comboLength = xml.col.length();
      cb1.rowCount = comboLength;
      str = (xml.col[0].col1.toString());
      cb1.prompt = str;
    public function closeHandler(event:Event):void
    if(MouseEvent.DOUBLE_CLICK)
    // Alert.show("Click Event");
    public function changeHandler(event:ListEvent):void
    // Alert.show("Single Click Event");
    public function doubleClickEvent(event:MouseEvent):void
    Alert.show(event.currentTarget.toString());
    Alert.show(event.target.toString(),"Double Click");
    public function dragEnterFunction(event:DragEvent):void
    Alert.show(event.target.parent.toString());
    ]]>
    </mx:Script>
    <mx:ComboBox id="cb1" prompt="prashant" doubleClickEnabled="true" doubleClick="doubleClickEvent(event)"
    close="closeHandler(event)" dragEnter="dragEnterFunction(event)" >
    <mx:itemRenderer>
    <mx:Component>
    <mx:DataGrid itemClick="outerDocument.cb1.text = this.selectedItem.col1.toString();itemSelected(event)"
    dragEnabled="true" dropEnabled="true" dragDrop="draDropHandler(event)" dragMoveEnabled="true" headerHeight="0" showHeaders="false"
    creationComplete="init()" click="clickable()"
    itemDoubleClick="doubleClickEvent(event)">
    <mx:columns>
    <mx:DataGridColumn dataField="col1" headerText="" id="da" disabledColor="white"  />
    </mx:columns>
    <mx:Script>
    <![CDATA[
    import mx.controls.DataGrid;
    import mx.events.DropdownEvent;
    import mx.events.ListEvent;
    import mx.events.DragEvent;
    import mx.controls.Label;
    import mx.controls.Alert;
    public function clickable():void
    //Alert.show("clickable");
    public function itemSelected(event:ListEvent):void
    Alert.show(event.itemRenderer.data.col1,"Single Click");
         public function draDropHandler(event:Event):void
    Alert.show(event.target.parent.toString());
    public function dragEnterFunction(event:DragEvent):void
    Alert.show(event.target.parent);
    override public function set data( value:Object ) : void
    this.dataProvider = value.col;
    //outerDocument.cb1.text = this.selectedItem.col1.toString()
    //myList.addEventListener(ListEvent.ITEM_DOUBLE_CLICK, onItemDoubleClick,
    public function doubleClickEvent(event:ListEvent):void
    Alert.show(event.itemRenderer.data.col1,"Double Click");
    ]]>
    </mx:Script>
    </mx:DataGrid>
    </mx:Component>
    </mx:itemRenderer>
    </mx:ComboBox>
    </mx:Application>
    But now i want to disable drag drop of the 1st item and the last item.
    And also add double click of each item.
    Can someone please help me out.
    Awaiting your reply.
    Thanks in advance.

    Hello Sir,
    Thanks a lot for your reply.
    I have implemented some thing can you please help me out with this?
    In this can you help me out with the double click event????
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"
    xmlns:local="" xmlns:utils="adobe.utils." xmlns:controls="qs.controls.*"
    initialize="init()">
    <mx:Script>
    <![CDATA[
    import mx.events.DragEvent;
    import mx.events.ListEvent;
    import mx.controls.dataGridClasses.DataGridColumn;
    import mx.controls.ComboBox;
    import mx.controls.Alert;
    import mx.controls.listClasses.ListBase;
    import mx.core.UIComponent;
    public var str:String = "";
    public var comboLength:int;
    public function init():void
    var xml:XML =
    </mx:Application

Maybe you are looking for