Is it possible to reduce the size of the request

Hi all

Is it possible to reduce the size of the query of query below while it increases performance. To join them the same tables and have the same join conditions except for the names of columns whichwe pick

SELECT
o.WORKORDER_FK_KEY,
o.SEGMENT_FK_KEY,
CASE WHEN (v_profile = 1) THEN SEG1. ELSE SEGMENT_PK_KEY END TO_SEGMENT_FK_KEY o.SEGMENT_FK_KEY,
o.ITEM_FK_KEY,
s.system_fk_key,
o.SHIFT_WORKDAY_FK_KEY,
o.READING_TIME,
NVL (o.QTY_COMPLETED, o.QTY_OUTPUT - NVL (QTY_REJECTED, QTY_REWORK + QTY_SCRAP)),-write the formula of qty_completed using BI
o.QTY_UOM QTY_UOM,
i.PRIMARY_UOM,
i.SECONDARY_UOM,
1-write the search value
v_profile,
SYSDATE,
SYSDATE,
v_unassigned_val,
v_unassigned_val
OF mth_equip_output o,.
mth_items_d I,.
S MTH_PRODUCTION_SCHEDULES_F,
SEG MTH_PRODUCTION_SEGMENTS_F,
MTH_PRODUCTION_SEGMENTS_F SEG1
WHERE i.item_pk_key = o.item_fk_key
AND s.workorder_pk_key = o.workorder_fk_key
AND o.last_update_date > v_log_from_date
AND o.last_update_date < = v_log_to_date
AND SEG.item_Fk_key = o.item_fk_key
AND seg.workorder_Fk_key = o.workorder_fk_key
AND SEG.segment_pk_key = o.segment_fk_key
AND o.WORKORDER_FK_KEY <>v_unassigned_val
AND o.SEGMENT_FK_KEY <>v_unassigned_val
AND o.ITEM_FK_KEY <>v_unassigned_val
AND SEG. NEXT_SEGMENT_FK = SEG1. SEGMENT_PK
UNION

SELECT
o.WORKORDER_FK_KEY,
o.SEGMENT_FK_KEY,
o.SEGMENT_FK_KEY,
o.ITEM_FK_KEY,
s.system_fk_key,
o.SHIFT_WORKDAY_FK_KEY,
o.READING_TIME,
o.QTY_SCRAP,
o.QTY_UOM QTY_UOM,
i.PRIMARY_UOM,
i.SECONDARY_UOM,
1,
5,
SYSDATE,
SYSDATE,
v_unassigned_val,
v_unassigned_val
OF mth_equip_output o,.
mth_items_d I,.
S MTH_PRODUCTION_SCHEDULES_F,
SEG MTH_PRODUCTION_SEGMENTS_F,
MTH_PRODUCTION_SEGMENTS_F SEG1
WHERE i.item_pk_key = o.item_fk_key
AND s.workorder_pk_key = o.workorder_fk_key
AND o.last_update_date > v_log_from_date
AND o.last_update_date < = v_log_to_date
AND SEG.item_Fk_key = o.item_fk_key
AND seg.workorder_Fk_key = o.workorder_fk_key
AND SEG.segment_pk_key = o.segment_fk_key
AND o.WORKORDER_FK_KEY <>v_unassigned_val
AND o.SEGMENT_FK_KEY <>v_unassigned_val
AND o.ITEM_FK_KEY <>v_unassigned_val
AND SEG. NEXT_SEGMENT_FK = SEG1. SEGMENT_PK
UNION

SELECT
o.WORKORDER_FK_KEY,
o.SEGMENT_FK_KEY,
o.SEGMENT_FK_KEY,
o.ITEM_FK_KEY,
s.system_fk_key,
o.SHIFT_WORKDAY_FK_KEY,
o.READING_TIME,
NVL (QTY_REJECTED, QTY_REWORK + QTY_SCRAP),-write the formula of BI qty_rejected here = rework scrap
o.QTY_UOM QTY_UOM,
i.PRIMARY_UOM,
i.SECONDARY_UOM,
1,
4,
SYSDATE,
SYSDATE,
v_unassigned_val,
v_unassigned_val
OF mth_equip_output o,.
mth_items_d I,.
S MTH_PRODUCTION_SCHEDULES_F,
SEG MTH_PRODUCTION_SEGMENTS_F,
MTH_PRODUCTION_SEGMENTS_F SEG1
WHERE i.item_pk_key = o.item_fk_key
AND s.workorder_pk_key = o.workorder_fk_key
AND o.last_update_date > v_log_from_date
AND o.last_update_date < = v_log_to_date
AND SEG.item_Fk_key = o.item_fk_key
AND seg.workorder_Fk_key = o.workorder_fk_key
AND SEG.segment_pk_key = o.segment_fk_key
AND o.WORKORDER_FK_KEY <>v_unassigned_val
AND o.SEGMENT_FK_KEY <>v_unassigned_val
AND o.ITEM_FK_KEY <>v_unassigned_val
AND SEG. NEXT_SEGMENT_FK = SEG1. SEGMENT_PK


