SQL query (or pl / sql) show this week activities

I need your friends to help to create the sql query (or pl / sql) show of this week's activities, my table is called activity and it has a date field (contains the date of the creation of the application)

depends on what you describe as 'this week '...

you could do something like

WHERE your_date_field > = trunc(sysdate,'IW') AND your_date_field< trunc(sysdate="" +="">

which would give you anything from Monday to Sunday from the current week

HTH

Tags: Database

Similar Questions

  • AWR show this sql as more CPU consuming sql. Is - this need for sql tunning?

    Hello

    Awr showing this sql as the consumer of CPU above reports

    Please consider me as a newbie and help me understand this.

    Thanking you...
    SQL ordered by CPU Time            DB/Inst:  Snaps:  
    -> Resources reported for PL/SQL code includes the resources used by all SQL
       statements called by the code.
    -> % Total DB Time is the Elapsed Time of the SQL statement divided
       into the Total Database Time multiplied by 100
    
        CPU      Elapsed                  CPU per  % Total
      Time (s)   Time (s)  Executions     Exec (s) DB Time    SQL Id
    ---------- ---------- ------------ ----------- ------- -------------
         2,658      2,665            1     2658.18     5.7 5aawbyzqjk8by
    select distinct trp.site_id from tas_receipts_process trp , tas_tsa_info tti, ta
    s_site ts where trp.tsa_id = tti.tsa_id and tti.status = 1 and ts.site_id = trp
    .site_id and (tti.max_install != trp.pushed_rsn and ((tti.max_install = 0 and
    (trp.pushed_rsn - trp.curr_rsn) < ts.workahead_count * :1) or (tti.max_install
    SQL full = >
    select distinct trp.site_id from tas_receipts_process trp , tas_tsa_info tti, tas_site
    ts 
    where 
    trp.tsa_id = tti.tsa_id 
    and tti.status = 1 
    and ts.site_id = trp.site_id  
    and
    (
    tti.max_install != trp.pushed_rsn 
    and  (
           (tti.max_install = 0 and 
               (trp.pushed_rsn - trp.curr_rsn) < ts.workahead_count * :1
           ) or  
           (tti.max_install > 0 and 
               (trp.pushed_rsn - trp.curr_rsn) < ts.workahead_count * :2
           ) or   
           (tti.max_install = trp.pushed_rsn and
           tti.max_install <> 0 
           ) 
         )
    ) or 
    (trp.pushed_time != 
    (
    to_date(tti.created_date,'dd-MON-yyhh24:mi:ss') + (1/24/60) * ts.workahead_time
    ) and  
    (
      (
    to_date(sysdate,'dd-MON-yyhh24:mi:ss') + (1/24/60) * :3
      ) > trp.pushed_time
    )
    )
    get the plan of the explain for the above sql command = >
    QL> SELECT plan_table_output FROM TABLE(DBMS_XPLAN.DISPLAY_CURSOR('g6c8y31xr06vp',0,'ALL'));
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    SQL_ID  g6c8y31xr06vp, child number 0
    -------------------------------------
    select distinct trp.site_id from tas_receipts_process trp , tas_tsa_info tti, tas_site
    ts  where trp.tsa_id = tti.tsa_id and tti.status = 1 and ts.site_id = trp.site_id  and
    (tti.max_install != trp.pushed_rsn and  ((tti.max_install = 0 and (trp.pushed_rsn -
    trp.curr_rsn) < ts.workahead_count * :1) or  (tti.max_install > 0 and (trp.pushed_rsn -
    trp.curr_rsn) < ts.workahead_count * :2) or   (tti.max_install = trp.pushed_rsn and
    tti.max_install <> 0 )  )) or (trp.pushed_time != (to_date(tti.created_date,'dd-MON-yy
    hh24:mi:ss') + (1/24/60) * ts.workahead_time) and  ((to_date(sysdate,'dd-MON-yy
    hh24:mi:ss') + (1/24/60) * :3) > trp.pushed_time))
    
    Plan hash value: 2862358316
    
    ------------------------------------------------------------------------------------------------
    | Id  | Operation               | Name                 | Rows  | Bytes | Cost (%CPU)| Time     |
    ------------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT        |                      |       |       |   601K(100)|          |
    |   1 |  HASH UNIQUE            |                      |     4 |   216 |   601K (10)| 02:00:14 |
    |   2 |   CONCATENATION         |                      |       |       |            |          |
    |   3 |    NESTED LOOPS         |                      |   200M|    10G|   579K  (6)| 01:55:52 |
    |   4 |     MERGE JOIN CARTESIAN|                      |  2849 | 99715 |    12   (0)| 00:00:01 |
    |   5 |      TABLE ACCESS FULL  | TAS_SITE             |     7 |    70 |     3   (0)| 00:00:01 |
    |   6 |      BUFFER SORT        |                      |   407 | 10175 |     9   (0)| 00:00:01 |
    |*  7 |       TABLE ACCESS FULL | TAS_RECEIPTS_PROCESS |   407 | 10175 |     1   (0)| 00:00:01 |
    |*  8 |     TABLE ACCESS FULL   | TAS_TSA_INFO         | 70411 |  1306K|   203   (6)| 00:00:03 |
    |*  9 |    HASH JOIN            |                      |     2 |   108 |   203   (2)| 00:00:03 |
    |* 10 |     HASH JOIN           |                      |   407 | 14245 |     7  (15)| 00:00:01 |
    |  11 |      TABLE ACCESS FULL  | TAS_SITE             |     7 |    70 |     3   (0)| 00:00:01 |
    |  12 |      TABLE ACCESS FULL  | TAS_RECEIPTS_PROCESS |   407 | 10175 |     3   (0)| 00:00:01 |
    |* 13 |     TABLE ACCESS FULL   | TAS_TSA_INFO         | 21474 |   398K|   196   (2)| 00:00:03 |
    ------------------------------------------------------------------------------------------------
    
    Query Block Name / Object Alias (identified by operation id):
    -------------------------------------------------------------
    
       1 - SEL$1
       5 - SEL$1_1 / TS@SEL$1
       7 - SEL$1_1 / TRP@SEL$1
       8 - SEL$1_1 / TTI@SEL$1
      11 - SEL$1_2 / TS@SEL$1_2
      12 - SEL$1_2 / TRP@SEL$1_2
      13 - SEL$1_2 / TTI@SEL$1_2
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       7 - filter("TRP"."PUSHED_TIME"<TO_DATE(TO_CHAR(SYSDATE@!),'dd-MON-yy
                  hh24:mi:ss')+.000694444444444444444444444444444444444445*:3)
       8 - filter("TRP"."PUSHED_TIME"<>TO_DATE(INTERNAL_FUNCTION("TTI"."CREATED_DATE"),'dd-M
                  ON-yy hh24:mi:ss')+.000694444444444444444444444444444444444445*"TS"."WORKAHEAD_TIME")
       9 - access("TRP"."TSA_ID"="TTI"."TSA_ID")
           filter(("TTI"."MAX_INSTALL"<>"TRP"."PUSHED_RSN" AND (("TTI"."MAX_INSTALL"=0 AND
                  "TRP"."PUSHED_RSN"-"TRP"."CURR_RSN"<"TS"."WORKAHEAD_COUNT"*:1) OR
                  ("TTI"."MAX_INSTALL">0 AND "TRP"."PUSHED_RSN"-"TRP"."CURR_RSN"<"TS"."WORKAHEAD_COUNT"*:2
                  ) OR ("TTI"."MAX_INSTALL"="TRP"."PUSHED_RSN" AND "TTI"."MAX_INSTALL"<>0)) AND
                  (LNNVL("TRP"."PUSHED_TIME"<TO_DATE(TO_CHAR(SYSDATE@!),'dd-MON-yy
                  hh24:mi:ss')+.000694444444444444444444444444444444444445*:3) OR
                  LNNVL("TRP"."PUSHED_TIME"<>TO_DATE(INTERNAL_FUNCTION("TTI"."CREATED_DATE"),'dd-MON-yy
                  hh24:mi:ss')+.000694444444444444444444444444444444444445*"TS"."WORKAHEAD_TIME"))))
      10 - access("TS"."SITE_ID"="TRP"."SITE_ID")
      13 - filter("TTI"."STATUS"=1)
    
    Column Projection Information (identified by operation id):
    -----------------------------------------------------------
    
       1 - "TRP"."SITE_ID"[NUMBER,22]
       2 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
           "TS"."WORKAHEAD_TIME"[NUMBER,22], "TRP"."TSA_ID"[NUMBER,22],
           "TRP"."SITE_ID"[NUMBER,22], "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22],
           "TRP"."PUSHED_TIME"[DATE,7], "TTI"."TSA_ID"[NUMBER,22], "TTI"."STATUS"[NUMBER,22],
           "TTI"."MAX_INSTALL"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7]
       3 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
           "TS"."WORKAHEAD_TIME"[NUMBER,22], "TRP"."TSA_ID"[NUMBER,22],
           "TRP"."SITE_ID"[NUMBER,22], "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22],
           "TRP"."PUSHED_TIME"[DATE,7], "TTI"."TSA_ID"[NUMBER,22], "TTI"."STATUS"[NUMBER,22],
           "TTI"."MAX_INSTALL"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7]
       4 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
           "TS"."WORKAHEAD_TIME"[NUMBER,22], "TRP"."TSA_ID"[NUMBER,22],
           "TRP"."SITE_ID"[NUMBER,22], "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22],
           "TRP"."PUSHED_TIME"[DATE,7]
       5 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
           "TS"."WORKAHEAD_TIME"[NUMBER,22]
       6 - (#keys=0) "TRP"."TSA_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
           "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7]
       7 - "TRP"."TSA_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
           "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7]
       8 - "TTI"."TSA_ID"[NUMBER,22], "TTI"."STATUS"[NUMBER,22],
           "TTI"."MAX_INSTALL"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7]
       9 - (#keys=1) "TRP"."TSA_ID"[NUMBER,22], "TTI"."TSA_ID"[NUMBER,22],
           "TS"."SITE_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
           "TS"."WORKAHEAD_TIME"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
           "TRP"."PUSHED_RSN"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7],
           "TRP"."CURR_RSN"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7], "TTI"."STATUS"[NUMBER,22],
           "TTI"."MAX_INSTALL"[NUMBER,22]
      10 - (#keys=1) "TS"."SITE_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
           "TS"."WORKAHEAD_TIME"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
           "TRP"."TSA_ID"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7], "TRP"."CURR_RSN"[NUMBER,22],
           "TRP"."PUSHED_RSN"[NUMBER,22]
      11 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
           "TS"."WORKAHEAD_TIME"[NUMBER,22]
      12 - "TRP"."TSA_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
           "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7]
      13 - "TTI"."TSA_ID"[NUMBER,22], "TTI"."STATUS"[NUMBER,22],
           "TTI"."MAX_INSTALL"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7]
    
    
    105 rows selected.
    sizes of the objects concerned = >
    OWNER           SEGMENT_NAME                   SEGMENT_TYPE         TABLESPACE_NAME      EXTENTS           BYTES_
    --------------- ------------------------------ -------------------- -------------------- ------- ----------------
    AZD_SCHM     TAS_TSA_INFO                   TABLE                TATSU_DATA_TS             22        7,340,032
    AZD_SCHM     TAS_TSA_INFO_PK                INDEX                TATSU_DATA_TS             17        2,097,152
    --------------- ------------------------------ -------------------- -------------------- ------- ----------------
    AZD_SCHM     TAS_RECEIPTS_PROCESS           TABLE                TATSU_DATA_TS              1           65,536
    AZD_SCHM     TAS_RECEIPTS_PROCESS_IDX       INDEX                TATSU_INDEX_TS             1           65,536
    --------------- ------------------------------ -------------------- -------------------- ------- ----------------
    AZD_SCHM     TAS_SITE                       TABLE                TATSU_DATA_TS              1           65,536
    AZD_SCHM     TAS_SITE_NAME_UNQ              INDEX                TATSU_INDEX_TS             1           65,536
    AZD_SCHM     TAS_SITE_PK                    INDEX                TATSU_DATA_TS              1           65,536
    --------------- ------------------------------ -------------------- -------------------- ------- ----------------
    Please suggest how to tune this above SQL

    Above sql plan looks good


    Any comment and help is appreciated highely.

    Thank you and best regards,
    IVW

    Hello
    It is a production system?
    Are you a license to use the AWR?

    concerning

    Alan

  • This week, new tab FIrefox showed 9 small tiles. Right-click allowed up to 21 tiles. How can I get that back?

    Earlier this week when I opened a new tab it suddenly showed my sites as small tiles rather than screenshots. Using the right click it allowed me to customize the page up to 7 tiles per line which saved me a lot of time. In the last hours when I opened a new tab it showed initially 9 screenshots and then open another tab with my custom sites. Suddenly, he turned to the screenshots only. How can I get the tiles to measure at the time when I opened a new tab?

    Have you ever used an extension like Speed Dial?

    You can set the number of rows and columns for the built-in function: newtab page via these prefs on the topic: config page.

    • Browser.newtabpage.Columns
    • Browser.newtabpage.Rows

    You can open the topic: config page via the bar of address and you can accept the warning and click "I'll be careful" to continue.

    See also this article on the page tab (topic: newtab):

  • Start/end of last week, no matter the date execution this week

    Hello world

    I'm new to OBI and wanted to pick your brain on something that drives me crazy.

    I want to create a report that will run an aggregation for a date range that spans the last week (Sunday to Saturday), regardless of when his race in the week.

    Thus, for example. If today is 2016-02-09, then when I run the report at any time this week, it should automatically extract data from 31/01/2016-2016/02/06.

    Is it still possible? Appreciate guidance that can be provided.

    Thank you

    Try this as a SQL filter:

    "Your time Table '." " Your Date column.

    between

    TIMESTAMPADD (SQL_TSI_DAY, DAYOFWEEK (current_date)-6, CURRENT_DATE)

    and

    TIMESTAMPADD (SQL_TSI_DAY - DAYOFWEEK (current_date), CURRENT_DATE)

  • Dashboard prompt: display current Date earlier this week on the top in the list of choices to obiee

    Hello

    I develop a relationship where we have a requirement to indicate the start date of the week current on top in the drop-down list.

    The start date of the week is Sunday, March 10, 2013 "and Saturday weekend date is 17 March 2013", it comes directly from the source and now when I ordered it to be, goes to the week of the
    2015 or 1950 from the desc or asec.

    I want to display the start date of the current week as the default display using the dash prompt and I need digital week, I need the date: I do not have access RPD to set the variable repository.

    For example week start date (18/03/2013 and end date of week 23/03/2013), it should be dyanamic were based on the current date, it must default to this week to start and end date. Please let me know your inputs.

    Thanlks

    Try this at the prompt of-> see the-> SQL results

    SELECT Time.Date FROM 'SA' where week (Time.Date) = week (current_date) and year (Time.Date) = year (current_date)
    order of Time.Date

    If brand aid

    Published by: Srini VIEREN on March 18, 2013 21:18

  • Sometime this week, my MacBook Pro has lost its sound. I can't listen to anything that has the sound of iTunes for video clips. It is no longer a Volume icon (speaker w / lines of radiation) on my Menu bar

    Sometime this week, my MacBook Pro has lost its sound. I can't listen to anything that has the sound of iTunes for video clips. It is no longer a Volume icon (speaker w / lines of radiation) on my Menu bar. My MacBook Pro is a mid-2012, 2.3 GHz Intel Core i7 Memory 16 GB 1600 MHz DDR3 OS X Version Yosemite 10.10.5

    Graphics Intel HD 4000. Can anyone help?

    Thank you very much!

    Thai-Anh

    Reset NVRAM may solve it.

    How to reset the NVRAM on your Mac - Apple Support

    Or system preferences > sound, check on 'Volume to see the menu bar' to show the volume of the sound in the menu bar.

  • Why my computer is running so slowly after updates made this week

    * O.t. - recent updates

    Why my computer is running so slowly after updates made this week?

    Brenda

    The Windows Update process seems to require more patience than usual this month.

    Please provide more information for your issue to be diagnosed.

    Restart your computer and wait 20 minutes for the system to operate before you download information. When the review much, not Event Viewer log files all problems show in the period immediately after the computer has booted.

    Please provide a copy of your system information file. Type the system information in the search box above the Start button and press the ENTER key (alternative is select Start, all programs, accessories, System Tools, system information). Select file, Export and give the file a name noting where it is located. Not to place the cursor in the body of the report before exporting the file. The system creates a new information file system each time system information is available. You must allow a minute or two before the file is completely filled before exporting a copy. Please download the file to your OneDrive, to share with everyone and post a link here. Normal mode preferred report. Please say if the report was obtained in safe mode. If the report is in one language other than English, please indicate the language.

    Please download and share with everyone a new copy of your log System of your event viewer on your disc one and post a link here. It allows to avoid confusion if you delete all previous copies of the log files of your OneDrive.

    To access the system, log, select Start, Control Panel, administrative tools, Event Viewer, in the list on the left of the window, expand Windows logs and select System. Place the cursor on the system, select the Action in the Menu and record all events like (the evtx default file type) and give a name to the file. Do not offer not filtered files. Do not place the cursor in the list of reports before selecting the Action from the menu. Do not clear the logs so that you have a persistent problem.

    For assistance OneDrive see paragraph 9.3:

    http://www.gerryscomputertips.co.UK/MicrosoftCommunity1.htm

  • My HDD shows this error: "you must format the disk in the M: drive, until you can use it. You want to format? »

    My HDD shows this error: you need to format the disk in drive M: until you can use it. Format you? 
    Please help me! the hard drive is like my life...
    That's the reason of my existence...
    I need in the data and that i will do everything I have to please :/ someone help me
    Please helpppp!

    Original title: WD hard drive problem! Desperately need help. Please

    Hi Arman,

    Thanks for posting your query in Microsoft Community.

    I would say you can remove the drive letter M: using disk management and assign a different drive for the drive letter and check if it helps you to solve the problem and if the drive works very well.

    To change the drive letter in disk management follow the steps below:

    a. open computer by clicking the Start> Control Panel > system and security> Administrative Tools > computer management. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    (b) in the left pane, click disk management.

    c. click the drive that you want to change and then click change drive letter and paths.

    d. do one of the following:

    • For letter an if it has not already received, click Add, click the letter you want to use and then click OK.
    • To change a drive letter, click change, click assign the following drive letter, click the letter you want to use, and then click OK.
    • To remove a drive letter, click Remove, and then click Yes to confirm that you want to remove.

    Additional information:

    Change, add, or remove a drive letter

    In addition, please refer to the steps posted by NakulShridhar responded on October 14, 2011 in the following thread and check if this can help:

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-update/you-need-to-format-the-disk-in-drive-j-before-you/4e153784-3217-4425-9c39-48030af82a13

    Warning:
    Running chkdsk on the drive if bad sectors are found on the disk hard when chkdsk attempts to repair this area if all available on which data can be lost.

    Hope this information is useful. Let us know if you need more help, we will be happy to help you.

  • By using the analytical function to sort without showing this column in the result.

    Hello

    We use the Oracle 11.2

    How to use Oracle Analytics to sort the output of a query without showing this column in the result?

    Here's my query:

    Select distinct nvl(SRC_CHR_NM,'0') | » #'|| NVL(EXPL_SRC,'0') | » #'|| NVL(DIM_NM,'0') | » #'|| NVL(DIM_CHR_NM,'0') | » #'|| NVL(DIM_CHR_ABR,'0') | » #'||

    Decode (InStr (NVL(SRC_COL_NM,'0'), 'trim ('),'1 ', Replace (NVL(SRC_COL_NM,'0'),'trim (',' trim(PRM_DTL.'), '0',' PRM_DTL.)))) » || NVL(SRC_COL_NM,'0')) AS ALLOFIT,

    DIM_NM

    from EXPL_CONFIG where SBJ_AREA_CD = 'PRMDTL. '

    I want to use analytical to sort by DIM_NM but I do not want to show. I want to just just the ALLOFIT column to show in the output.

    Something like "row_number() over (order by DIM_NM desc).

    Thank you!

    Hello

    If you SELECT SEPARATE, then you can only ORDER OF things in the SELECT clause. (Do you really need to do SELECT DISTINCT?  Often, it's just an inefficient way to remove the lines that do not need to be there at all).

    Move making the SELECT DISTINCT in a subquery and make the ORDER BY (and nothing else) in the main query.

    I hope that answers your question.

    If this isn't the case, please post a small example data (CREATE TABLE and only relevant columns, INSERT statements) and also publish outcomes from these data.

    Explain, using specific examples, how you get these results from these data.

    Always say what version of Oracle you are using (for example, 11.2.0.2.0).

    See the FAQ forum: https://forums.oracle.com/message/9362002#9362002

  • keep saying my mozilla profile has been deleted and will not open firefox - IE work and connect to the internet very well very sick of this 4th time this week

    Firefox will not open - 4 times this week he froze and crashed and I have to disable my internet connection, then re add before this will work unless I can fix this quickly I going to chrome

    have you tried full uninstall and clean install?

  • whenever I open firefox, I get the message: "Shockwave has stopped responding; "Difficulty, ignore, do not show this message" and it's driving me crazy. I have to wait and wait

    because he go away (sometimes 30 seconds) and I have tried clicking on "do not show this, ' and 'ignore' and others (all the possibilities.) Its driving me crazy and I think the move to Opera instead of Firefox. Can you help me? Thank you. MM2

    Hello

    Some problems with Flash video playback can be resolved by disabling hardware acceleration in Flash Player settings. (See this article for more information on using the Flash plugin in Firefox).

    To turn off hardware acceleration in Flash Player:

    1. Go to the Adobe Flash Player help page.
    2. Right-click on the Flash Player logo on this page.
    3. Click settings on the shortcut menu. The Adobe Flash Player settings screen opens.
    4. Click the icon in the lower left of the Adobe Flash Player settings window to open the display panel.

    5. Remove the enable hardware accelerationcheck box.
    6. Click close to close the Adobe Flash Player settings window.
    7. Restart Firefox.

    This Flash Player help - display settings page contains more information about the Flash Player hardware acceleration, if you are interested.

    Does this solve the problem? Let us know.

  • When you click on "don't show this again option" in "Firefox prevented this page to open in a new window or tab," How do you get the window of options again?

    I clicked by mistake on the choice of "don't show this again option" in the "Firefox prevented this page open in a new window or tab", and now I can't understand how "uncheck" the box and back again once the window options.

    My bad - it was the pop up Adblock Plus 0.7 Addon.

    "I went just the Firefox button orange > Modules > Adblock Plus pop-up Addon 0.7 - > Options > my site rules > the site right click > edit > checked 'Block all pop-up windows' and unchecked" this rule applies to: 'New Windows' and 'new tab '.

    Presto! Firefox works as before.

    I didn't know I had controls within the addon that would affect the Firefox popup blocks the action.

    Please call the attention on the "details of the system more.»

  • All products see the &amp; Show This Computer list different SoftPaqs

    SDM 3.5.1.0 running.  SPs for Elitebook turn G1 Tablet (Win 8 64) are different if sought by virtue of show all products or Show This Computer.  No. 2014 SPs show in "All products" at all, but show under "this computer".

    Thank you
    Russell

    Assuming that the SDM is run on a tablet of G1 turn EliteBook with Windows 8 64 bit on it and that the same exact selection is used for all products mode, there should be no difference between personal and all products , provided that:

    1. you have the same exact model, a BONE, a selected language mode of all products such as detected by SDM
    2. you use the same scale (see the last SoftPaqs or view all SoftPaqs ) for both modes.

      Note: the default scale for all products and personal modes are SoftPaqs all Show and Show last SoftPaqs, respectively.

  • I'm ready to buy a Apple Watch in this week... so my doubt

    I'm ready to buy a Apple Watch in this week... so my doubt and fear is if Apple Watch 2 starting soon can exchange with my product? Anyone hv any idea or much knowledge about the launch d & all please help me with your valuable answers.... plz

    < published by host >

    Apple has made no announcement about Apple Watch 2. Speculation is forbidden on the forum, so without an official announcement, nobody here could say. Given that nothing has been said, I doubt that you would benefit from an exchange of your product. They do not trade for new devices in any case for the watch. iPhones and iPads can be returned for recycling and a store credit, but that's it.

  • Do not show this message

    So I delete a message today on Skype and I accidentally clicked on the box that says, do not show this message. Is there a way I can receive only pop up again? I wish I had the confirmation when I delete messages again.

    You can try this:

    http://community.Skype.com/T5/Windows-archive/turn-on-remove-message-notification/m-p/3803737#M23906...

Maybe you are looking for

  • Satellite C855 - 12K - BIOS password incorrect supervisor

    Hello I own a Toshiba Satellite C855 - 12K and there is a problem with the BIOS supervisor password. Once I put the password, I was unable to access BIOS because it says that the password is incorrect.I am positively sure that the password im putting

  • CDDVDW ts-l633m does not burn DVD

    Hello I have a HP probook 4310 s with a system of Windows XP mode and a cddvdw ts-l633m driver.For some unknown reason, the driver, who is supposed to be able to burn DVDs, is unable to do. When I insert a DVD, it does not recognize as an accessible

  • Windows system32 dll error prevents me to download some specific programs on the internet

    Doubt withou the prog that I am trying to download is 100%, but I have damaged my vista system32 dll, possibly by normal windows updates; or removing a program that 'stole' certain DLLs. Enter the previous restore points always helped, also re instal

  • Smartphones New blackBerry Blackberry and having a problem

    Hi, I have 2 email accounts-1 on my BB "BOLD". When I get e-mails that they appear a few minutes on the screen and then they disappear. Then I see that the emails sent, not the e-mails received. How can I keep my emails received on my BB?Thank you ve

  • Unsupported printer driver

    I am a new user. I tried to post a question a few minutes ago, but am not sure if the question has been received by the community or not. Here I refer my question. I have a portable Linovo and a Canon Lasershot LBP 2900 printer model. Laptop computer