Want to save Sorting cost

Hi all,
I have table with structure below
Create Table DataTable(CaptureTime,Attribute1,Attribute2)
now my application fire query and in query where condition can be Attribute1 or attribute2 or both and always wants data in the order of CaptureTime.
Now if i create index on all 3 column and then fire query
Select * from DataTable where attribute1 = 'spmething' order by CaptureTime
What index will be used if it is Attribute1 index then how oracle will result sorted data.If oracle do sorting at the time of queryfire and my query returns millions of rows then response time will be worst.
How can i save cost of sorting.
Will IOT wil help(furthure CaptureTime is not unique column)
Is there any way through which i will physicall store data in the order of Capuretime and save the cost of sorting?
Please provide help on that?

Welcome to the Apple Community.
If I understand you properly, you need to use a different Apple ID on each.

Similar Messages

  • I sorted my worksheet and it saved the sort without asking if I wanted to save it!  How did this happen?

    I am on a mac mini OS X Yosemite using Numbers 3.5.2.
    I opened an existing spreadsheet, sorted one of the columns, then closed it out so I could open it and it would no longer be sorted (the sort screwed up all my headings), and the sort was saved!  Why did it save my sort without asking if I wanted to save the changes?

    Hi Julia,
    System Preferences > General > Ask to keep changes when closing documents
    This may recover the previous version:
    Regards,
    Ian.

  • I want to capture quality cost, how can I do it?

    What all are the basic settings I should  do to capture quality cost during inspection. I mean through activity confirmation.
    Control key- I activated milestone confirmation required in SPRO setting for QM02. Is anything else I need to do?
    Work center- could anyone help me what exactly I need to do for confirming activity during result recording.
    What is the formula need to be maintained in a step by step manner.

    Hi,
    You can use transaction CRQ1. Enter the plant, work center description & work center category (machine, labour) at initial screen. In the basic data tab, enter short text, person responsible, usage, standard value key. In default value key, enter control key, standard value key for set-up, machine & labour parameters. In the capacity, enter capacity category. In the scheduling category (labour, machine), capacity planner group, basic unit of measure, start time, finish time, break lengths, overload capacity, capacity utilization, no. of work centers. In costing, enter the cost center on which the costs of the work center will be adopted (for example QA department) & activity types for each activity of setup, labour & machine, in formula, enter the formula to calculate costs (for example - setup time formula for setup activity). In technical data enter, machine type, sort string, planner group. Then save the work center data. Then enter the costing data for the activity types in transaction KP26 for the cost center selected.
    Assign this work center in the inspection plan operation, where you want to capture the cost. Use control key as QM04, which requires confirmation.
    When you confirm the activity of inspection operation in transaction QE51N for result recording, then while saving system asks you to confirm the time required for each operation. System will calculate the costs & assign those on cost center.
    Regards,
    Prashant

  • My MacBook Pro keeps making copies of a document that I am trying to save. I don't want to duplicate the file. I only want to save it on both my hard drive and my external hard drive. I do not want to change its name for every save, which the computer see

    My MacBook Pro keeps making copies of a document that I am trying to save. I don't want to duplicate the file. I only want to save it on both my hard drive and my external hard drive. I do not want to change its name for every save, which the computer seems insistent on doing. Help!!

    11lizzyp wrote:
    can't be saved because the file is read-only.
    I did not create the file to be read-only. I created to be able to continue to add to it as I work on it.
    More on versions here:
    http://support.apple.com/kb/ht4753
    local snapshots:
    http://support.apple.com/kb/HT4878
    Sounds like a permissions problem ie read only.
    If running repair permissions from your DiskUtility.app does not sort it,
    Someone should jump in here with erudite and concise fix.

  • Supress Prompt 'do you want to save changes to the design of form...

    Using Access 2007 SP2.
    I have an unbound main form(Master page) with a datasheet subform in an mdb.
    Close button is on the main form with the following code 
    DoCmd.Close acForm, Me.Name, acSaveNo
    I have tried with multiple scenarios but none of them got succeed(Below are those)
    set SourceObject property to "" while Unload
    SetWarnings  False in Form_load
    When I close the form I am prompted with  'do you want to save changes to the design of form...'
    Is there any way to suppress this annoying message?
    Can anyone help on this
    Thanks in advance

    When I close the form I am prompted with  'do you want to save changes to the design of form...'
    Which form is it prompting you about saving, the main form or the subform?  If you close the main form with "DoCmd.Close acForm, Me.Name, acSaveNo", I wouldn't expect you to get a prompt about saving changes to that form.  But I could
    see you getting a prompt about saving design changes to the subform.  Are you making any design changes to the subform while in form view, such as filtering, sorting, column-resizing, etc?
    Dirk Goldgar, MS Access MVP
    Access tips: www.datagnostics.com/tips.html

  • I want to save updated record only in stage table from the form..

    I have created form with two block
    1...criteria base block
    2....details block....(This database block i.e. on stage table).
    I am inserting data into detail block (i.e. stage table )with no commit through find button.
    data is showing there with status 'FRESH'
    suppose i changed item cost, now status goes change to 'NEW'
    now when i am saving it is saving all data into stage but i want to save only data with 'NEW' status.
    Please Help me
    I tried it by deleting data from stage where status ='FRESH' on post_update trigger but is not supporting.
    Edited by: ManojT on Sep 3, 2009 6:52 AM

    Hi I am using this procedure in find button to get data on detail block
    PROCEDURE GET_ITEM_DATA IS
    i number :=0;
    L_COUNT NUMBER;
    S_COUNT NUMBER;
    CURSOR GET_DTL IS
    (SELECT MSI.SEGMENT1 AS "ITEM" ,
    MSI.ITEM_TYPE,
    MICV.CATEGORY_SET_NAME,
    XXCAVM_GET_ITEM_COST_PKG.CAVM_GET_COST_DATE(MSI.INVENTORY_ITEM_ID,ORG.ORGANIZATION_ID,3) "LAST_UPDATE_DATE",
    XXCAVM_GET_ITEM_COST_PKG.CAVM_GET_ITEM_COST(MSI.INVENTORY_ITEM_ID,ORG.ORGANIZATION_ID,1) "ITEM_COST_F",
    XXCAVM_GET_ITEM_COST_PKG.CAVM_GET_ITEM_COST(MSI.INVENTORY_ITEM_ID,ORG.ORGANIZATION_ID,3) "ITEM_COST_P",
    MSI.INVENTORY_ITEM_ID,
    ORG.ORGANIZATION_ID,
    ORG.ORGANIZATION_CODE
    FROM
    (SELECT ORGANIZATION_CODE,ORGANIZATION_ID
    FROM ORG_ORGANIZATION_DEFINITIONS ) ORG,
    MTL_SYSTEM_ITEMS_FVL MSI,
    MTL_ITEM_CATEGORIES_V MICV
    WHERE CATEGORY_SET_NAME LIKE 'Product'
    AND MSI.INVENTORY_ITEM_ID =MICV.INVENTORY_ITEM_ID
    AND MSI.ORGANIZATION_ID = MICV.ORGANIZATION_ID
    AND ORG.ORGANIZATION_ID = MSI.ORGANIZATION_ID
    AND ORG.ORGANIZATION_ID = MICV.ORGANIZATION_ID
    AND MSI.INVENTORY_ITEM_STATUS_CODE = 'Active'
    AND MSI.SEGMENT1 =NVL(:CTRL_BLK.INV_ITEM,MSI.SEGMENT1)
    AND MICV.CATEGORY_SET_NAME = NVL(:CTRL_BLK.ITEM_FAMILY,MICV.CATEGORY_SET_NAME)
    AND MSI.ITEM_TYPE = NVL(:CTRL_BLK.ITEM_TYPE,MSI.ITEM_TYPE)
    AND ORG.ORGANIZATION_CODE = NVL(:CTRL_BLK.ORGANIZATION,ORG.ORGANIZATION_CODE));
    --AND MSI.INVENTORY_ITEM_ID = 8063
    --AND MSI.ORGANIZATION_ID=204);
    BEGIN
    FOR GRD IN GET_DTL LOOP
         SELECT COUNT(*) INTO S_COUNT FROM XXCAVIUM_ITEM_CST_STG
         WHERE ITEM = GRD.ITEM
         AND ORG = GRD.ORGANIZATION_CODE
         AND ITEM_TYPE = GRD.ITEM_TYPE
         AND CATEGORY_SET_NAME = GRD.CATEGORY_SET_NAME;
              IF S_COUNT >0 THEN                         
                                            NULL;
                        ELSE
                        INSERT INTO XXCAVIUM_ITEM_CST_STG
                             (ORG,CATEGORY_SET_NAME,ITEM,COST_PENDING,
                             COST_FROZEN,ITEM_TYPE,LAST_UPDATE_DATE,
                             COST_TYPE_ID,ORGANIZATION_ID,
                             INVENTORY_ITEM_ID,COST_ELEMENT,STATUS)
                             VALUES(GRD.ORGANIZATION_CODE,GRD.CATEGORY_SET_NAME,GRD.ITEM,GRD.ITEM_COST_P,GRD.ITEM_COST_F      ,
                             GRD.ITEM_TYPE,GRD.LAST_UPDATE_DATE,3,GRD.ORGANIZATION_ID,GRD.INVENTORY_ITEM_ID,'Material','FRESH');
                        END IF;
    END LOOP;
    GO_BLOCK('XXCAVIUM_DTL_BLK');
    EXECUTE_QUERY;
    EXCEPTION
    WHEN OTHERS THEN
    FND_MESSAGE.DEBUG('Exception occured during the process. Error Message: '||SQLERRM);
    END;
    Please suggest if any

  • All in one C4580 asks 'where do you want to save?

    Had lots of problems with this printer. Most sorted.  Now the document is sitting in the print queue but a pop up message asks where do I want to save the document to?  I have saved it - deleted original and resent but same message appears.  Any solutions welcome!

    Hi - You might start by checking the port setting for the printer.  It almost sounds like the port setting somehow got changed to "File".  Not sure which OS you're using, but go into the Printers window, right click on your printer and click on the Ports tab.  Make sure it is set to the port you are connected to.  Probably USB.
    Hope that helps.
    Say Thanks by clicking the Kudos thumbs up. Please mark the post that solves your problem as an Accepted Solution so other forum users can utilize the solution.
    I am an HP employee.

  • Sort Cost Center Groups

    How can I sort Cost Center Groups, in ascending order? It is easy to put in order the Cost Centers but I need to put in order the cost Center Group at all levels.
    <b>Xavilee</b>

    That's fair enough
    Are you running the report on all cost centres or all cost centre groups?
    When we run reports, they are automatically sorted in cost centres - alphabetically!
    If you want to run the report on cost centre groups, you may need to create a variant that lists all cost centre groups, then add an explode to show the detail.

  • I want to save streaming video to watch later

    Hi
    I want to save streaming video to watch later, wma format, whatever
    format is most common on the internet. Quick Time does not
    open automatically when the streaming video starts but Windows Media
    Player opens. What program is low cost that will save the video
    stream that Quick Time Player or Windows Media Player can open?
    thanks in advance
    Mark S

    I want to save streaming video to watch later, wma format, whatever
    format is most common on the internet. Quick Time does not
    open automatically when the streaming video starts but Windows Media
    Player opens. What program is low cost that will save the video
    stream that Quick Time Player or Windows Media Player can open?As I see it, you basically have 3 main options:
    1) Screen Capture -- Any streaming video that can be watched/listened to can be captured. Several applications are available that can do this but I generally prefer SnapzProX. This class of program essentially allows you to "record" the audio and video as it is being played back on your computer. This is normally done using a very simple but very fast codecs which create rather large files on your computer but which can then be transcoded to a more efficient format for playback whenever you wish.
    ADVANTAGES: You end up with a fully self-contained copy of the media which can be locally archived, moved, copied, and is available as long as you keep the copy.
    DISADVANTAGES: This approach can require large amounts of storage space depending on the commpression format used and the number of files stored. Depending on the material involved, this could constitute a copyright violation of media use.
    2) Save As... -- If you have/purchase QT Pro and/or an appropriate third-party QT component (like Flip4Mac in this case), you open open/play the streaming file in the QT Pro Player and save a copy of the movie that contains a resource pointer to the online streaming server. For all intents, you have a "copy" of the file stored on your computer that can, within certain limits, be played back whenever you wish.
    ADVANTAGES: Since the saved movies are very small, you can save a large number of them on your computer. Since they open and play just like standalone movies, they are very easy to use and share. Since control of the content remains with the orginator and access (public or limited) remains as intended by the originator, you would not be violating copyrights here.
    DISADVANTAGES: Material may be changed, removed, or unavailable for one reason or another at any given time. Playback requires connection to the Internet.
    3) Bookmark/URL List -- As a last resort, you can always bookmark or copy the relavent streaming server URL to a "hyperlink" list and open the media manually whenever you wish/are able to do so.
    ADVANTAGES: Nothing to buy.
    DISADVANTAGES: Requires extra effort on your part, still won't open in the QT Player, and still remains subject to the online vagaries mentioned above.

  • How many times can you install Lightroom 5? My problem is that I have saved my programs on C. To I have more space, I want to save my programs now on E. Can I now uninstall Lightroom and reinstall from C to E? Can I use the same license code as the first

    Please help!!
    How many times can you install Lightroom 5? My problem is that I have saved my programs on C. To I have more space, I want to save my programs now on E. Can I now uninstall Lightroom and reinstall from C to E? Can I use the same license code as the first installation?

    Thank you for your answers, it helps me a lot.
    But sorry for my ignorance. I understand how you mean it, but I don't know how to do it. I'm scared to lose the settings/edits of the images.

  • Apple, please fix this bug.  Sending scanned images to "Pictures" is not what I want nor what I was able to do in every previous operation system.   I want to save all scanned items in a specific folder - NOT "PICTURES"  Please fix this bug NOW!

    Apple, please fix this bug.  Sending scanned images to "Pictures" is not what I want nor what I was able to do in every previous operation system.   I want to save all scanned items in a specific folder - NOT "PICTURES"  Please fix this bug NOW!

    I only use Image Capture, so I can't speak for other software.
    Here is how I select a Scan To destination:
    If you are using the minimal details screen, you should have the same submenu to the left of the page size.

  • I changed a password to a frequesntly used site. Firefox has not asked me if I want to save this new password and I have to keep changing the saved one to the correct one. How do I get it to save the new password?

    I have websites I use for my employer that require a password. The employer requires these be changed periodically. Always before, if I changed the password, about the second or third time I tried to log in and changed the saved password to the correct one, Firefox would ask if I wanted to save the new password. It is not doing this now. How can I get it to save a new password? It keeps putting in the old one.

    Make sure that you do not run Firefox in permanent Private Browsing mode.
    *https://support.mozilla.com/kb/Private+Browsing
    *You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    *To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Deselect: [ ] "Permanent Private Browsing mode"
    The website may be using autocomplete=off to prevent Firefox from saving the name and password.
    *http://kb.mozillazine.org/User_name_and_password_not_remembered

  • How can I get a pdf. to open in Safari, all i'm getting is a new window with a black, blank page, instead of the pdf., and I don't want to save the file to the desktop, Safari didn't use to do that, and I don't have Adobe in the internet plug in folder.

    How can I get a pdf. to open in Safari, all i'm getting is a new window with a black, blank page, instead of the pdf., and I don't want to save the file to the desktop, Safari didn't use to do that, and I don't have Adobe in the internet plug in folder.

    Hi
    Please take a look to this thread Re: Can I refresh the browser rather than open a new tab?

  • Main.vi creates 2D Arrays and I want to save the arrays in an microsoft Excel file(e.g engine_1)and in differnt worksheets(e.g. measure_1;measure_2;...)

    main.vi creates 2D Arrays and I want to save the arrays in an microsoft Excel file(e.g engine_1)and in differnt worksheets(e.g. measure_1;measure_2;...)
    The path(Grundpfad)for the excel file should be inserted in the main.vi.

    1. There's a shipping example called Write Table To XL.vi (Help>Find Examples>Communicating with External Applications>ActiveX>Excel) that you can use as a starting point.
    2. Buy the LabVIEW Report Generation Toolkit. Info can be found here.
    3. Search this forum for other examples of writing to Excel.

  • JPEG/PSD issue--I open a jpeg and edit it (levels, crop) and then "save as" and the save as option shows there are now levels in the image and it wants to save it as a .psd file or a copy with layers.  What am I doing that has these settings appear?

    JPEG/PSD issue--I open a jpeg and edit it (levels, crop) and then "save as" and the save as option shows there are now levels in the image and it wants to save it as a .psd file or a copy with layers.  What am I doing that has these settings appear?

    16bit? Pixels extending beyond the canvas? (from a crop with delete unused pixels turn off).  Have you previously been saving PSD files?
    IME you sometimes have to tell Photoshop that the first save of a session is JPG, and it remembers from there on.  The way to 'tell' Photoshop that JPG, or PDF, or PNG etc are now your preferred format is to Ctrl (Cmd) click on that format in the Save As drop down list.  So long as the file does not have parameters that your chosen format does not support, then this should work for you.
    [EDIT]  Just noticed that you did include 'Crop' in the subject line.  Do you have 'Delete cropped pixels' checked?

Maybe you are looking for