Thank you very much in advance

If you consider how identical to and WHERE the clause is, I think that avoiding the UNION would be best. (that is to say with the UNION, you are reading/pulling the same data 3 times.).

I would try to fire once, then 'create' what data you need. Without overflow or what you're trying to do... I would think something like that would back up the same results. (Not sure on performance, but again, I do that think that he would run faster?  :))

SELECT DISTINCT
       o.WORKORDER_FK_KEY,
       o.SEGMENT_FK_KEY,
       CASE WHEN link.lvl = 1 THEN
               CASE WHEN (v_profile = 1) THEN SEG1.SEGMENT_PK_KEY
                  ELSE o.SEGMENT_FK_KEY
                  END
            WHEN link.lvl IN (2, 3) THEN
                  o.SEGMENT_FK_KEY
            END TO_SEGMENT_FK_KEY,
       o.ITEM_FK_KEY,
       s.system_fk_key,
       o.SHIFT_WORKDAY_FK_KEY,
       o.READING_TIME,
       CASE WHEN link.lvl = 1 THEN
               NVL (o.QTY_COMPLETED,
                  o.QTY_OUTPUT - NVL (QTY_REJECTED, QTY_REWORK + QTY_SCRAP))
            WHEN link.lvl = 2 THEN
                  o.QTY_SCRAP
            WHEN link.lvl = 3 THEN
                  NVL (QTY_REJECTED, QTY_REWORK + QTY_SCRAP)
            END QTY_SCRAP,
       o.QTY_UOM QTY_UOM,
       i.PRIMARY_UOM,
       i.SECONDARY_UOM,
       1,                                        --write the value from lookup
       CASE WHEN link.lvl = 1 THEN v_profile
            WHEN link.lvl = 2 THEN 5
            WHEN link.lvl = 3 THEN 4
            END v_profile,
       SYSDATE,
       SYSDATE,
       v_unassigned_val,
       v_unassigned_val
  FROM mth_equip_output o,
       mth_items_d i,
       MTH_PRODUCTION_SCHEDULES_F s,
       MTH_PRODUCTION_SEGMENTS_F SEG,
       MTH_PRODUCTION_SEGMENTS_F SEG1,
       (SELECT level lvl FROM dual CONNECT BY level <=3 ) link
 WHERE     i.item_pk_key = o.item_fk_key
       AND s.workorder_pk_key = o.workorder_fk_key
       AND o.last_update_date > v_log_from_date
       AND o.last_update_date <= v_log_to_date
       AND SEG.item_Fk_key = o.item_fk_key
       AND seg.workorder_Fk_key = o.workorder_fk_key
       AND SEG.segment_pk_key = o.segment_fk_key
       AND o.WORKORDER_FK_KEY <> v_unassigned_val
       AND o.SEGMENT_FK_KEYv_unassigned_val
       AND o.ITEM_FK_KEYv_unassigned_val
       AND SEG.NEXT_SEGMENT_FK = SEG1.SEGMENT_PK

Tags: Database

