need help with query can find data back please help.

Hi guys I have a table such as
CREATE TABLE "FGL"
  (
    "FGL_GRNT_CODE" VARCHAR2(60),
    "FGL_FUND_CODE" VARCHAR2(60),
    "FGL_ACCT_CODE" VARCHAR2(60),
    "FGL_ORGN_CODE" VARCHAR2(60),
    "FGL_PROG_CODE" VARCHAR2(60),
    "FGL_GRNT_YEAR" VARCHAR2(60),
    "FGL_PERIOD"    VARCHAR2(60),
    "FGL_BUDGET"    VARCHAR2(60)
  )
and I have a data as such
Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7600','4730','02','11','1','400');
Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7600','4730','02','10','1','100');
Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7240','4730','02','10','1','0');
Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7240','4730','02','10','14','200');
Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7600','4730','02','10','14','100');
Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7600','4730','02','10','2','100');
Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7470','4730','02','10','2','200');
I need bascially to get the total of the budget column. However this is not as simple as it sounds good (at least not for the me.) totals carried forward to the new period. you will notice that you have a period column. Basically, what im is that
fgl_grant_year 10 1 period = account 7600 its $100 and $100 for the period 2, you see $ 100 more, it wants to not be added to this is the door on the balance. that is $100.
So im trying to write a query that basically does the following.
IM considering a period for the sake of this example let period 1 I get anything else. I find that the greates contributes dumpster year the amount for the period 14 (which corresponds to the total of the previous year) and add it to the amount of the current year. in this case period 1 grnt_year 11
the expected result is therefore $700
240055     240055     7240     4730     02     10     14     200
240055     240055     7600     4730     02     10     14     100
240055     240055     7600     4730     02     11     1     400
do not forget that I am not given a just a period of the year.
any help you guys can give would be immensely appreciated. I tried to get this to work for more than 3 days now.
Finally broke down and put together this post

Published by: mlov83 on Sep 14, 2011 20:48

Hello

Thanks for posting the CREATE TABLE and INSERT statemnts; It is very useful.

I'm not sure that understand your needs.
The correct output will be just one line:

TOTAL_BUDGET
------------
         700

or will it be 3 ranks that you posted? I guess you want just line after line.

Do you mean that you are given a period (for example, 1).
First you have to find the largest gfl_grnt_year which is related to this period (in this case, 11).
Then you need to add fgl_budget lines that have to be
(1) the specific period and the largest fgl_grnt_year, or
(2) perriod = 14 and the previous fgl_grnt_year (in this case, 10).
Is this fair?

If so, here's a way to do it:

WITH     got_greatest_year     AS
(
     SELECT     fgl.*     -- or whatever columns are needed
     ,     MAX ( CASE
                 WHEN  fgl_period = :given_period
                 THEN  fgl_grnt_year
                END
              ) OVER ()     AS greatest_year
     FROM     fgl
)
SELECT     SUM (fgl_budget)     AS total_budget     -- or SELECT *
FROM     got_greatest_year
WHERE     (     fgl_grnt_year     = greatest_year
     AND     fgl_period     = :given_period
     )
OR     (     fgl_grnt_year     = greatest_year - 1
     AND     fgl_period     = 14
     )
;

If you want the 3 lines you have posted, then change the main SELECT clause to ' SELECT * ' (or, instead of *, youcan the columns you want to see the list).

Tags: Database

