Get the report Monthwise

Hi all,

I need to get the report equipmentwise monthwise. Our application is used by the JCB rental company. If they want to profit each JCB monthwise.

We are capturing the date range of which JCB is engaged. Here is my table structure. How to use the function of pivot or case to get this result

ph_timesheet_details / / DESC

Name of Type Null

------------------- -------- -------------

ID NOT NULL NUMBER

TSHDR_ID NOT NULL NUMBER

NUMBER OF LINE_NO

LINE_TYPE NOT NULL VARCHAR2 (1)

NUMBER of EQUIP_ID - it is the need for material to use for the collection

NUMBER OF ACC_ID

NUMBER OF OPERATOR_ID

From_date DATE - JCB engaged since

To_date DATE - JCB engaed in

NUMBER OF NO_OF_DAYS

NUMBER OF CONT_HOURS

ACT_HOURS NUMBER - these hours must be sum for every month equipmentwise

RATE_PER_HOUR NUMBER (14.3)

LINE_VALUE NUMBER (14.3)

NUMBER OF OT_HOURS

REMARKS VARCHAR2 (255)

RECORD_CREATED_USER VARCHAR2 (50)

DATE OF RECORD_CREATED_DATE

LAST_MOD_USER VARCHAR2 (50)

DATE OF LAST_MOD_DATE

I need output like this

jan Feb mar Apr... equipment dec

********************************************************************

equip1 200 h...         100 h

.

.

.

equip the xx 500 h...                        300hrs

Hello

This with the assumption that you treat the lines where min (from_date) and max (to_date) are in the same year, and I don't consider fractions of day and all the days are considered as (holidays, weekends, etc.):

with rng_dates as
(
   select min(trunc(from_date)) min_dt
        , max(trunc(to_Date))   max_dt
     from ph_timesheet_details
    where from_date >= to_date('01.01.2015', 'dd.mm.yyyy')
      and to_date < to_date('01.01.2016', 'dd.mm.yyyy')
)
, got_dt_list as
(
   select min_dt + level -1 dt
     from rng_dates
  connect by min_dt + level -1 <= max_dt
)
select td.equip_id
     , sum( case
                when extract(month from dl.dt) = 1
                then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
            end
          ) jan
     , sum( case
                when extract(month from dl.dt) = 2
                then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
            end
          ) feb
     , sum( case
                when extract(month from dl.dt) = 3
                then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
            end
          ) mar
     , sum( case
                when extract(month from dl.dt) = 4
                then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
            end
          ) apr
     , sum( case
                when extract(month from dl.dt) = 5
                then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
            end
          ) may
     , sum( case
                when extract(month from dl.dt) = 6
                then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
            end
          ) jun
     , sum( case
                when extract(month from dl.dt) = 7
                then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
            end
          ) jul
     , sum( case
                when extract(month from dl.dt) = 8
                then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
            end
          ) aug
     , sum( case
                when extract(month from dl.dt) = 9
                then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
            end
          ) sep
     , sum( case
                when extract(month from dl.dt) = 10
                then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
            end
          ) oct
     , sum( case
                when extract(month from dl.dt) = 11
                then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
            end
          ) nov
     , sum( case
                when extract(month from dl.dt) = 11
                then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
            end
          ) dec
  from ph_timesheet_details td
       join got_dt_list dl
         on dl.dt >= trunc(from_date)
        and dl.dt <= trunc(to_date)
where from_date >= to_date('01.01.2015', 'dd.mm.yyyy')
   and to_date < to_date('01.01.2016', 'dd.mm.yyyy')
group by td.equip_id;

  EQUIP_ID        JAN        FEB        MAR        APR        MAY        JUN        JUL        AUG        SEP        OCT        NOV        DEC
---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ----------
        14                               80
        81                              230         80
       119                              220         90
        75                              240          8
        74                                          20
        93                              136
        92                              176         72                                                                                      

