Change index's columns without drop the index

Hi all,
I would like to know whether is possible to remove columns from index without having to drop the index. If the answer is yes could you tell me what is the command?
Thanks,
Dani

Thank you Leo for the confirmation.
Cheers,
Dani

Similar Messages

  • Can I add new zone section without drop the index

    Hi,
    Could somebody tell me is there a way to add new zone section for XML document without drop the index and then recreate it.
    Thanks

    in oracle 8i version there is no need for rebuliding index for creation of zonal section. Server process started by ctxsrv
    will do the dml .And later you can rebuild
    the index when you make many changes to documents.(not neccessary)

  • I want to delete a column that is referenced in a formula in another column without deleting the other column

    How can I delete a column of numbers that are referenced in another column without deleting the other column?

    select the column to delect by click in the column header
    select the contextual menu for that column by clicking (and holding) the down arrow:
    select "Delete Column" to remove the column:

  • How do I turn selected text in a Pages document into two columns without turning the whole document into two columns?

    How do I turn selected text in a Pages document into two columns without turning the whole document into two columns?

    Menu > Insert > Layout Break (before and after text) > click in text > Inspector > Layout > Layout > columns: 2
    Peter

  • Change messagename(external msg) without losing the messagemapping

    HI all,
    I´m using an external message "externalmsg1" with messagename(root) "test".
    I´ve created a messagemapping by using "test"(external msg) as source and 2 RFC messages(multimapping) as target.
    Now the messagename(inside the external message) was changed from "test" to "test_new".
    Did you know how to change the external message from "test" to "test_new" WITHOUT losing the mapping ?
    note: only the messagename was changed. The structure is the same!
    Thanks for your help,
    Gordon

    Hi Gordon,
    You can consider using mapping templates in PI:
    http://help.sap.com/saphelp_nw04/helpdata/en/79/2835b7848c458bb42cf8de0bcc1ace/frameset.htm
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50171256-1ee2-2a10-3f84-ddecf098f724?quicklink=index&overridelayout=true

  • How do I delete part of a column without deleting the whole column

    I'm trying to deleting certain cells within the same column but I don't know how without deleting the entire column.  It sounds so simple but I'm sure I'm overlooking something.  Thanks.

    jackiego26 wrote:
    Bummer! Thought there would be something similar to Excel. 
    Excel describes this in different terms, and the Excel user goes through a different set of steps, but the reality is that in Excel as in Numbers you are shifting content from one set of cells to another, not 'deleting cells'.
    If you were actually 'deleting cells' from rows 2-11 of a column, then shifting all cells right of the deleted cells into the space left by the 'deleted' cells, one of the results would be that at the right edge of the table, rows 2 through 11 would end one column 'earlier' than the rest of the rows (from which 'cells' had NOT been deleted.
    Excel: Select the cells whose content is to be replaced, tell Excel to 'delete cells'. Tell Excel which direction to move content to fill the cells. Excel moves that content into the emptied cells.
    Numbers (method 1): Select the cells whose content is to be moved. Copy. Select the first cell that is to receive the content. Paste.
    Numbers (method 1a): Select the cells whose content is to be moved. Drag the content to the first cell that is to receive the content. Drop.
    Numbers (method 2): Select the cells whose content is to be moved. Press shift-command-X (or go Edit > Mark for Move. Select the first cell to receive the content. Press Shift-command-V (or go Edit > Move.
    Regards,
    Barry

  • Clicking on a column without disturbing the existing selection

    Hello good people,
    I am still getting used to Swing and my question may be really silly. Thanks in advance for helping me out!
    I have a JTable in which one of the columns has checkboxes. Using Ctrl+select, one can select multiple rows. Clicking without ctrl, unselects the previous selection. This is all good and default behavior. However, I would like to be able to click on one of the checkboxes in one of the selected rows and not disturb the selection. My target is to enable/disable the checkboxes of all the selected rows.
    Basically, my question is: How do I not disturb the selection if a user clicks in one of the already selected rows and the checkbox column. In other words, if I clicked on the cell (r, c) where row r is already selected and column 'c' is the checkbox column, I would like to retain the selection.
    Thanks,

    what I meant was if you click on the flag cell of one of the selected rows, all the rows (emails) will be flaggedIn my version of Outlook (which is really old) only the row you click on will be flagged and the other rows are deselected.
    But you could try adding a MouseListener to the table. When a mousePressed event is received you could save all the selected rows. You would also add a TableModelListener to the TableModel. Whenever the flag field is selected you could then loop through all the saved selected row and set the flag. You would want to remove the TableModelListener before you start the loop to prevent multiple table model events from being generated. Then when the loop finishes you would need to add the listener back to the model.
    However, this is not a very good solution since it depends on the mousePressed event firing before the ListSelectionModel is updated.

  • How to show all fileds column without scroll the report output.

    Hi,
    In my report output shows few columns and need to scroll right to see rest of fields . but i want to see all columns without scroll to right side in output.
    Please guide me how to fix the fileds in report.
    Regards.

    Hello,
    Why dont you use WAD and then switch off these properties in Webitem paging properties.
    i think that would give you more flexibility with paging,scrolling but with some extra effort of creating a WAD
    waiting for your feedback
    Regards
    Nitin Bhat

  • DLL Adapter: Change function name & params without unloading the DLL

    Hi,
    I'm using teststand adapters API to dynamically build a DLL call step. Each dll function is called thru this "DLL Manager" sub-sequence. 
    Tried 2 methods (here is an abstract of the code): 
    1. ActiveX steps: 
    CommonCModule.ModulePath = myDllpath
    CommonCModule.FunctionName = myFunction  (note: this call unload the previously loaded DLL)
    Module -> LoadPrototype
    for( to set params)
    2. Statement steps: 
    RunState.Sequence.Main["Call DLL function"].TS.SData.Call.LibPath = myDllpath
    RunState.Sequence.Main["Call DLL function"].TS.SData.Call.Func = myFunction (note: this one not, but the info seems to not be updated => The new function is not called properly)
    Module -> LoadPrototype
    for( to set params)
    The two methods don't have exactly the same behavior, but work well for the 1st function that I call or work well if I unload the dll after step execute. 
    However, is there a way to use these steps (or others) to setup the step, but without unloading the DLL between each call. In my test sequence, I have to OpenConnection with the UUT before launching my commands, so the dll must not be unloaded to keep the connection opened... 
    e.g. 
    1) OpenConnection()  => This function keeps the communication handle with the device
    2) myCommand1()
    3) myCommand2()
    4) CloseConnection()
    Thank you for help
    C.
    Solved!
    Go to Solution.

    Hi all, 
    To recap:
    I'm looking for a method to dynamically loads and executes C/C++ DLL functions without unloading the DLL between each call. I already have a DLL manager that dynamically loads and executes dll functions, but it unloads the DLL between each call even if I set the unload option to: "Unload when sequence file is unloaded"...
    The problem is: 
    When I change the name of the function to execute (using the CommonCModule.FunctionName property), teststand automatically unloads the DLL before applying the change. Therefore, I can't open a connection handle with my UUT using one function and sends my commands with the others...
    To help you with the understanding of my issue:
    I created a simple example that will let you experiment the problem that I try to describ... You will notify that TestStand unloads the dll even if I don't request it... 
    1) download the attached zip file
    2) extract it anywhere
    3) open sequence file "dll_called_dynamically.seq"
    4) read comment of the first step of the sequence
    >> To analyse the case:
    >> 1) Break and run the sequence using step-by-step (use F10)
    >> 2) Run one iteration of the loop to execute the dll once, ,
    >> 3) Execute launch_listdlls.bat and verify in the outputfile.txt that the dll has been loaded (search for testlib.txt)
    >> 4) Then, step over the step "Set Dll Function Name to call"
    >> 5) Execute launch_listdlls.bat and you will notify that the dll has been unloaded... ...
    The testlib.dll file provided in the zip file is a basic dll that I used to confirm my test engine. Mainly, it only performs additions on the variables passed as argument to the dll. 
    The provided batch file executes the free application ListDlls.exe and create an outputfile.txt listing all currently loaded dll.
    Please note that I use TestStand 2013
    Thank you very much for your help,
    C.
    Attachments:
    dll_unexpected_unload_ex.zip ‏313 KB

  • Primary Key could not be changed without dropping the index

    I want to change the primary key in the "alter table modus". I don't see any INDEX. I refresh the DATA and get the following error:
    ORA-01785: ORDER BY-Angabe muss Positionsnummer von Ausdruck der SELECT-Liste enthalten
    Version: 3.0.03 Build-03.97
    Edited by: mesch181 on Apr 17, 2011 12:31 PM

    That error message has nothing to do with dropping an index.
    There is a bug in current versions of sql developer where the query used to populate the data grid is stored and if the table structure changes the query can be invalid. Try closing the table and re-opening it.

  • Urgent : Change in displayed column name of the Metadata

    Hi friends,
    I am required to dispaly a field called "Ansprechpartner" in my layout set.
    As I did not get any corresponding Metadata for it in the ContentManagement,
    I used the owner field instead. But the Deutche name for it on doing language change is "VerantWortlicher".
    Now it is required that the same data under owner column is dispalyed with the change in column name from VerantWortlicher to Ansprechpartner.
    I tried changing the key label in metadata but in vain.
    Please help me out...
    Sweta.

    Hi,
    I would recommand to duplicate the owner property instead of changing it to show a different label.
    So the steps should be:
    1. Duplicate the owner and create your own
    2. Follow the Changing Labels for Properties tutorial ro change label:
    http://help.sap.com/saphelp_nw70/helpdata/en/65/6fc63ed4027f6be10000000a114084/frameset.htm
    3. Show this property in your CollectionRenderer instead of owner
    Greetings,
    Praveen Gudapati
    [Points are always welcome for helpful answers]

  • How to trigger a value change listener in JSF without submitting the form

    hi friends,
    I have a JSF Page which contains a check box and a text box.
    I made the text box property as readonly.
    when i click the check box , i want to make my text box as editable.
    i achieved the above task by submitting the whole form when i click the check box.
    i want to acheive the same functionality with out submitting the form.
    In one of the references it is stated that "Value-changed handlers are executed if the page is submitted and the value of the component has changed."
    hope you got the question.
    please let me know, if you know the answer.

    Hi,
    If at all you dont want to submit the form and wanna reflect same form's field(s) as per the change in drop-down/check-box,
    you can simply achive it using traditional way of 'JavaScript'.
    For that you may typically give <h:form> tag any specific id say
    <h:form id="myForm"> and for dropdown/checkbox also you may give id say
    <h:selectBooleanCheckbox id="group" onchange="javascript:reflectChangedValue();"  ... >
    </h:selectBooleanCheckbox>and in the same JSP you can write any JS function say reflectChangedValue() as
    function reflectChangedValue()  {
         var formPrefix  = "myForm:";
         var groupId = formPrefix + "group";
         var value = document.getElementById(groupId).value;
          if(value) {
               // enale textbox here
          } else {
               // disable textbox here
    }For formPrefix and groupId, f you are having any doubts, you can refer to 'view source' from the browser,
    generated HTML of the working JSP.

  • How to change a Skype number without cancelling the subscription?

    Hi there,
    I had purchased a Skype number of UK and it works well but now for some security reasons, I wish to change the number but without giving up my subscription. Is there a way to do this?

    Hi, Supermom1110, and welcome to the Community, Simple answer: no. A Skype Number subscription is tied to the number.  For clarification, a Skype Number subscription is separate from and unrelated to a Skype Calling Subscription which offers discounted prices for placing calls to land lines (and in some cases, mobile numbers). Regards,Elaine  

  • How can I change my icloud account without  knowing the old password

    How can I change my icloud account on my phone when I don't know the old password and I'm on a shared plan

    iCloud has nothing to do with your shared plan.
    Try
    https://iforgot.apple.com

  • Changing a shot-date without losing the order in PSE8

    I'm a new user of PSE8 and have tripped over an annoying problem.
    I have a couple of thousand old family photos that I had scanned and am now organing.  Besides the normal tagging and adding a caption, I want to override the scanned date (which is what PSE thinks was the shot-date) with our best guess at when it was really shot.  That can be 80 years ago.  So I right click the photo, choose "Adjust date and time" option, and revise the date.  Works like a champ, except...
    Except when I do, PSE8 automatically and immediately reorders the photo by date.  So now when I want to go to the next photo in the set I'm working on and click forward, I get some other photo I've already worked on, not the next one I was expecting.  As you can imagine, the more photos I work on, the more time it takes to sort through all the photos previously date-changed to find the next photo yet to be date-changed.
    Is there a way to tell PSE8 to display my photos in order of name rather than in order of date shot?  The scanner service I used automatically created file names with an ID and a sequence number.

    PSE8 gives me two display options that I can find -- oldest first, and newest first.  It seems (reasonably so) that the date the photo was scanned is interpreted as the date it was shot.  So when I use PSE8 to change the date the photo was shot, the photo instantly gets re-ordered among all the photos I have.  Normally that would be fine, because after I put in the correct date for all my photos, I do want to display them in date order.  But I don't want them in date order when I have just loaded 100 newly scanned photos into organizer and I want to spend an hour changing the date on each one in turn.
    I was hoping to find a third display option -- file name sequence.  Doesn't seem to be there.  If not, can any of you PSE gurus think of a way to temporarily keep a set of newly scanned, newly loaded photos in their original sequence long enough for me to go through them one-by-one and change the date?
    Jim in San Francisco

Maybe you are looking for