Similar Questions

  • Problem with query to find data offset

    Hello PL/SQL gurus and Experts.

    I am not able to extract the data with the following table structure-
    drop table T2;
    create table T2(Stream, Trade, Fees) as select
    'MECHNICAL', 'Primary', '5534500' from dual union all select
    'ELECTRICAL', 'Secondary', '5285500' from DUAL union all select
    'MECHNICAL', 'Secondary', '2364535' from dual union all select
    'ELECTRICAL', 'Primary', '1734540' from DUAL union all select
    'MBE', 'Secondary', '3424500' from dual union all select
    'ELECTRONICS', 'Primary', '5004567' from DUAL union all select
    'ELECTRONICS', 'Secondary', '4543200' from DUAL union all select
    'COMPUTERS', 'Secondary', '5534500' from DUAL union all select
    'CIVIL', 'Primary', '2345500' from DUAL union all select
    'CIVIL', 'Secondary', '4456500' from DUAL union all select
    'COMPUTERS', 'Primary', '9542500' from DUAL;
    I want to extract the data in the following format-
    Stream          Trade          Fees
    MECHNICAL     Primary          5534500
              Secondary          2364535
    ELECTRICAL     Primary          1734540
              Secondary       5285500
    ELECTRONICS     Primary          5004567
              Secondary        4543200
    CIVIL          Primary          2345500
              Secondary         4456500
    MBE          Primary     
              Secondary       3424500
    Total                    34693342
    Now if I use the following query-
    SELECT CASE WHEN LAG(Stream||Trade) OVER (ORDER BY Stream, Trade, Fees) = Stream||Trade THEN NULL ELSE Stream END Stream
         , CASE WHEN LAG(Stream||Trade) OVER (ORDER BY Stream, Trade, Fees) = Stream||Trade THEN NULL ELSE Trade END Trade
         , CASE WHEN LAG(Fees) OVER (partition by Stream||Trade ORDER BY Stream, Trade, Fees) = Fees THEN NULL ELSE Fees END Fees
    FROM (     select distinct Stream, Trade, Fees from T2 ORDER BY Stream, Trade, Fees);
    SELECT  NVL2(LAG(Trade) OVER (PARTITION BY Stream, Trade ORDER BY Stream, Trade, Fees),Null,Trade) Trade,
         NVL2(LAG(Stream) OVER (PARTITION BY Stream, Trade ORDER BY Stream, Trade, Fees),Null,Stream) Stream,
         Fees
    from (select distinct Stream, Trade, Fees from T2)
    Kindly help me...
    Thank you all for your time and effort in advance.

    use the below. There would be better ways to achieve, I find it easier.

    with filtered as
    (
      select case row_number() over(partition by stream order by trade)
              when 1 then stream
              else null end stream2,trade,fees
      from t2
      order by stream,trade
    )
    select stream2 stream, trade, to_number(fees)
      from filtered
    union all
    select 'Total', null, sum(fees)
      from t2;
    
    STREAM      TRADE     TO_NUMBER(FEES)
    ----------- --------- ----------------------
    CIVIL       Primary   2345500
                Secondary 4456500
    COMPUTERS   Primary   9542500
                Secondary 5534500
    ELECTRICAL  Primary   1734540
                Secondary 5285500
    ELECTRONICS Primary   5004567
                Secondary 4543200
    MBE         Secondary 3424500
    MECHNICAL   Primary   5534500
                Secondary 2364535
    Total                 49770342     
    

    I hope that it meets your needs. If this isn't the case, then please don't forget to provide the expected results, because we have to guess, if you still want to exit expected Original or there is a diversion in it.

  • Delete the copyright off my Photoshop CS5 by error symbol one has an idea how I can get it back please

    Hi all

    I managed to remove the copyright off my Photoshop CS5 by error symbol one has an idea how I can get it back please.

    Are you talking about the custom shape tool? These are part of the installation and do not disappear permanently. Just go to the menu drop-down and click 'all', and he'll be back.

  • Need help with query between 2 dates

    Hello

    I did not SEE in a long time and need help with a simple query.

    I have a table of DB access with 3 fields, name, date and number

    What I want is to create a query to retrieve all the names between 2 dates

    When I ask the date field, the results are showing in this formats 2013-07-12 00:00:00

    Here's my query

    < cfquery datasource = 'mydb' name = 'test' >

    SELECT name from myTable

    where edate between ' 2011-01-01 00:00:00 ' AND ' 2013-01-01 00:00:00 '

    < / cfquery >

    < cfoutput query = 'test' >

    #name #.

    < / cfoutput >

    What I get is this error

    ODBC = 22005 (assignment error) error code

    [Microsoft] [ODBC Microsoft Access driver] Type mismatch of data in the expression of the criteria.

    Don't know what I'm doing wrong here.

    Please let me know.

    Thank you

    SELECT ename

    FROM MyTable

    WHERE edate BETWEEN

    AND

    #ename #.

  • need to query to find repeating values, please help

    I need assistance with SQL or what you think are the best way to do it, maybe PL/SQL.

    Basically it like that, in the 10G database, there are two address field:

    ADDESS_DELVRY - mailing address for example would be stored here
    ADDESS_DELVRY2 - building to apartments, away or PBM number would be stored here

    but sometimes I see the apartment B-123 in these two areas, so I need to find the duplicates, if there is a way.

    Thus, for example:

    ADDESS_DELVRY - 123 Elm Street Apartment 2B
    ADDESS_DELVRY2 - apartment 2B

    It's a problem, because then the apartment is printed twice on the mail piece. I think there is a small percentage who have this problem and I'm trying to find the best way to their ID, maybe use REG_EXP?

    Not sure, please help, thanks!

    Kodiak_Seattle wrote:
    If there is no luck there is a % or _ how is the request?

    SELECT *.
    FROM table_x
    WHERE the address_delvry LIKE "| address_delvry2;

    ?

    Nothing found.

    ATTENTION: you need the Joker '% '.

    The above condition is identical to

    WHERE   address_delvry = address_delvry2
    

    Try it with the wildcard '% ':

    WHERE   address_delvry LIKE '%'  -- The % is very iomportant!
            || address_delvry2
    

    I think that the suggestion of Srini (INSTR) will be more effective, if a little more complicated to code.

  • Query to find data of each month

    Hello

    I have 2 tables.

    (1) Order_tb

    Name Null? Type
    ----------------------------------------- -------- ----------------------------

    ORDERID NOT NULL NUMBER
    NUMBER OF CUSTOMERID
    ORDERDATE DATE

    (2) Order_d

    Name Null? Type
    ----------------------------------------- -------- ----------------------------

    ORDERID NUMBER
    PRODUCTID NOT NULL NUMBER
    PRODUCTNAME VARCHAR2 (20)
    NUMBER OF SELLINGPRICE

    I need to find the total find the selling price for each month of the year 2012 (orderdate) total.

    I tried to use join, but I couldn't take the 2012 in particular data. Please help me on this issue.

    Thank you

    Published by: RSD on February 28, 2013 09:18

    Hello

    RSD wrote:
    I tried to use join, but I couldn't take the 2012 in particular data. Please help me on this issue.

    The WHERE clause below, is what limits the results for 2012.

    SELECT       TRUNC (t.orderdate, 'MONTH')     AS month
    ,       SUM (d.sellingprice)          AS total_sellingprice
    FROM       order_tb  t
    JOIN       order_d   d  ON  d.orderid  = t.orderid
    WHERE       t.orderdate  >= DATE '2012-01-01'
    AND       t.orderdate  <  DATE '2013-01-01'
    GROUP BY  TRUNC (t.orderdate, 'MONTH')
    ORDER BY  TRUNC (t.orderdate, 'MONTH')
    ;
    

    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.
    Simplify the problem. For example, pretend you're only interested in the first 3 or 4 months of 2012; We will find a solution tht can easily be adapted for 12 (or any other number) of motnhs.
    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 {message identifier: = 9360002}

  • How can find data in a colum prj_no in all the table of the same schema

    Hi all

    I find the list of tables with data that has prj_no = "Axis_11" for all tables in the same schema.



    Thank you
    Nr

    PNR wrote:
    I find the list of tables with data that has prj_no = "Axis_11" for all tables in the same schema.

    1. find the tables with a column of PRJ_NO name. You can find it in USER_TAB_COLUMNS
    2 write a query to read the data in each table, using the UNION/UNION ALL operators to merge the results for each table

  • After the application is deployed, how the user can take data back up.

    Hello
    I created an application. Who is running in Mode offline in a machine. User enters data available through this application form. Data enter if the form in our application database table.
    User you want to take data upward in the evening which is in here by user per day.

    How can take it Full day data Back to the top. Arrive are enter by the user.
    How can I do that.

    I have installation XE in my machine. When I click on start-> all programs-> Oracle database 10 g Express Edition-> Backup Database

    What is the use of the backup database.




    Thanks and greetings
    Ed

    Published by: Ed on March 17, 2010 22:40

    Hello

    I'm sure you can find the answer here
    http://download.Oracle.com/docs/CD/B25329_01/doc/admin.102/b25107/TOC.htm

    BR, Jari

  • Query to find data conneting that intersect each other.

    Hello

    I have a table like road_point_ids (script is below). Basically, this table have road_id with its start and its end point.

    I'm looking for a query that actually will connect each ID path beginning or end points.

    create the table road_point_ids

    (

    road_id number (10),

    start_point number (10),

    Number of end_point (10)

    );

    insert into road_point_ids

    values (1001, 10, 20);

    insert into road_point_ids

    values (1002, 20, 30);

    insert into road_point_ids

    values (1003, 30, 40);

    insert into road_point_ids

    values (1004, 40, 50);

    insert into road_point_ids

    values (1005, 50, 10);

    insert into road_point_ids

    values (1006, 70, 75);

    insert into road_point_ids

    values (1007, 30, 50);

    insert into road_point_ids

    values (1008, 10, 40);

    insert into road_point_ids

    values (1009, 80, 70);

    insert into road_point_ids

    values (1010, 90, 95);

    insert into road_point_ids

    values (1011, 50, 60);


    commit;

    SQL > select * from road_point_ids by 2;

    ROAD_ID START_POINT END_POINT

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

    1001               10                    20

    1008               10                    40

    1002               20                    30

    1007               30                    50

    1003               30                    40

    1004               40                    50

    1011               50                    60

    1005               50                    10

    1006               70                    75

    1009               80                    70

    1010               90                    95

    11 selected lines

    In the example above only seven road_ids intersect at TWO points corresponding to start or end point.

    Output desired must be as...

    ROAD_IDSTART_POINTEND_POINT
    10011020
    10022030
    10033040
    10044050
    10055010
    10073050
    10081040

    7 selected lines

    I tried to use a lot of operator AND with the OR operator but sent to an incorrect result. Could someone provide me please help.

    Thanks in advance

    Saaz

    Hi, Saaz,

    How is this problem differs from your original problem?

    If it's just that the data is now contained in 2 tables (a few lines in a table, a few lines in the other) instead of a table, you can change my original solution by using a UNION to combine the two tables into one:

    WITH road_point_ids AS

    (

    SELECT road_id, start_point, end_point OF road_point_ids_1 UNION ALL

    SELECT road_id, start_point, end_point FROM road_point_ids_2

    )

    SELECT DISTINCT road_id, start_point, end_point

    OF road_point_ids

    WHERE CONNECT_BY_ISCYCLE = 1

    CONNECT BY NOCYCLE start_point = PRIOR end_point

    ;

    The WITH clause is new; the main request is that I posted earlier.

  • problem with the vista updates, dates back to December 2008

    In December 2008, I had remote access, now have broadband services. have family vista premium with service pack 1, the problem started when I tried to install the December 2008 windows updates. checked all updates essential etc. then let problem execution, not finished, then computer rebooted as it always does, is gone on the screen, then rebooted, saw the windows bar downstairs and then (as would normally go to LOG IN) it went to black screen and then off, the thing windows tried to start and check the disc and other programs of repair but kept saying could not start. Looked at this time comes to say has encountered an unknown error and could not fix, end was to use the F keys as an administrator login and do a system restore to 5 December and then worked well, have run the check disk and defrag and virus scans etc... now, my pc works fine, but I have not installed updates since December 2008, as know that it will happen if I do. However, I want to keep my vista up-to-date. I think that may be corruptions in the updates in a temporary folder somewhere, but don't know where it is. is - it there anyway to remove the files that can be corrupted or is there another solution, looked everywhere for answers in the forums and helpdesk there were several other people in the same question. My computer work fine, but I wonder if I will ever be able to install an update again. I have to be clear that I can run windows update without issue, it lists later and everything but when it's this thing to reboot it goes back to square one as shown above. Something in the updates is messing up my system and even widows classes as unknown error.

    Annanimo,
    Thank you for visiting the Microsoft Answers community.

    To test your corrupt file system, run the System File Checker:
    To run the System File Checker tool, follow these steps:
    Click Start and type cmd in the box start the search.
    Right click on cmd in the list programs, and then click Run as administrator.
    If you are prompted for an administrator password or a confirmation, type your password or click on continue
    At the command prompt, type the following line and press ENTER:
    sfc/scannow
    When the analysis is complete, test to see if the problem you are experiencing is resolved.

    Let us know what that discoveries and if we are to advance, support.
    Thank you
    Gloria
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Can we get our data back, please?

    It seems that Motorola has changed available in the csv file that it creates. Becuause of this, data can no longer be imported about any program. Especially if you needed convert online to convert it to a .tcx.

    As much as I love watching it, I don't like for the site, so I need to import the data. Right now, I can no longer do...

    Could Motorola, you please give us one of the following options?

    (a) "old style".csv file "

    (b) some file format standard of industry (such as.tcx)

    Thank you very much!

    Allart

    You can convert your data into csv tcx. They have set and updated the online conversion tool.

  • Query to find data on holidays

    Hi, I have a table for special leave, which looks like this:

    PROFILE_DAY VAR_DATE
    REGULAR_HOLIDAY01/01/2013
    H_WEEK_THURSDAY28/03/2013
    H_WEEK_FRIDAY29/03/2013
    REGULAR_HOLIDAY24/12/2013
    REGULAR_HOLIDAY25/12/2013
    REGULAR_HOLIDAY31/12/2013

    And another table (LOAD_PROFILE_TEST) that contains the values of (TIME_EQ) 0-24 LOAD_PROF1 intervals 0.25 for (PROFILE_DAY) MONDAY to SUNDAY including REGULAR_HOLIDAY, H_WEEK_THURSDAY and H_WEEK_FRIDAY.  Overall, this table contains 970 records (97 separate 0-24 with interval of 0.25 per PROFILE_DAY, with 10 PROFILE_DAY).

    TIME_EQ PROFILE_DAY LOAD_PROF1 LOAD_PROF2
    0REGULAR_HOLIDAY11.47
    0.25REGULAR_HOLIDAY11.27
    0.5REGULAR_HOLIDAY11.3
    0.75REGULAR_HOLIDAY11.08
    0MONDAY11.27
    0.25MONDAY11.33
    0.5MONDAY11.18

    Now I have this request to update the value of LOAD_PROF2 in the table every time that the V_DATE_OUT and V_DATE_IN parameters is entered:

    UPDATE LOAD_PROFILE_TEST

    SET LOAD_PROF2 = LOAD_PROF1 +: LOAD_DIFF

    WHERE UPPER (PROFILE_DAY) IN (select UPPER (to_char (: V_DATE_OUT + (level 1), "fmDAY")))

    of the double

    connect by level < =: V_DATE_IN -: + 1 V_DATE_OUT

    );

    where: LOAD_DIFF is some predetermined value.

    This query works fine if I'm trying to update regular days from MONDAY to SUNDAY.  What I would do is to determine if the two dates of setting, V_DATE_OUT & V_DATE_IN would fall under none of the holidays on the first table LOAD_PROFILE_TEST, and then update the lines only.  For example, V_DATE_OUT = 12/02/2013, Monday and V_DATE_IN = 06/12/2013, Friday.  The query above would update the values of the LOAD_PROF2 for PROFILE_DAY - MONDAY to FRIDAY, corresponding to the dates of 02/12/2013 and on 06/12/2013.  If, however, V_DATE_OUT = 23/12/2013, Monday and V_DATE_IN = 27/12/2013, Friday, it should update the lines corresponding to PROFILE_DAY - MONDAY 23/12/2013, THURSDAY for 26/12/2013, FRIDAY for 12 27, 2013, and REGULAR_HOLIDAY for the dates of 12 24, 2013 and 25/12/2013 since these two appear in the first table (table of holidays).  This scenario works the same way when V_DATE_OUT and/or V_DATE_IN enter the dates of 28/03/2013 and 29/03/2013.  All other dates not included in the table for special leave will be treated according to the day they fall on (from Monday to Sunday).  I hope my point is clear.  Thank you in advance.

    arms777 wrote:

    I have already given a test for the table,

    Frank pleased to display:

    "examples of data (CREATE TABLE and only relevant columns, INSERT statements) for all of the tables involved and the results desired from this data."

    I do not see the second statement in the create table and insert statements. Do you expect to write us your data ourselfs?

    However I'll try it from scratch

    merge into LOAD_PROFILE_TEST t

    a_l'_aide_de)
    Select distinct
    Decode (var_date, null, theday, profile_day) profile_day
    BeO
    Select
    SUPERIOR (to_char (: V_DATE_OUT + (level 1), 'fmDAY')) theday
    ,: V_DATE_OUT + subsist (level 1)
    of the double
    connect by level<= :v_date_in="" -="" :v_date_out ="" +="">
    )
    REG_HOLIDAYS
    where
    subsist = var_date (+)

    ) g
    on (UPPER (t.PROFILE_DAY) = g.profile_day
    )
    When matched then update
    SET LOAD_PROF2 = LOAD_PROF1 +: LOAD_DIFF

    Post edited by: chris227
    Fixed: added update

  • I need 4 Firefox because Firefox 5 is not for me. Upgrade error. Where canI find Firefox 4 Please!

    I've upgraded to Firefox 5, but I can't use my McAfee Site Advisor.
    Please tell me where I can get Firefox 4. My computer no longer has the download of Firefox 4.

    You can download Firefox 4.0.1 here: ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/4.0.1/win32/en-US/

    Or version 4.0 from here: ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/4.0/win32/en-US/

    However, be aware that there are security flaws in two versions which have been resolved in version 5.0.x, details here: http://www.mozilla.org/security/known-vulnerabilities/firefox.html

    If this answers your question, please click the button solved next to this post after logging in to the forum. This will help others looking for a solution for the same topic.

    Thank you.

  • There is no "refresh page" button: can we have back please?

    In Firefox 3.x, there is always a refresh button but I can't find anywhere in Firefox 4. Have I missed something or if it is lost in the transition?

    Firefox 4.0 has a reload/Stop/Go combined button that is placed at the right end of the URL/address bar. This will change:

    • When you type in the URL/address bar or in a empty new tab, you'll see the Go button; arrow pointing to the right on a green background
    • When a page loads, you will see an 'X' on a red background
    • Once a page is loaded, you will see the Reload button; circular right arrow

    In Firefox 4.0, you can move the buttons Stop/Reload of the URL/address bar and place them where you want on the toolbar. You can also make it appear outside the URL/address bar

    • as separate buttons on the toolbar, or
    • as a combined Stop/Reload button
    1. Open the Customize toolbar:

      • Firefox button > Options > toolbars
      • If you use the Menu view > toolbars > customize
    2. the buttons will show separately on the outside and to the right of the location of the URL/address bar while the window to customize the tool bar is open
    3. While the window customize the toolbar is open, you can:
      • Swap the two buttons or move them to any position on the toolbar.
      • If the order is "Reload - Stop", you'll get a combined "Stop/Reload" button.
      • Switch the order to 'Stop - Reload' or separate them also (as a 'separator' or 'Space' in the window moving customize the toolbar between them) for two separate buttons.
      • If you move the buttons or leave the buttons on the right end of the toolbar URL/address in the Reload-Stop order, will be combined in the Reload/Stop/Go button unique on the right end of the URL/location/the closing of the window toolbar Customize the toolbar.
    4. Once completed, click 'Done' at the bottom right of the window customize the toolbar.

    You need to update the following. The Plugin version (s) below has / have been submitted with your question and is obsolete. You need to update in order to avoid the known security issues with the version (s) you have installed. Click on 'more system info... '. "to the right of your question to see what was included with your question.

    • Next-generation Java plug-in 1.6.0_24 for Mozilla browsers
    1. Check your plugin versions on one of the following links:

    2. Update the Java plugin to the latest version.

  • See also "Manual Update" in this article for update from the Java Control Panel in Control Panel: http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates
  • Removal of older versions (if required): http://www.java.com/en/download/faq/remove_olderversions.xml
  • Remove several extensions of Console Java (if necessary): _ http://kb.mozillazine.org/Firefox: _FAQs_:_Install_Java #Multiple_Java_Console_extensions
  • Java test: http://www.java.com/en/download/help/testvm.xml
  • I just formatted my computer, installed new Firefox and connected to my account, but my favorites are all absent. I can get it back, please?

    Hello

    I have used Firefox for a long time and had a good part of the files of bookmarks and always had my account logged in the browser. But then formatted my computer driver problems cause random I had, but didn't think to make a backup file, or something of the sort on the browser history and bookmarks. I thought when you are connected again in Firefox I wish my things back again, like Chrome. But now, after spending some time in the support page, trying to figure out how to get my favorites is closest to my problem that I get when you refresh the browser you reimport bookmarks of an already existing folder, if well I don't have that at all. I'm here now to ask if it is possible to get my favorites yet somehow.

    Thank you

    Do not reset the password synchronization! That will delete all the data of the account.

Maybe you are looking for