7 rows selected.

Kind regards.

Alberto

Tags: Database

Similar Questions

  • Need to get the report of last hour in ot txt CSV cluster

    Hi all

    Thanks in advance,

    I work for a script where I need to get the information from vms that was revived by HA during the restart of the host.

    or if we can get the report of last hour in csv or txt file cluster we can extract and find out how many virtual machines has been migirated to another host for host restarts.

    Please advice.

    SIV

    Try the following, this will give you all the VMS who have been restarted and the time when it happened.

    Connect-VIServer -Server yourserver
    
    $start = (Get-Date).AddDays(-5)
    Get-VIEvent -MaxSamples 1000000 -Start $start -Type warning | Where {$_.FullFormattedMessage -Match "vSphere HA restarted"} | Select ObjectName, CreatedTime, FullFormattedMessage
    
    Disconnect-VIServer -Confirm:$false
    
  • How to get the report for the set items

    I created an element defined for all payments that are made to the employee. Now I would that these elements that are there in the element the value to display in a separate report and not in my payslip. How can I do this? Please can you tell me the names of the tables where I can get the required data?


    Appreciate all your help!

    Try this query

    SELECT ppf.employee_number "Employee Number",
              petf.element_name "Element Name",
              to_number(prrv.result_value) "Amount"
    FROM per_all_people_f ppf,
            per_all_assignments_f paf,
            pay_element_types_f petf,
            pay_assignment_actions paa,
            pay_payroll_actions ppa,
            pay_input_values_f pivf,
            pay_run_results prr,
            pay_run_result_values prrv,
               pay_element_type_rules petr,
               pay_element_sets pes
    WHERE  ppf.person_id = paf.person_id
    AND    petf.element_type_id = prr.element_type_id
    AND    pes.element_set_id = petr.element_set_id
    AND    pes.element_set_name = :Element_Set_Name
    AND    petr.include_or_exclude = 'I'
    AND    petf.element_type_id = petr.element_type_id
    AND    paf.assignment_id = paa.assignment_id
    AND    ppa.payroll_id = paf.payroll_id
    AND    paa.payroll_action_id = ppa.payroll_action_id
    AND    ((:pmon IS NULL AND :pyear IS NULL) OR TO_CHAR(ppa.date_earned,'MONYYYY') = TO_CHAR(UPPER(:pmon)||:pyear))
    AND     paa.assignment_action_id = prr.assignment_action_id
    AND    prr.run_result_id = prrv.run_result_id
    AND    pivf.element_type_id = petf.element_type_id
    AND    prr.element_type_id = petf.element_type_id
    AND    pivf.input_value_id = prrv.input_value_id
    AND    ppa.effective_date BETWEEN petf.effective_start_date AND petf.effective_end_date
    AND    ppa.effective_date BETWEEN pivf.effective_start_date AND pivf.effective_end_date
    AND    ppa.effective_date BETWEEN paf.effective_start_date AND paf.effective_end_date
    AND    ppa.effective_date BETWEEN (to_date('01-'||:pmon||'-'||:pyear,'DD-MON-YYYY') ) AND last_day(to_date('01-'||:pmon||'-'||:pyear,'DD-MON-YYYY') )
    AND    (to_date('01-'||:pmon||'-'||:pyear,'DD-MON-YYYY') ) between ppf.effective_start_date AND ppf.effective_end_date
    AND    pivf.name ='Pay Value'
    ORDER BY to_number(ppf.employee_number) ,ppf.person_id,petf.element_name
    

    This query gives the values of outcome performance of the elements in the set of elements.
    HTH

  • How to get the report of BI Publisher services BIEE presentation

    Hello everyone, I installed the POET and BI Publisher in the same host and I followed the configuration in the poet oracle installation documentation, but when I want to access the BI publisher company or get the BI Publisher report in presentation services, I get the error saying cannot access the PIF, I have to do additional configuration or do I need to install any component?

    Thanks in advance ~

    Check here:
    http://gerardnico.com/wiki/dat/BIP/configuration_bip
    All the steps are described.

    The stage of Oracle BI presentation integration Service is in this paragraph.
    http://gerardnico.com/wiki/dat/BIP/configuration_bip#integration_of_oracle_bi_presentation_service

    Success
    Nico

  • My Outbox is no longer displayed. How can I get what I need to delete an email that may be stuck in there I get the report email address invalid

    Hello

    I received a response and sent my response stating that the Outbox is not displayed anywhere on the home page that displays the Inbox sent etc. I tried to replace the Mozilla Thunderbird exe by downloading and installing again, but it still does not show the Outbox folder see attached. Your response, I think that you did not understand my question. I said that he was shown is no longer as you can see in the image below. It makes me think he must have inadvertently hidden by me. If so how can I make it visible again?

    Expand the folders the and you'll probably find the Outbox. This is where it lies.

  • I can't seem to get the report of Trusteer to work with Firefox 14.0

    When I downloaded Firefox 14.0, and I downloaded Trusteer report, it will not be displayed when I open Firefox.

    Got a response from Trusteer, unfortunately it does not support Firefox 14, they will send me an e-mail when it does. Thanks again for your help.

  • Problem with the report and the system of axis 2d

    Hi, I'm trying to write a script with tiara, who wrote a 2d axis system in the report but I'm having a lot of problems with it.

    What I'm trying to do, is make 3 or more system axis 2d in the report, each displaying a part of the data of 2 channels (x = ch0, ch1 = y).

    With only 1 graphic I get what I want, but when I try to add the 2nd or the 3rd, they show without my defined x-scale and with the offset x different from the first chart.

    I tried everything, but I could not remedy

    I added as attachments the .csv file that I use to ch0 and ch1 and 2 screen shoots "what I get" (about the problem with the script) and "what I hope to get" (done manually, is what I'm trying to get the report)

    Any help will be appreciated, thanks in advance

    Ierman

    I'll post my code here:

    Dim Xscale, Yscale
    XScale = Array (0,25,0,5,49)
    Yscale = Array(-0.2,0.2,-0.2,10,4)
     
    Call PicDelete()
    Call GraphObjNew ("2D-Axis", "2DAxis1")
    Call GRAPHObjOpen ("2DAxis1")
    D2AxisTop = 1

    D2AxisBottom = 70
    D2AxisLeft = 1
    D2AxisRight = 1
    Call GRAPHObjOpen ("2DYAxis1_1")
    D2AxisyScaleType = "manual".
    D2AXISYBEGIN = Yscale (0)
    D2AXISYEND = Yscale (1)
    D2AXISYORIGIN = Yscale (2)
    D2AXISYTICK = Yscale (3)
    D2AXISYMINITICK = Yscale (4)
    Call GRAPHObjClose ("2DYAxis1_1")
    Call GRAPHObjOpen ("2DXAxis1_1")
    D2AxisxScaleType = "manual".
    D2AXISXBEGIN = Xscale (0)
    D2AXISXEND = Xscale (1)
    D2AXISXORIGIN = Xscale (2)
    D2AXISXTICK = Xscale (3)
    D2AXISXMINITICK = Xscale (4)
    D2AxisXTxt = ""

    D2AxisXColor = 'black '.

    D2AxisXTickAuto = 1
    D2MTickLineWidth (1) = 0.1
    D2MTickLineType (1) = "solid".
    D2AxisXTickSize = 60
    D2AxisXTxtAutoCo = 0
    D2MTickColor = "red".
    Call GRAPHObjClose ("2DXAxis1_1")
    Call GraphObjNew("2D-Curve","New_Curve")

    Call GraphObjOpen ("New_Curve")

    D2CCHNX = "[1] / [1]" "

    D2CCHNY = "[1] / [2]" "

    D2CurveColor = "red".
    Call GraphObjClose ("New_Curve")
    Call GRAPHObjClose ("2DAxis1")

    Dim Xscale1, Yscale1
    Xscale1 = Array (25,50,0,5,49)
    Yscale1 = Array(-0.2,0.2,-0.2,10,4)
    Call GraphObjNew ("2D-Axis", "grafic")
    Call GRAPHObjOpen ("grafic")
    D2AxisTop = 40

    D2AxisBottom = 37
    D2AxisLeft = 1
    D2AxisRight = 1
    Call GRAPHObjOpen ("2DYAxis1_2")
    D2AxisyScaleType = "manual".
    D2AXISYBEGIN = Yscale1 (0)
    D2AXISYEND = Yscale1 (1)
    D2AXISYORIGIN = Yscale1 (2)
    D2AXISYTICK = Yscale1 (3)
    D2AXISYMINITICK = Yscale1 (4)
    D2AxisYTxt = "" ' testo asse label y
    Call GRAPHObjClose ("2DYAxis1_2")
    Call GRAPHObjOpen ("2DXAxis1_2")
    D2AxisxScaleType = "manual".
    D2AXISXBEGIN = Xscale1 (0)
    D2AXISXEND = Xscale1 (1)
    D2AXISXORIGIN = Xscale1 (2)
    D2AXISXTICK = Xscale1 (3)
    D2AXISXMINITICK = Xscale1 (4)
    D2AxisXTxt = «»

    D2AxisXColor = 'black '.

    D2AxisXTickAuto = 1
    D2MTickLineWidth (1) = 0.1
    D2MTickLineType (1) = "solid".
    D2AxisXTickSize = 60
    D2AxisXTxtAutoCo = 0
    D2MTickColor = "red".
    Call GRAPHObjClose ("2DXAxis1_2")
    Call GraphObjNew("2D-Curve","New_Curve1")

    Call GraphObjOpen ("New_Curve1")

    D2CCHNX = "[1] / [1]" "

    D2CCHNY = "[1] / [2]" "

    D2CurveColor = "red".
    Call GraphObjClose ("New_Curve1")
    Call GRAPHObjClose ("grafic")

    Hi lerman,.

    Here is an edited version of your code that works on my computer.  A problem that I know that I fixed it was that your presentation of the STATE was in the name-oriented mode but you use the variables based on the number to assign it X and Y channels.  The execution of these commands in a loop FOR makes it much easier to debug the code and to avoid any annoyance at first.

    Brad Turpin
    Tiara Product Support Engineer

    National Instruments

  • Changes in the preparation of the report.

    Hi all

    We use Foglight 5.6.4 and we do not report planning for various teams within the application.

    We need a small change in the email we get the report. We would like to change the name and the message in the email which is the report.

    Could you please tell us how to change the report name and message. Please share us the docs and the steps...

    That's what we get in the email. Highlighted the name and the message to change. Are there changes in the rule?

    Thank you best regards &,.

    Guenoun.

    Gokuinath,

    You should look at Dell support (located at supportlink) solution sol74181, as it provides information that should come in handy for your needs.

    David Mendoza

    Foglight Consultant

  • How to get the vRAM on allocation with Powershell?

    People,

    How can I get the report in CSV for guests of ESXi allocated by host ratio vRAM?

    I need to know what VMhost is oversubscription currently vRAM to the virtual machines.

    My understanding is that the total number allocated vRAM ov is not greater than the amount of physical RAM in each host ESXi - 4 GB (for ESXi services).

    Thank you.

    It's the same concept, something like this

    $allvms = @)

    $vms = get - VM

    $start = (get-Date). AddHours(-1)

    $metrics = "mem.usage.average", "mem.granted.average", "mem.vmmemctl.average", "mem.swapin.average."

    "mem.swapout.average", "mem.swapped.average".

    Get-Stat - entity $vms - start $start - Stat $metrics |

    Group-object - property {$_.} @entity.name} | %{

    $memAllocatedMB = $_. Group [0]. Entity.MemoryMB

    $memGrantMB = ($_.) Group | where {$_.} MetricId - eq "mem.granted.average"} | Measure-object-property value - average | Select average - ExpandProperty) / 1 KB

    $memUsageMB = $memAllocatedMB * ($_.) Group | where {$_.} MetricId - eq "mem.usage.average"} | Measure-object-property value - average | Select average - ExpandProperty) / 100

    $vmstat = "" | Select time VmName, MemUsageMB, MemGrantMB, Ratio, MemBalloonMB, SwapInMBMB, SwapOutMBMB, SwappedMBMB

    $vmstat. VmName = $_. Group [0]. @entity.name

    $vmstat. Time = $_. Group | Tri-objet-Timestamp property | Select - 1 first | Select - ExpandProperty Timestamp

    $vmstat. MemGrantMB = [Math]: Round([double]$memGrantMB,2)

    $vmstat. MemUsageMB = [Math]: Round([double]$memUsageMB,2)

    $vmstat. Ratio = [math]: Round ([double]($memUsageMB/$memGrantMB), 2)

    $vmstat. MemBalloonMB = [math]: Round ((($_.)) Group | where {$_.} MetricId - eq "mem.vmmemctl.average"} | Measure-object-property value - average | Select average - ExpandProperty) / 1 KB), 2)

    $vmstat. SwapInMBMB = [math]: Round ((($_.)) Group | where {$_.} MetricId - eq "mem.swapin.average"} | Measure-object-property value - average | Select average - ExpandProperty) / 1 KB), 2)

    $vmstat. SwapOutMBMB = [math]: Round ((($_.)) Group | where {$_.} MetricId - eq "mem.swapout.average"} | Measure-object-property value - average | Select average - ExpandProperty) / 1 KB), 2)

    $vmstat. SwappedMBMB = [math]: Round ((($_.)) Group | where {$_.} MetricId - eq "mem.swapped.average"} | Measure-object-property value - average | Select average - ExpandProperty) / 1 KB), 2)

    $allvms += $vmstat

    }

    $allvms | Select time VmName, MemUsageMB, MemGrantMB, Ratio, MemBalloonMB, SwapInMBMB, SwapOutMBMB, SwappedMBMB |

    Export-Csv "C:\TEMP\MemoryRation.csv" - noTypeInformation - UseCulture

  • The report columns duplicated when the region is copied.

    Re: Report columns duplicated when the region is copied.

    When I copy a region that I created the form master / detail report columns are duplicated. I am actually copy the entire page, but I had other cases where I just copy the desired region and the columns have been duplicated it as well. And, of course, there is no way I know to remove the columns of the shape. But I doubt it would help because, in some cases, I've tried - the columns seems to be 'related' in that a change to a copy of the column has been duplicated in the other, when changes have been applied.

    In the example (below), there are three areas on the page and the problem occurs in region 2. (I think I'll probably remove the first region). He was ripping trying to get the report of region 2 and changes formish tabular region 3 on the same page. I made this in Oracle 11.2 in our APEX 4.1 and imported to 4.2. You can see here:

    WS apex_examples_01
    demo
    demo
    Appl. 991204

    Page 57 is the original page created in 4.1 and imported
    58 page is the page copied from 57 under 4.1 and imported
    59 page is the page copied from 57 under 4.2 (same result 4.1).

    If you want to try the page, select DSD01 in the DSD LOV, click on "Application process" and then click the icon change. Ignore errors in the region 1 - I'll probably delete this region. The data are region 3 is Run Date may 12, 13.

    Is there a setting that allows this region can be fully copied without duplicating the columns?

    Thank you
    Howard

    P.S. I think I know why this is happening: APEX hates me!

    Howard (in training) wrote:

    P.S. I think I know why this is happening: APEX hates me!

    I think it's a trap left by tabular, tabular forms of sabotage tabular forms... I love ;-)

    This is a long-standing bug very (+ {: identifier of the thread = 269916} +) that I've seen before: + {message identifier: = 10504044} +.

    The problem in the region created by Wizard of origin not having either do not report Source using specific query column names and validate queries / use column names generic (analyzing the query executing only) options selected. Click on the radio button using specific query column names and validate query before copying the region/page. Compare the before and after effects of do so on pages 570 and 571 in your sample application.

    (Looking for the Forum before posting?) Previous discussions were not hard to find in this case.)

  • RESOLVED: Get the value of expense_header_id to FinalReviewPG class controller.

    Hello

    A requirement of the user, I need to get the value of the expense_header_id to the final review page controller in the Iexpenses module called FinalReviewPG.xml

    I tried viewing the your attached to the page there seem to be none. How can I reference an existing VO, said AllocationsLinesVO, from the screens initials to store the value in the final page?

    Pointers please.

    Kind regards
    Archie

    Published by: OAFNewbie on 23/06/2011 20:01

    Hello

    To get the report header id, follow the steps below

    1.) extend the controller EntryFlowPageCO cash and other details page and in the method of Construction of this scope capture controller the VO

    OAApplicationModule am = (OAApplicationModule) pageContext.getRootApplicationModule ();
    OAViewObject FVO = (OAViewObject) am.findViewObject ("CashAndOtherLinesVO"); / / CashAndOtherLinesVO will give the report header id
    nReportHdrID = (Number) row.getAttribute ("ReportHeaderId");

    cast number vale for string and then put that into session using
    pageContext.putSessionValue ("ReportHdrID", sReportHdrID); / / store the id of the header in the session to put the question on the examination final page.

    2.) extend the FinalReviewPageCO of the final review page

    and get the report to help id
    String sReportHdrID = (String) pageContext.getSessionValue ("ReportHdrID");

    Thank you
    Pratap

  • Position in the report script

    Hello

    I have a report like this:
    07 jan - Jul Jul R12 YTD
    2009 STO001 31111110 P31 - 111 34925.50 44631,48 257909.97
    2009 STO001 31111110 P20 - 111 42.78 364,20 3704.85
    2009 STO001 31111110 P53 - 111 5044.80 6740,31 44175.52
    2009 STO001 31111110 P115 0.00 0.00 4018.71

    However, I would like to have the header like this:

    Ano Chair Contas Produto R12 of CDA Jan - July 07-July
    2009 STO001 31111110 P31 - 111 34925.50 44631,48 257909.97
    2009 STO001 31111110 P20 - 111 42.78 364,20 3704.85
    2009 STO001 31111110 P53 - 111 5044.80 6740,31 44175.52
    2009 STO001 31111110 P115 0.00 0.00 4018.71

    What can I do to get the report?

    See my report below script:

    ESS_LOCALE English_UnitedStates.Latin1@Binary
    {STARTHEADING
    SUPPAGEHEADING
    ENDHEADING}

    < SETUP
    {TabDelimit}
    {2 decimal places}

    {SUPCOMMAS}
    {SUPBRACKETS}
    {NOINDENTGEN}

    < ACCON < SYM < END

    < ROW ("Ona", "Chair", "Plano of Contas", "Product")

    Members of the column
    {WIDTH 15}
    {MISSINGTEXT "0.00"}

    < COLUMN ("Periodo")
    "07".
    "Jan-Jul a year."
    "Jul R12.

    Members page
    "Real."

    {SupMissingRows}

    Line members

    {ROWREPEAT}
    < DESCENDANTS 'personal profile '.

    {ROWREPEAT}
    '2009'

    {ROWREPEAT}
    < DESCENDANTS "Asturian Premios" -

    {ROWREPEAT}
    < DESCENDANTS 'SPCT.
    < DESCENDANTS 'STO DESC.

    !

    Thank you

    Essbase reports do not line headers (headers for dimension members of the)

    The best I was able to do in the past, it was to have a file with header information, I wanted and after the report has been created concatinate the header with the report file file using the copy back command.

  • How to create the report using pass-in parameters

    Hi all

    I want to create a report using the parameters passed from the previous page. Let's take an example:

    Now in page B, he got 2 parameters P1_Table, P1_column, from Page A, I want to get the report:

    Select * from P1_Table, where P1_column like 'test % ';

    This means that I want to get the date in the P1_Table table and its P1_column begins with the character 'test'.

    I tried to use dynamic sql in the source of the region, but failed.

    Please help me

    Thanks in advance.


    PPMonkey

    Published by: PPMonkey on January 4, 2009 12:53 AM

    Hello

    Ensure that the report is a "SQL (body of function from PL/SQL returning the SQL) query. Then, use a source of something like:

    DECLARE
     vSQL VARCHAR2(4000);
    BEGIN
     vSQL := 'SELECT * FROM ' || v('P1_TABLE') || ' WHERE ' || v('P1_COLUMN') || ' LIKE '''test%''';
     RETURN vSQL;
    END;
    

    Andy

  • Everytime I open Firefox 29.0.1 I get the screen crash report why

    Everytime I open Firefox 29.0.1 I Get the screen crash report I want to restore the tabs, as far as I know that Firefox crashed. This started after I upgraded to Ver 29.0.1

    Rather than do a uninstall complete, you can try this:

    Create a new Firefox profile

    A new profile will be your plugins installed by system (for example, Flash) and extensions (e.g., security suite toolbars), but no themes, other extensions or other customizations. It should also have databases of completely fresh settings and cool a cache folder.

    Out of Firefox and start in the profile using Start Manager > Search box (or run):

    firefox.exe -P
    

    Any time want to switch profiles, exit Firefox and return to this dialog box.

    Click on the button create a profile. I recommend using the default location suggested, in other words, do not click the button to choose a different folder. Then launch Firefox in the new profile that you have created.

    If you browse around, exit, reboot, etc, the problem continues?

    When you return to the Profile Manager to return to your normal profile, you might be tempted to use the button to delete the profile. It's a little too easy to accidentally delete your 'real' profile, so I recommend you to resist the temptation. If you don't want to clean up later, I suggest to make a backup of all your profiles first in case something go wrong.

  • photos has not been loaded for weeks (usually the browser chrome on PC windows at work).  I tried now on some other computers and get the same error message and I report every time.  can I do or just wait for someone to fix it

    photos has not been loaded for weeks (usually the browser chrome on PC windows at work).  I tried now on some other computers and get the same error message and I report every time.  is there anything I can do or just wait for someone to fix it?

    If you want any help here, you'll have to tell us what the error message.

    Which report you errors to?

Maybe you are looking for

  • Note Microsoft Office One 2003

    This software has been loaded on my laptop but I wonder a product key to activate it. I don't have a CD or product and wonde key if there is a way of obtaining.

  • Toshiba virtual Store account Reset - 22672

    I insist to reset my account-22672 s/n Y9015739DH

  • Reinstall software AIO C3150

    I want to reinstall etc SUN, HP, for my C3150 AIO Solution Center. The HP AIO Windows Vista software, which I downloaded for my C3150, doesn't let me reinstall because he always thinks that I already have this software installed. I did not and I trie

  • I can't have my calendar in icloud

    OS X 10.10 Only the home page shows icons for Pages, Numbers, Keynote, and settings. How do my calendar from here?

  • Stuck in recovery mode

    I restored my iPhone 5, went to recovery mode, as soon as iTunes started progress, it showed the error 9. Now my iPhone is stuck in Recovery Mode. Even after I have iTunes eject or remove using 2 buttons, when I restart, it automatically appear Recov