Similar Questions

  • PACK of PDF - is possible to "reduce the size of the file" in this online tool?

    I bought adobe pdf pack today and thought I would then subtract the size of the file of my pdf files online. I can see the pdf pack do not include this feature.

    If I upgrade to pdf pro pack, is the "reduce filsize" function included in this pack, or is - not possible to do it on the web?

    I think Acrobat Pro can optimize and reduce the size of the PDF file.

  • Is is possible to reduce the address bar size AND also delete the google search bar at the same time?

    Basically, I want to delete the google search bar that I didn't need. but when I do the address bar is getting too long.
    From there I want to reduce the size of the address bar, but I don't know how, does anyone know how to do this?

    If you want unusable space: right click at the right end of the address bar. Click Customize. Drag the icon of 'Space' where you want the space. Repeat as many times as necessary. (To cancel, drag the spaces to whence they came.)

  • Possible to reduce the height of the tabs and toolbar icons?

    Hello

    in workstation 7 the height of the icon bar and the tab was a litte smaller than 8 workstation.

    Is is possible to change the size of these bars in v8? (see attachment for details).

    Robert

    Sorry, you cannot change the height of these bars to WS8.

    Thanks for your comments, if... the team will bear this in mind for the future.

  • Is it possible to reduce the "suction" items fall dragged and drop?

    I am developing a game where the user must correctly space objects between them depending on what is their relationship to each other.  Falling objects are in fact completely transparent, and the user must place the point slide perfectly on top of it. The problem is that when the user does not place the object from sliding directly on top of the object to be moved, it nevertheless gets pulled to this object. 1. I want that there is virtually no traction power.  2. I would also like the user to be able to stream, click on the object to move and move it slightly until he thinks it's perfectly fine and the stay of the object where it let him down - I don't want it pulled back to its origin.

    If possible, let me know!

    Thank you!

    Ryan

    Hello

    It is possible to redrag and withdraw the power of pull by setting the following two parameters.

    1 Select the Target Drop, Drag and Drop Panel > accordion target Drop, change of position as "absolute".

    2. activate the option "Source Redrag dropped" to drag and drop the Panel > accordion Interaction properties.

    But with these parameters, it allows to drag the object even when it is removed properly.

    Thank you

    VERALINE Sukumaran.

  • It is Possible to reduce the space between the lines after &lt; CR &gt; a text block?

    Hello

    I paste text without ANY special models in my custom CSS layout.

    I would have less space between the line after a < CR >.

    see you soon,

    Dreamer101.1

    Using the following style rules

    p, {br}
    margin: 0;
    padding: 0;
    }

    and look at the result.

    I hope this helps

    Ben

  • Reduce the size of a file created by "write to waveform.

    Hello

    I'm using labview in 2012 and I have a problem with the size of the tdms file generated by the function "write to waveform. The data is real time 16 channels in a series of X NI USB-6343 and is composed by the gains of the voltage on the y-axis with the absolute time on the x axis (waveform format). The size of the file is reached a Go command within a few hours. Is it possible to reduce the size of this file? All configurations on the component?

    Thanks for the help.

    Best regards

    Marcelo Nobre

    Yes indeed, there is a better way.  Instead of using writing on file express VI measure, try adding the DAQmx logging into your task DAQmx (before starting the task):

    This method writes the raw binary data unadjusted to the file (2 bytes per sample because it is a 16-bit data acquisition card) with scaling of information in the header of the file.  In the example you posted, you write the data which are already put across to the file (double 8 bytes for example).  What will make this change you expect to reduce your file size by ~ 4 x.

    If you wish you can compress the files once you have finished writing to them for further reduction of size, but there is no support to achieve so that you are currently writing in the PDM file.  In addition, you will need to unzip the file until you can access the data in the .tdms file.  You can probably get good results with something as simple as the data stored in a .zip file.

    Best regards

  • reduce the size of the icons

    When you use icon editor, all of a sudden the font size grew so great that I can't type what whatsoever in the container box.  Is it possible to reduce the font size to a desirable level?

    Double-click the text tool in the palette of the icon editor, and then select the following fonts:

    Police: "small fonts".

    size: 10

    align: left

    .. Press OK.

    See if that helps. Good luck!

  • How can I reduce the size of the ButtonField

    Hello

    is it possible to reduce the size of the ButtonField. I want to make the button 50% less of the ButtonField regurla.

    is this possible? If so, how?

    can someone help me please?

    Thank you

    Maury.

    Hi mb1, thank you for your response. It worked for me. And in even, I want the text on the button must also be small. How can I do this? in fact by reducing the button, the button text is displayed as «...» "with 3 points. For example the text of the button 'click here', then after having reduced the size of the buttons, the button text is displayed as «...» ».

    I want the text of the button must be in the very small size.

    How can I achieve this. can you help me please?

    Thank you
    Maury.

  • Cannot start the database after reducing the size of the RAM

    Hi all

    I have a database of GR 11, 2 installed in virtual box VM. Initially, I got 3 GB of RAM for this machine (when the database has been installed).

    I then reduced it to 1 GB. Then I tried to start the database, but I got error below.

    MEMORY_TARGET not supported on this system


    Help, please.


    Thank you

    Mauricette.

    User618902-OC says:

    Is it not possible to reduce the size of the RAM and start the database with configuration on MEMORY_TARGET changes?

    What part of "MEMORY_TARGET not supported on this system" do you NOT understand?

  • reduce the size of the file is now grayed out

    After the update to os 10.7 Lion, Snow Leopard, the possibility of reduce the size of the file is grayed out ort. how I get it back?

    using Acrobat Professional 8.3.1

    Thank you

    [email protected]

    Well, I found the answer myself. One that has been hard to find, but simple. It was a setting of preference! I went to Documents > / a View Mode > set to never. Option to reduce is now back!

  • reduce the size of the request

    Hi all

    I request below. The inner query of the union has all of the same columns with the exception of level_num. is it possible to reduce the size of this query:


    FUSION
    IN
    MTH_EQUIP_HIERARCHY MEQ
    USING

    (SELECT 1 LEVEL_NUM
    To_Date('01-Jan-1900','DD-mon-YYYY') EFFECTIVE_DATE,
    -LEVEL_KEY 99999,
    LEVEL_NAME "all unassigned."
    -PARENT_KEY 99999,
    "All Unassigned" PARENT_NAME.
    MDH. HIERARCHY_ID
    OF MTH_DIM_HIERARCHY MDH
    WHERE MDH. CREATION_DATE > = v_log_from_date AND
    MDH. DIMENSION_NAME = "HARDWARE".
    UNION
    SELECT 2 LEVEL_NUM,
    To_Date('01-Jan-1900','DD-mon-YYYY') EFFECTIVE_DATE,
    -LEVEL_KEY 99999,
    LEVEL_NAME "all unassigned."
    -PARENT_KEY 99999,
    "All Unassigned" PARENT_NAME.
    MDH. HIERARCHY_ID
    OF MTH_DIM_HIERARCHY MDH
    WHERE MDH. CREATION_DATE > = v_log_from_date AND
    MDH. DIMENSION_NAME = "HARDWARE".
    UNION
    SELECT
    LEVEL_NUM 3,.
    To_Date('01-Jan-1900','DD-mon-YYYY') EFFECTIVE_DATE,
    -LEVEL_KEY 99999,
    LEVEL_NAME "all unassigned."
    -PARENT_KEY 99999,
    "All Unassigned" PARENT_NAME.
    MDH. HIERARCHY_ID
    OF MTH_DIM_HIERARCHY MDH
    WHERE MDH. CREATION_DATE > = v_log_from_date AND
    MDH. DIMENSION_NAME = "HARDWARE".
    UNION
    SELECT
    LEVEL_NUM 4,.
    To_Date('01-Jan-1900','DD-mon-YYYY') EFFECTIVE_DATE,
    -LEVEL_KEY 99999,
    LEVEL_NAME "all unassigned."
    -PARENT_KEY 99999,
    "All Unassigned" PARENT_NAME.
    MDH. HIERARCHY_ID
    OF MTH_DIM_HIERARCHY MDH
    WHERE MDH. CREATION_DATE > = v_log_from_date AND
    MDH. DIMENSION_NAME = "HARDWARE".
    UNION
    SELECT
    LEVEL_NUM 5,.
    To_Date('01-Jan-1900','DD-mon-YYYY') EFFECTIVE_DATE,
    -LEVEL_KEY 99999,
    LEVEL_NAME "all unassigned."
    -PARENT_KEY 99999,
    "All Unassigned" PARENT_NAME.
    MDH. HIERARCHY_ID

    OF MTH_DIM_HIERARCHY MDH
    WHERE MDH. CREATION_DATE > = v_log_from_date AND
    MDH. DIMENSION_NAME = "HARDWARE".
    UNION
    SELECT
    LEVEL_NUM 6,.
    To_Date('01-Jan-1900','DD-mon-YYYY') EFFECTIVE_DATE,
    -LEVEL_KEY 99999,
    LEVEL_NAME "all unassigned."
    -PARENT_KEY 99999,
    "All Unassigned" PARENT_NAME.
    MDH. HIERARCHY_ID
    OF MTH_DIM_HIERARCHY MDH
    WHERE MDH. CREATION_DATE > = v_log_from_date AND
    MDH. DIMENSION_NAME = "HARDWARE".
    UNION
    SELECT
    LEVEL_NUM 7,.
    To_Date('01-Jan-1900','DD-mon-YYYY') EFFECTIVE_DATE,
    -LEVEL_KEY 99999,
    LEVEL_NAME "all unassigned."
    -PARENT_KEY 99999,
    "All Unassigned" PARENT_NAME.
    MDH. HIERARCHY_ID
    OF MTH_DIM_HIERARCHY MDH
    WHERE MDH. CREATION_DATE > = v_log_from_date AND
    MDH. DIMENSION_NAME = "HARDWARE".
    UNION
    SELECT
    LEVEL_NUM 8,.
    To_Date('01-Jan-1900','DD-mon-YYYY') EFFECTIVE_DATE,
    -LEVEL_KEY 99999,
    LEVEL_NAME "all unassigned."
    -PARENT_KEY 99999,
    "All Unassigned" PARENT_NAME.
    MDH. HIERARCHY_ID
    OF MTH_DIM_HIERARCHY MDH
    WHERE MDH. CREATION_DATE > = v_log_from_date AND
    MDH. DIMENSION_NAME = "HARDWARE".
    UNION
    SELECT
    LEVEL_NUM 9,.
    To_Date('01-Jan-1900','DD-mon-YYYY') EFFECTIVE_DATE,
    -LEVEL_KEY 99999,
    LEVEL_NAME "all unassigned."
    -PARENT_KEY 99999,
    "All Unassigned" PARENT_NAME.
    MDH. HIERARCHY_ID
    OF MTH_DIM_HIERARCHY MDH
    WHERE MDH. CREATION_DATE > = v_log_from_date AND
    MDH. DIMENSION_NAME = "EQUIPMENT") UN_ALL
    ON)
    MEQ. HIERARCHY_ID = UN_ALL. HIERARCHY_ID AND
    MEQ. LEVEL_NUM = UN_ALL. LEVEL_NUM AND
    MEQ. LEVEL_FK_KEY = UN_ALL. LEVEL_KEY AND
    MEQ. EFFECTIVE_DATE = UN_ALL. EFFECTIVE_DATE
    )

    WHEN MATCHED THEN
    UPDATE
    SET
    PARENT_FK_KEY = UN_ALL. PARENT_KEY,
    SYSTEM_FK_KEY = v_unassigned_val,
    CREATION_SYSTEM_ID = v_unassigned_val,
    LEVEL_NAME = UN_ALL. LEVEL_NAME,
    GROUP_ID = 1

    WHEN NOT MATCHED THEN
    INSERT
    (HIERARCHY_ID,
    LEVEL_NUM,
    LEVEL_FK_KEY,
    PARENT_FK_KEY,
    SYSTEM_FK_KEY,
    EFFECTIVE_DATE,
    CREATION_DATE,
    LAST_UPDATE_DATE,
    CREATION_SYSTEM_ID,
    LAST_UPDATE_SYSTEM_ID,
    LEVEL_NAME,
    PARENT_NAME,
    GROUP_ID)
    VALUES
    (UN_ALL. HIERARCHY_ID,
    UN_ALL. LEVEL_NUM,
    UN_ALL. LEVEL_KEY,
    UN_ALL. PARENT_KEY,
    MTH_UTIL_PKG. MTH_UA_GET_VAL(),
    UN_ALL. EFFECTIVE_DATE,
    v_log_to_date,
    v_log_to_date,
    MTH_UTIL_PKG. MTH_UA_GET_VAL(),
    MTH_UTIL_PKG. MTH_UA_GET_VAL(),
    UN_ALL. LEVEL_NAME,
    UN_ALL. PARENT_NAME,
    1)
    ;


    Thanks in advance.

    Kind regards
    Amrit

    Hi, Amrit,

    Do you want to just 9 copies of the selected lines of mth_dim_hierarchy, each with all the columns the same except for level_num?
    If so, mth_dim_hierarchy with a Meter of Table , that is, any table of cross join (or, as in this case, result set) with 9 rows. For example:

    WITH     cntr     AS
    (
         SELECT     LEVEL     AS n
         FROM     dual
         CONNECT BY     LEVEL     <= 9
    )
    SELECT      c.n                         AS LEVEL_NUM
    ,     To_Date ('01-JAN-1900','DD-MON-YYYY')      AS EFFECTIVE_DATE
    ,     -99999                          AS LEVEL_KEY
    ,     'Unassigned'                     AS LEVEL_NAME
    ,     -99999                          AS PARENT_KEY
    ,     'Unassigned'                     AS PARENT_NAME
    ,     MDH.HIERARCHY_ID
    FROM           MTH_DIM_HIERARCHY      MDH
    CROSS JOIN     cntr               c
    WHERE      MDH.CREATION_DATE      >= v_log_from_date
    AND     MDH.DIMENSION_NAME      = 'EQUIPMENT'
    

    I hope that answers your question.
    If not, post a small example of data (CREATE TABLE and only relevant columns, INSERT statements) for all of the tables involved and the results desired from these data.
    In the case of a DML (such as FUSION), the sample data should show what look like the paintings before the DML, and results will be the content of the or the tables changed after the DML.
    Explain, using specific examples, how you get these results from these data.
    Simplify the prole, if possible. If you show what you need to do with 3 distinct values of level_num, do not post a problem with 9 distinct values.
    Always tell what version of Oracle you are using.

  • How to reduce the size of the virtual disk

    Is it possible to reduce the size of the virtual disk to a virtual machine.  If so, how?  We tried the shrink option in the VMware tools running on the virtual (Win2003) computer, but it didn't reduce the size of the unit at all.

    VMware Converter is probably the best option for fret.

  • How to reduce the size of the SWF to a file imported from After Effects

    Hello!

    I'm doing a banner web for an internet marketing company, so he has very specific requirements. We did it in After Effects, and I was able to export it to an FLV file and import to Flash very well with the SWF file. Now, I need to make the significantly smaller SWF file.

    At the moment it is 2.5 MB and we can only present a 40K SWF size. It is even possible to reduce the size so much and still keep intregrity of the animation?

    I'm more familiar with Flash than After Effects, but he can play with the settings, etc. If someone can tell me what to try.

    Thank you very much for your help!

    is the flv almost 2.5 MB? If so, your only option to significantly reduce swf size is to load the FLV dynamically (which is not usually allowed with banner ads).

  • How to reduce the size of the file to an existing PDF?

    Hello

    Any kind soul suggest a solution for this? Or is it not possible to do?

    I have a PDF - 7 MB file, is provided by a third party (so I can't get another copy or the content has been created between), I would like to add to a site, and 7MB is just too.

    It is 19 pages, can anyone tell me if it is possible to reduce the size of the file to something more reasonable?

    I tried to optimize and she went from 7.92 MB to 7.90 MB wow!

    Thanks to the McP Adv.

    A lot depends on how it is done. Here are some options: (remember to work on a copy)

    1. save money, not save

    2 Save as > optimize PDF (you can optimize sample image and other. (There is also a function of audit (here I think for AAX) which gives you an idea where is indigestion)

    3. Save as > reduce the size of the file

    4. printing to a new PDF with appropriate work settings (not recommended normally and will delete the links and others)

Maybe you are looking for

  • Windows XP WLAN driver for lack of laptop Satellite Pro L20

    I have recently reinstalled windows on the laptop to my mom, as he began to slow down to a crawl. Unfortunately, I did not notice that until it was too late there is no WLAN driver from the Web site. Now, I can't know what that uses the laptop chip a

  • My network access protection is disabled, impossible to turn it back on

    Network access protection (n.a.p) is part of the action, I'm sure you knew that already. * original title - my network access protection is disabled. I can't activate it reguardless of how many times I smack my vaio with a help of hammer.p'ls of luge

  • BlackBerry smartphones HELPS

    IOM has a problem with this month, there are... I can't save my contacts in my phone book... Whenever im trying to save it imy phone is just freezing and will not turn off, can anyone helpo me with this problem... Thanks in advance...  

  • To organize how to apply the same setting to all subfolders in a library?

    I created a new library and included a simple 'root folder '.  When you use Windows Explorer to view the contents (subfolders) in the root folder, I want all subfolders to be displayed with the same settings custom: arranged by updated (descending or

  • BlackBerry Smartphones cannot send SMS messages

    Hello! I have my Storm a month without problems, but today I can not send SMS messages, I received them well. I get a red X and this message: «status of equipment Mobile failed» I tried to find a solution to the technical center, without success Some