months Max and the year of the table

Hello

I need to get the months max and the year of a table.
DESC WHR_REPORT
REPORTMONTH   NUMBER(2)
REPORTYEAR    NUMBER(4)
Sample data in table
reportmonth    reportyear
01              2009
02              2009
03              2009
04              2009
09              2009
12              2009
01              2010
02              2010
How can I get the date max which means 022010 table?

Thank you
Sandy
select max(to_date(to_char(reportyear) || lpad(to_char(reportmonth), 2, '0'), 'yyyymm' ) )
from whr_report

or

select reportyear, reportmonth
from
(
select reportyear, reportmonth, row_number() over (order by reportyear desc, reportmonth desc) rn
from whr_report
)
where rn = 1

I forgot to lpad around month

Published by: bluefrog on June 10, 2010 15:59

Tags: Database

Similar Questions

  • Getting the values MIN and MAX of the table data

    I have the table and the following records.
    create table test_bank ( trans_id  number ,   trans_date   date ,    trans_amt    number ,      debit_credit_indicator varchar2(3) )
    
    Insert into TEST_BANK
       (TRANS_ID, TRANS_DATE, TRANS_AMT, DEBIT_CREDIT_INDICATOR)
     Values
       (1, TO_DATE('01/17/2013 08:02:44', 'MM/DD/YYYY HH24:MI:SS'), 1099, 'cr');
    Insert into TEST_BANK
       (TRANS_ID, TRANS_DATE, TRANS_AMT, DEBIT_CREDIT_INDICATOR)
     Values
       (1, TO_DATE('01/18/2013 08:03:02', 'MM/DD/YYYY HH24:MI:SS'), 800, 'cr');
    Insert into TEST_BANK
       (TRANS_ID, TRANS_DATE, TRANS_AMT, DEBIT_CREDIT_INDICATOR)
     Values
       (1, TO_DATE('01/19/2013 08:03:18', 'MM/DD/YYYY HH24:MI:SS'), 500, 'db');
    Insert into TEST_BANK
       (TRANS_ID, TRANS_DATE, TRANS_AMT, DEBIT_CREDIT_INDICATOR)
     Values
       (1, TO_DATE('01/20/2013 08:03:36', 'MM/DD/YYYY HH24:MI:SS'), 200, 'cr');
    Insert into TEST_BANK
       (TRANS_ID, TRANS_DATE, TRANS_AMT, DEBIT_CREDIT_INDICATOR)
     Values
       (2, TO_DATE('01/22/2013 08:04:01', 'MM/DD/YYYY HH24:MI:SS'), 400, 'db');
    Insert into TEST_BANK
       (TRANS_ID, TRANS_DATE, TRANS_AMT, DEBIT_CREDIT_INDICATOR)
     Values
       (2, TO_DATE('01/23/2013 08:04:16', 'MM/DD/YYYY HH24:MI:SS'), 345, 'cr');
    Insert into TEST_BANK
       (TRANS_ID, TRANS_DATE, TRANS_AMT, DEBIT_CREDIT_INDICATOR)
     Values
       (2, TO_DATE('01/24/2013 08:04:33', 'MM/DD/YYYY HH24:MI:SS'), 600, 'db');
    COMMIT;
    I need to get the highest and lowest credit / debit amount for each trans_id.
    I tried the SQL query below. Could you please let me know if a better solution.
    select distinct * from (
    select trans_id , case when debit_credit_indicator ='db' then  max(trans_amt) over (partition by trans_id,debit_credit_indicator )
                                 when  debit_credit_indicator ='cr' then  max(trans_amt) over (partition by trans_id,debit_credit_indicator )
                                 else null end trans_amt , debit_credit_indicator 
     from test_bank  
     union
     select trans_id , case when debit_credit_indicator ='db' then  min(trans_amt) over (partition by trans_id,debit_credit_indicator )
                                 when  debit_credit_indicator ='cr' then  min(trans_amt) over (partition by trans_id,debit_credit_indicator )
                                 else null end trans_amt , debit_credit_indicator 
     from test_bank   )
     order by trans_id
    Thank you

    Hello

    to get the answer, we need to know what is your expected results (showing an example).

    I don't know if this is appropriate for your needs:

      SELECT trans_id, debit_credit_indicator, MAX (trans_amt) trans_amt, 'MAX' min_max
        FROM test_bank
    GROUP BY trans_id, debit_credit_indicator
    UNION ALL
      SELECT trans_id, debit_credit_indicator, MIN (trans_amt)trans_amt, 'MIN' min_max
        FROM test_bank
    GROUP BY trans_id, debit_credit_indicator
    ORDER BY trans_id, debit_credit_indicator, min_max DESC;
    
      TRANS_ID DEBIT_CREDIT_INDICATOR  TRANS_AMT MIN_MAX
    ---------- ---------------------- ---------- -------
             1 cr                            200 MIN
             1 cr                           1099 MAX
             1 db                            500 MIN
             1 db                            500 MAX
             2 cr                            345 MIN
             2 cr                            345 MAX
             2 db                            400 MIN
             2 db                            600 MAX    
    

    Kind regards.
    Al

  • How to get the date of end of week max and its rows of a table

    Hello
    Table [temp2]
     
       id          name        dt
      123        a             2-mar-2010
      124        b            1-feb-2010
      125        c             3-apr-2010
      123        a             13-mar-2010
      125        c             13-mar-2010
      123        a             12-feb-2010
     
    This table how to get this line by id - name (id and the name of the composite key) whose date is the date of last weekend (last Saturday).
    for example, suppose to have IDs 123 values date February 12, 2010, 13-mar-2010 this date falls on the last Saturday 13-mar-2010, how to get the value of the line on Saturday last for all the unique id and the name?

    So I wrote this but probably there a few traps...
    select id,name,dt from (select id,name,dt,max(dt) over(partition by id,name) as 
    max_date from temp2) t where dt=t.max_date and dt in ('3-apr-2010'
    ,'27-mar-2010','20-mar-2010','13-mar-2010')
    Here I have spent in the in clause 4 last weekend dates manually (although either has been calculated by programming) in front.
    Thank you

    Here's another option:

    SELECT     *
    FROM
    (
         SELECT     ID
         ,     NAME
         ,     MAX(CASE WHEN TO_CHAR(DT,'DY','NLS_DATE_LANGUAGE=ENGLISH') = 'SAT' THEN DT END) AS DT
         FROM     TEMP2
         GROUP BY ID, NAME
    )
    WHERE DT IS NOT NULL
    

    It is always useful to provide the following information:

    1. oracle version (SELECT * FROM V$ VERSION)
    2. examples of data in the form to CREATE / INSERT commands.
    3. expected results
    4 explanation of the expected results (alias "business logic")
    5. use.

     tags for #2 and #3. See FAQ (Link on top right side) for details.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
    
  • Extremely slow camera in MAX and the software response

    I am in the process of upgrading from a piece of test equipment that uses two firewire cameras.

    Currently, the software is written in LabVIEW 7.1, it uses NEITHER IMAQ and is quite catchy, with little perceptible delay in the passage between the cameras in the software. Same MAX opens up the cameras relatively quickly and you can turn on or take a few seconds of clicking cameras and quickly change between cameras.

    Without changing the external hardware to the computer, but with a new windows 7 PC in place and update the software to use OR-IMAQdx simply by replacing the IMAQ works with IMAQdx in 2014 of LabVIEW and install the latest version of MAX led the software becomes unusually slow in the passage of the cameras. When I say exceptional, I mean that it takes up to 30 years to set up and run each camera. Bearing in mind that the vision process takes 0.5 seconds or less is unacceptable. It is just as painful changing between cameras in MAX.

    I noticed that on another system that uses a camera USB 3, simply by clicking on the camera icon in MAX takes a LOT of time answering to allow you to do anything.

    On the old windows PC with MAX 5 and IMAQ clicking a camera brings the dialog boxes fairly quickly.

    Someone has an idea, what happens? Is it something IMAQdx? Of course, this is not normal?

    Can anyone offer advice please?

    Thank you

    Your post, I shared with my colleague FireWire camera (which is out of town, but regularly check the email), and here's his reply:

    Three cameras at 25 frames per second, with RGB channel separated because of the bandwidth.  We take avi and pngs simultaneously on several channels.  My suspicion is that their former Council might not be fully compliant with the standards. Not all the work of commissions, I tried a little on-site, then chose the one that is recommended by the seller.  In addition, no hubs as they can also stifle bandwidth.

    Hope it will be useful.

    Bob Schor

  • Need help solving any internet connection. This happened to me several months ago and the supplier

    Need help solving any internet connection. This just started today, but it's happened to me several months ago and at that time the provider thought it was software related and suggested that I have to contact HP. I have a HP 2006 m7674n, Windows XP. For several days, I worked with HardBeatZ on a different issue that has been resolved today. However, for several days, I had been working msconfig to track down the cause of the problem; This resulted in several reboots the computer - this would have something to do with it? Also, I just started getting a RUNAS box popping up. HardBeatZ has provided a link to a possible solution to this, but since I can't do internet connection I can't get the fix. Right now I'm on a laptop with Wi - Fi for the same service internet/modem as my PC. I changed nothing onmy PC in the last days of several for the internet connection or services.  I always use eithernet connection from the router to the computer. I tried Wi - Fi today with my PC but not connect. I tried to unplug the router and reconnect but it does not solve the problem. I did a Network Diagnostic and printed the report; Here are the warnings and error messages in this report:

    1. under the terms of the bridge diagnosis; Warning: "www.microsoft.comcould hostname not be resolved (0x2afc error code). Could be the gateway or DNS problem.

    2. under diagnosis of layer IP; Corrupted IP routing table. Default route, road closures, route host itinerary local subnet and local are all valid; Invalid entries in the ARP cache. ACTION: the ARP cache has been emptied. »

    3. UNDER HTTP, HTTPS, FTP Diagnostic; all three had this warning: ' 12007 connection error at www.microsoft.com: the server name or address cannot be resolved. " and the error was unable to establish a connection.

    Still under network adapter diagnosis; It shows the connection status of network as "connected."

    Also, I have an older computer that I connected with eithernet and was able to connect to the internet but has been disconnected because the version of Windows is too old to support the connection. But I could briefly connecting on HP website before you log out. The point being I think it's a computer problem and not an internet router or provider problem.

    I read a few entries on this site and it seemed that the recovery of the system was the only solution. I hope that there are other things to try before I resort to that.

    I would appreciate any advice on the steps to diagnose the problem and insight as to what may have caused this to happen. Thank you. dt2012

    Sorry... still with you... OK, we know that your network card is good and we know that your first post;

    1. under the terms of the bridge diagnosis; Warning: 'host www.microsoft.com name could not be resolved (0x2afc error code). Could be the gateway or DNS problem.

    2. under diagnosis of layer IP; Corrupted IP routing table. Default route, road closures, route host itinerary local subnet and local are all valid; Invalid entries in the ARP cache. ACTION: the ARP cache has been emptied. »

    3. UNDER HTTP, HTTPS, FTP Diagnostic; all three had this warning: "error 12007 connecting to www.microsoft.com: the server name or address cannot be resolved." and the error was unable to establish a connection.

    4. still under network adapter diagnosis; It shows the connection status of network as "connected."

    For me, it seems that Internet Explorer is corrupted or damaged. Your computer is shipped with Microsoft Windows XP Service Pack 2 Media Center Edition 2005 but since you can have updated to XP SP3 or upgraded to a newer version of Internet Explorer. Please try the options listed in this document to Microsoft titled "how to reinstall or repair Internet Explorer" , since there are several options depending on your system configuration, please post if you need help to solve your problem.

  • Table or view does not exist when try it and the table access to the remote but database was OK before

    Hello

    With the help of 11.2.0.3

    SQL that accesses, one table of remote database link remote db - fonctionnee during over a link db months readonly

    The remote database table has been abandoned and then recreatde.

    Is there some other step needed to allow access to the table in the remote database?

    Thank you

    You have lost your privs when the table was dropped.

  • When embedding the HTML table for table border does not appear even if it appears in a web browser and the tables generator

    Need help.  When I add the HTML code to integrate the following table, the border appears in the table designer and if I find the table separately from muse, but when they are incorporated into the Muse from the edge of the table is not displayed.  Any ideas what I can do wrong?

    Here is the HTML Code below:

    < style type = "text/css" >

    .TG {border-collapse: collapse; border-spacing: 0 ;}}

    .TG td {-font family: Arial, without serif; do-size: 14px; padding: 10px 5px; border-style: solid; border-width: 1px; overflow: hidden; word-break: normal ;}}

    .TG th {font family: Arial, without serif; do-size: 14px; police-weight: normal; padding: 10px 5px; border-style: solid; border-width: 1px; overflow: hidden; word-break: normal ;}}

    .TG .tg-jlrw {do-size: 16px; text-align: center}

    .TG .tg-lvl4 {police-weight: "BOLD"; do-size: 16px; do-family: Arial, Helvetica, sans! important; text-align: center}

    .TG .tg-qnmb {make-weight: bold; do-size: 16px; text-align: Center}

    .TG .tg-wm6t {make-weight: bold; do-size: 16px}

    < / style >

    < table class = "tg" style = "undefined; table-layout: fixed; Width: 875px ">"

    < colgroup >

    < style col = "width: 175px" >

    < style col = "width: 175px" >

    < style col = "width: 175px" >

    < style col = "width: 175px" >

    < style col = "width: 175px" >

    < / colgroup >

    < b >

    < class th = 'tg-lvl4' > print size < br < /th > >(Width x Height)

    < class th = "tg-qnmb" > model size < /th >

    < class th = 'tg-qnmb' > < /th > < br > security zone

    < class th = "tg-qnmb" > < br > print Code < /th >

    < class th = "tg-qnmb" > < br > < br > graphic border width (pixels) < /th >

    < /tr >

    < b >

    < class td = "tg-wm6t" colspan = "5" > cards & amp; The year-at-a-Glance calendars - 4 x 6, 4 x 8, 5 x 7, 6 x 8, & amp; 8 x 10: < table >

    < /tr >

    < b >

    < class td = "tg-jlrw" > 4 x 6 < table >

    < class td = "tg-jlrw" > 1212 x 1818 < table >

    < class td = "tg-jlrw" > 1136 x 1742 < table >

    < class td = "tg-jlrw' > 46 t < table >

    < class td = "tg-jlrw' > < table > 60

    < /tr >

    < b >

    < class td = "tg-jlrw" > 5 x 7 < table >

    < class td = "tg-jlrw" > 1515 x 2121 < table >

    < class td = "tg-jlrw" > 1439 x 2045 < table >

    < class td = 'tg-jlrw' > < table > 57(d)

    < class td = "tg-jlrw' > < table > 75

    < /tr >

    < b >

    < class td = "tg-jlrw" > 4 x 8 < table >

    < class td = "tg-jlrw" > 1224 x 2424 < table >

    < class td = "tg-jlrw" > 1148 x 2348 < table >

    < class td = "tg-jlrw" > 48 t < table >

    < class td = "tg-jlrw' > < table > 60

    < /tr >

    < b >

    < class td = "tg-jlrw" > 8 x 10 < table >

    < class td = "tg-jlrw" > 2424 x 3030 < table >

    < class td = "tg-jlrw" > 2348 x 2954 < table >

    < class td = "tg-jlrw" > 80 t < table >

    < class td = "tg-jlrw' > < table > 120

    < /tr >

    < b >

    < class td = "tg-wm6t" colspan = "5" > Important: safe area on the base prints is 38 pixels per side. < table >

    < /tr >

    < b >

    < class td = "tg-wm6t" colspan = "5" > large Format prints - Posters & Collages: < table >

    < /tr >

    < b >

    < class td = "tg-jlrw" > 6 x 8 < table >

    < class td = "tg-jlrw" > 1818 x 2424 < table >

    < class td = "tg-jlrw" > 1742 x 2348 < table >

    < class td = "tg-jlrw" > 6 x 8 < table >

    < class td = "tg-jlrw' > < table > 90

    < /tr >

    < b >

    < b >

    < class td = "tg-jlrw" > 8 x 12 < table >

    < class td = "tg-jlrw" > 2400 x 3600 < table >

    < class td = "tg-jlrw" > 2380 x 3580 < table >

    < class td = "tg-jlrw" > 8 x 12 < table >

    < class td = "tg-jlrw' > < table > 120

    < /tr >

    < b >

    < class td = "tg-jlrw" > 8 x 20 < table >

    < class td = "tg-jlrw" > 2400 x 6000 < table >

    < class td = "tg-jlrw" > 2380 x 5980 < table >

    < class td = "tg-jlrw" > 8 x 20 < table >

    < class td = "tg-jlrw' > < table > 120

    < /tr >

    < b >

    < class td = "tg-jlrw" > 10 x 14 < table >

    < class td = "tg-jlrw" > 3030 x 4242 < table >

    < class td = "tg-jlrw" > 2954 x 4166 < table >

    < class td = "tg-jlrw" > 10 x 14 < table >

    < class td = "tg-jlrw' > < table > 165

    < /tr >

    < b >

    < class td = "tg-jlrw" > 11 x 14 < table >

    < class td = "tg-jlrw" > 3300 x 4200 < table >

    < class td = "tg-jlrw" > 3280 x 4180 < table >

    < class td 'tg-jlrw' = > 14x11E-24_STN < table >

    < class td = "tg-jlrw' > < table > 165

    < /tr >

    < b >

    < class td = "tg-jlrw" > 12 x 12 < table >

    < class td = "tg-jlrw" > 3600 x 3600 < table >

    < class td = "tg-jlrw" > 3580 x 3580 < table >

    < class td = "tg-jlrw" > 12 x 12-24_STN < table >

    < class td = "tg-jlrw' > < table > 90

    < /tr >

    < b >

    < class td = "tg-jlrw" > 12 x 18 < table >

    < class td = "tg-jlrw" > 3600 x 5400 < table >

    < class td = "tg-jlrw" > 3580 x 5380 < table >

    < class td = "tg-jlrw" > 12 x 18-24_STN < table >

    < class td = "tg-jlrw' > < table > 90

    < /tr >

    < b >

    < class td = "tg-jlrw" > 16 x 20 < table >

    < class td = "tg-jlrw" > 4800 x 6000 < table >

    < class td = "tg-jlrw" > 4780 x 5980 < table >

    < class td 'tg-jlrw' = > 20x16E-24_STN < table >

    < class td = "tg-jlrw' > < table > 120

    < /tr >

    < b >

    < class td = "tg-jlrw" > 18 x 24 < table >

    < class td = "tg-jlrw" > 2700 x 3600 < table >

    < class td = "tg-jlrw" > 2680 x 3580 < table >

    < class td = "tg-jlrw" > 18 x 24-24_STN < table >

    < class td = "tg-jlrw' > < table > 135

    < /tr >

    < b >

    < class td = "tg-jlrw" > 20 x 24 < table >

    < class td = "tg-jlrw" > 3000 x 3600 < table >

    < class td = "tg-jlrw" > 2980 x 3580 < table >

    < class td 'tg-jlrw' = > 20x24E-24_STN < table >

    < class td = "tg-jlrw' > < table > 150

    < /tr >

    < b >

    < class td = "tg-jlrw" > 20 x 30 < table >

    < class td = "tg-jlrw" > 3000 x 4500 < table >

    < class td = "tg-jlrw" > 2980 x 4480 < table >

    < class td 'tg-jlrw' = > 20x30E-24_STN < table >

    < class td = "tg-jlrw' > < table > 150

    < /tr >

    < b >

    < class td = "tg-jlrw" > 24 x 36 < table >

    < class td = "tg-jlrw" > 3600 x 5400 < table >

    < class td = "tg-jlrw" > 3580 x 5380 < table >

    < class td 'tg-jlrw' = > 24x36E-24_STN < table >

    < class td = "tg-jlrw' > < table > 180

    < /tr >

    < b >

    < class td = "tg-jlrw" > 24 x 72 < table >

    < class td = "tg-jlrw" > 2328 x 6912 < table >

    < class td = "tg-jlrw" > 2308 x 6892 < table >

    < class td 'tg-jlrw' = > 24x72E-24_STN < table >

    < class td = "tg-jlrw' > < table > 115

    < /tr >

    < b >

    < class td = "tg-jlrw" > 24 x 96 < table >

    < class td = "tg-jlrw" > 2328 x 9216 < table >

    < class td = "tg-jlrw" > 2308 x 9196 < table >

    < class td 'tg-jlrw' = > 24x96E-24_STN < table >

    < class td = "tg-jlrw' > < table > 115

    < /tr >

    < class td = "tg-wm6t" colspan = "5" > Important: safe area on the base prints is 38 pixels per side. < table >

    < /tr >

    < class td = "tg-wm6t" colspan = "5" > 4 x 8 gift tags: < table >

    < /tr >

    < b >

    < class td = "tg-jlrw" > 4 x 8 < table >

    < class td = "tg-jlrw" > 1224 x 2424 < table >

    < class td = "tg-jlrw" > 1148 x 2348 < table >

    < class td = "tg-jlrw" > 48 t < table >

    < class td = 'tg-jlrw' > < table > N/A

    < /tr >

    < b >

    < class td = "tg-wm6t" colspan = "5" > Important: safe area on the base prints is 38 pixels per side. < table >

    < /tr >

    < /table >

    Once again... Muse removes the style code that you put into this table so your other option is to use an iframe

    example of your table in an iframe = table (by itself) and i-table (inside the iframe Muse)

  • Stuck with trying to get the max of the table version number

    We have a custom table that contains information on the work packages installed.

    Whenever a package is updated, a new entry is added to the table, with an incremented version number.

    Some examples of data:
    GET sampledata
    WITH sampledata AS
         (SELECT 'TEST0003' NAME
               , '1.1' VERSION
               , 'Installed Work Packet TEST 111' description
               , '18-Jul-2003' install_date
            FROM DUAL
          UNION ALL
          SELECT 'TEST0003'
               , '1.2'
               , 'Installed Work Packet TEST 111'
               , '18-Aug-2003'
            FROM DUAL
          UNION ALL
          SELECT 'TEST0003'
               , '1.3'
               , 'Installed Work Packet TEST 111'
               , '18-Sep-2003'
            FROM DUAL
          UNION ALL
          SELECT 'THIS2003'
               , '2.1'
               , 'Something Else'
               , '01-Jul-2009'
            FROM DUAL
          UNION ALL
          SELECT 'THIS2003'
               , '2.2'
               , 'Something Else'
               , '10-Aug-2009'
            FROM DUAL
          UNION ALL
          SELECT 'THIS2003'
               , '2.3'
               , 'Something Else'
               , '15-Nov-2009'
            FROM DUAL)
    SELECT *
      FROM sampledata;
    I would like to know how to return only the most recent version of each package of the table, but I can't get out.

    For example, the sample data above, I would like to only include:
    NAME               VERSION                DESCRIPTION                            INSTALL_DATE
    ---------------------------------------------------------------------------------------------------
    TEST0003           1.3                    Installed Work Packet TEST 111         18-Sep-2003
    THIS2003           2.3                    Something Else                         15-Nov-2009
    I see she has to somehow select MAX (version) for each different "NAME", but can't get my head around the syntax. What I have to GROUP BY "NAME" and then select the MAX (VERSION) of that?

    Any advice much appreciated.

    Thank you

    Thanks for the sample date!
    Yet another version:

    SQL>WITH sampledata AS
      2       (
      3          SELECT 'TEST0003' NAME, '1.1' VERSION, 'Installed Work Packet TEST 111' description,
      4                 '18-Jul-2003' install_date
      5            FROM DUAL
      6          UNION ALL
      7          SELECT 'TEST0003', '1.2', 'Installed Work Packet TEST 111', '18-Aug-2003'
      8            FROM DUAL
      9          UNION ALL
     10          SELECT 'TEST0003', '1.3', 'Installed Work Packet TEST 111', '18-Sep-2003'
     11            FROM DUAL
     12          UNION ALL
     13          SELECT 'THIS2003', '2.1', 'Something Else', '01-Jul-2009'
     14            FROM DUAL
     15          UNION ALL
     16          SELECT 'THIS2003', '2.2', 'Something Else', '10-Aug-2009'
     17            FROM DUAL
     18          UNION ALL
     19          SELECT 'THIS2003', '2.3', 'Something Else', '15-Nov-2009'
     20            FROM DUAL)
     21  SELECT   NAME, MAX(VERSION), MAX(description)KEEP (DENSE_RANK FIRST ORDER BY VERSION) AS description,
     22           MAX(install_date)KEEP (DENSE_RANK FIRST ORDER BY VERSION) AS install_date
     23      FROM sampledata
     24  GROUP BY NAME;
    
    NAME     MAX DESCRIPTION                    INSTALL_DAT
    -------- --- ------------------------------ -----------
    TEST0003 1.3 Installed Work Packet TEST 111 18-Jul-2003
    THIS2003 2.3 Something Else                 01-Jul-2009
    

    URS

  • Upgrade and the table

    I have Dreamweaver MX, and I wonder about you guys, if it's worth the upgrade for Mac running Tiger. Working on an idea for a site, I would like to know if the table are dead have been replaced by then call CSS with layers or am I wrong? My last bit of the site were conducted with tables, I was told it faster with a CSS stylesheet, then please advise me.

    Hey Simonart,.

    Tables are dead? 'No' to use arrays? 'No '.

    Learn how to use xhtml and CSS standards to build your sites if:
    1. you want a good job in the web design business
    2. you want to expand your knowledge.

    This does not mean the use of layers that means build your site using div and css positioning.

    I used the tables a few years ago and decided to try my hand at building a website using only the div tags and I have not gained and will never be.

    I learned everything here forums people like Murry 'ACE' and places such as alistapart.com, css centering by Dan Cederholm MM http://www.simplebits.com/notebook/2004/09/08/centering.html.

    Dreamweaver MX vs Dreamweaver 8.0

    If you go xhtml and CSS layout then MX is good because you will spend more time in code view, then anywhere else and that's the way we have to. I would wait for the next version of DW to see were Adobe is going with her.

    Learn to code by hand, CSS, XHTML (XHTML essentially using H1, P, Li, DD, etc the way they are supposed to serve. for example)

    This is used for headers< 1="">

    Some developers use tables for what they were intended to contain data of the table that you would see in a spreadsheet, but this can also be done with css.

    Well, I hope this helps.

    Shane

  • Switch between the graph and the table as in the DAQ Assistant

    I was wondering if it is possible or if anyone has any success making a user interface, such as the DAQ Assistant, where you can switch between a graphical output or an array of the recorded signals.  I would like to have this feature in my code .VI.  From now on, I'm just a waveform graph in my front panel.  I'd love to be able to alternate between this waverform table and a table of output values. I have attached a few screenshots to explain what I mean.

    Hello

    Personally, I like the TAB ideas that have been validated, but you can also use property nodes and the visible value.

    Good luck.

    Steven

  • How to export a table and the table as an image?

    My VI generates a table (formatted with different colors of text and cell), plus a text box, as well as a table (formatting with a background color).

    I can group these objects on the front panel and copy them as a single unit, and paste them into PowerPoint.

    Is it possible to do this automatically, have labVIEW group together them as a single object and export it as an image file with the name of the file in the form of control? See the example attached VI and the image below:

    Here's a way to do it.

    1. create a decoration on the FP that surrounds the controls

    2 get a reference to the decoration and the MasterBoundRect property to define a subset of the image of the public Service

    3. save the subset of the image

    You can color the transparent decoration to hide it if you wish.

    If the method works for you, there are more complex and yet robust methods to get the reference of the decoration.

  • Page numbering and the Table of contents

    I have a book containing 23 document files. Document files contain the page numbers in the footer.

    One of the document file is a generated table of contents (TOC). Unfortunately, the generated page

    the number in the table of contents do not match the numbering of the pages in the files. Here are the details:

    • The title page, in a file by itself, is not numbered
    • The frontmatter, distributed in five cases use lowercase Roman (i - xvi)
    • The body of the text in the remaining 17 files is digital (1-243)
    • The generated TOC uses cardinal numbers of the book as a whole. For example,.
      Chapter I is numbered correctly in the footer from page 1. However, he is listed in the table of contents
      as starting on page 19, because this is the file real 19th in the book. I put the document numbering
      This file from 1 properties and properties of Page numbering for the book as a whole to
      be "continue."
    • The style of the table of contents entries is correct. In other words, the frontmatter uses a tiny Roman and the
      chapters use Numeric

    I tried to regenerate the table of contents, but this did not help.

    Does anyone have suggestions on what is the way prescribed to do?

    OK, I continued to read and this is what I found:

    Set the numbering style in the document, and not in the book that we told you. Format > Document > numbering. Choose Arabic or digital. Repeat for the various chapters.

    Save and close the chapters. In the book file, click with the right button on each chapter and choose Configure XXX. This is where tell you the book to continue the page numbering or restart at the 1.

    Once this is done, update your address. From there, if there are issues, we rely on the logic of the Fm we use every day, and each of us can help you solve.

  • Find the name and the table constraint type based on the name of the field

    I have a field name or a column with me... I want to find the name of the table is a primary key... Any request to make this work so that the running costs are low...

    Currently, I mix dba_constraints and ALL_TAB_COLUMNS to get this... is possible to extract the data of a process cost effective single table/any other is appreciated

    You must include the USER/ALL_CONSTRAINTS with USER/ALL_CONS_COLUMNS to achieve your desired results. For your specific condition, you can try this query.

    Select constraint_name

    column_name

    de)

    Select c.constraint_name

    cc.column_name

    count on column_count (c.constraint_name score) (cc.column_name)

    from user_constraints c

    Join user_cons_columns cc

    on c.constraint_name = cc.constraint_name

    where constraint_type = 'P '.

    )

    where column_name = 'EMPNO '.

    and column_count = 1;

    I used USER_CONSTRAINTS and USER_CONS_COLUMNS. If you use ALL or DBA dictionary table add join OWNER condition as well.

  • Min - Max and the planning of Kanban

    What are the factors or business cases that should be considered in the choice of planning that we should go?
    Any help would be appreciated

    My Client is interested in the above 2 methods

    Thank you
    Mahendra

    It of a broad question and is not easy to answer.
    One major difference is your philosophy.
    Kanban (if properly implemented) is pull based system.
    Min - max is always anxious that is it looks at your current onhand, future demand, future supply and then comes up with a purchase requisition.

    But there is no hard rule.

    Min - max works well when the issue of subinventory is not placed in a compartment. But in a workshop type of situation, you can have an operator goes the CRUDE inventory to get a bucket of screws.
    If you ran min - max on the WIP subinventory, he will think that you have a lot and does not generate a purchase requisition.
    But another operator may require that these screws and it may be out of them. In this case, a Kanban work better because as soon as the first operator took the last nth bucket, Kanban would have triggered the replenishment process.

    Kanban requires you to spend the time to analyze your problems to get to many of bin sizes and locations.

    The general rule is that Min - Max is simpler to implement.
    Kanban is a bit more complicated. So if your organization is not not mature enough or requires a simpler solution, min - max will work better.

    Sandeep Gandhi

  • White pages being inserted between the body and the table header

    Hello

    When I fill a textbox extensible in a line of body of table with large amounts of text (about 2 pages worth) I get a blank page is inserted after the first line of table header before the first line of the table body.

    I have attached a sample form that demonstrates this problem and also attached the sample text in a separate text file.

    Any suggestions on how to solve this problem would be greatly appreciated.

    Thank you

    This is a case where using a table is more difficult. I created another example which shows how to do this.

    Note that I put the version target 9 (I think remember me that the fields when not allowed out through)

    pages in version 8, but I'm not 100% sure).

    Paul

Maybe you are looking for

  • MSN HAS TAKEN OVER MY HOME PAGE. I DIDN'T ASK THEM! HOW CAN I GET RID OF THEM?

    for some reason when I start and select the fire fox web browser, load with msn under the web address and homepage. I don't want this page. in fact, I want is empty for now, as it has been. of course, I did something to make them think I want them! I

  • Satellite U405D-S2852 - it have Bluetooth and how to turn it on?

    Is - this Satellite U405D-S2852 has Bluetooth and if yes how I turn it on?I try to install battery bluetooth 6.0. It is not all devices

  • What was the update that I received this morning?

    My 4G Verizon Xoom got an update this morning, and it is common in the version Android is 3.2.6 I don't see any other posts about it. What I get? I am not registered for soaking tests on my Xoom, I know... I'm on my Bionic so I know what the process

  • upgrade to a pro version

    I have Adobe Acrobat X Standard v 10.1.14 (windows), and I want to upgrade to a pro version, no matter what version dealing with DC (document cloud).  Should what version I?  The least expensive preference.

  • command line syntax

    I am trying to automate time-consuming tasks and try to find the syntax to start Acrobat and performs an Action from a batch file.  Does anyone know the syntax for such a command?Thank you