Getting the last 5 records

I was told I should do this by date, and not buy a number. He might still be right that by date is better. But I thought that by ticketnr makes also sense, because the latest ticket, is wel normally the most recent one. I've added the check although it might not be needed, so I may remove it later.
The idea behind it is that if, although a field that needs to be filled in would give an error if not being so, a field that needs to be filled in, isn't then that record can't be used. As that wouldn't be the case, I can remove that as well. That would make it less complex.
The idea was that records could have been deleted, so that you get 1185 1187 1188 1189 1190 . If you just take the 5 highest ticket numbers, you would only get 4 as one is missing. So I thought that if you include a check that check if the ticketid actually used or not. I suppose it would be nicer if one could write something similar to but therefore not the same:
if tikcetid(select ticketid into ticketidtotest from ticket where ticketid=tussenticketid;).used() = TRUE then;
Then you would be sure it is used, and it would just pick out the last 5 ones. There could be a problem with the dates if they are mixed up, but this could be a problem not just for this. So I think it would deserve a solution on the database.
I'm getting one error as it is now.
Error report:
ORA-06550: line 83, column 20:
PLS-00103: Encountered the symbol "=" when expecting one of the following:
. ( * @ % & = - + < / > at in is mod remainder not rem then
<an exponent (**)> <> or != or ~= >= <= <> and or like
between || multiset member SUBMULTISET_
06550. 00000 - "line %s, column %s:\n%s"
*Cause:    Usually a PL/SQL compilation error.
*Action:
This is about the last : Tussen_ticketid := Tussen_ticketid - 1; But isn't it normall like it stands there ?
DECLARE
Mrecent_ticket NUMBER;
Tussen_ticketid NUMBER;
Ticketid_Place2 NUMBER;
Ticketid_Place3 NUMBER;
Ticketid_Place4 NUMBER;
Ticketid_Place5 NUMBER;
Ticketid_Place1 NUMBER;
TestVeld VARCHAR2(2000);
Query_to_use VARCHAR2(4000) := ' SELECT ticketid, applicatiecd, '||
' categorieid, titel, klantprioriteitid, interneprioriteitid, gebruikerid, statusid,'||
' versieid FROM ticket WHERE ticketid =';
Start_Rec_ticketid NUMBER;
TestVeldFoundThatIsCorrect NUMBER; is NULL; BOOLEAN := FALSE;
BEGIN
-- TestVeldFoundThatIsCorrect := FALSE;
     SELECT Max(Ticketid) INTO Mrecent_ticket FROM Ticket ;
     Tussen_ticketid := Mrecent_ticket;
     -- of dit echt nodig is weet ik zo niet
     -- kan eventueel opgevangen worden in de hoofd loop
     -- TestVeldFoundThatIsCorrect := FALSE;
     -- mischien checken op datum die ingevuld is, die moet ingevuld zijn wil het ok zijn
     LOOP From top to bottom  Till TEstVeldFOUNDTHATISCORRECT is TRUE
     WHILE TestVeldFoundThatIsCorrect != 9999999 LOOP
               SELECT titel INTO TestVeld FROM ticket WHERE ticketid =
               Tussen_ticketid;
          IF TestVeld is NULL THEN
               Tussen_ticketid := Tussen_ticketid - 1;
               TestVeld := NULL;
          ELSE
               TestVeldFoundThatIsCorrect := 9999999;
               Start_rec_ticketid := Tussen_ticketid;
               --Stop loop
          END IF;
     END LOOP;
     IF TestVeldFoundThatIsCorrect = 9999999 THEN
          Tussen_ticketid := Start_rec_ticketid;
          -- standaard is het onderstaande, bovenstaande gebeurt alleen als de bovenstaande loop
          -- gebruikt is
     ELSE
          Tussen_ticketid := Mrecent_ticket;
     END IF;
     -- mischien moet er nog een count gebeuren die kijkt hoeveel tickets er zijn in een bepaalde --
     -- periode en afhankelijk daarvan, tussen wanneer en wanneer een andere flag zetten
     --LOOP TELLER BETWEEN 1 AND  6
     While teller <= 5 LOOP
          SELECT titel INTO TestVeld FROM ticket WHERE ticketid = Tussen_ticketid;
          --Veld_dat_ingevuld_moet_zijn INTO  TestVeld FROM ticket WHERE ticketid = Tussen_ticketid;
          -- dit zou het datumveld moeten zijn
          IF TestVeld is NOT NULL THEN
               -- dan is dat record ok voor gebruik
               -- wel nog nakijken welke veld dat moet zijn, moet altijd ingevuld zijn
               -- waarde doet er niet toe
               --Query_to_use := Query_to_use || ' UNION SELECT ticketid, applicatiecd, '||
               --' categorieid, titel, klantprioriteitid, interneprioriteitid, gebruikerid, statusid,'||
               --' versieid FROM ticket WHERE ticketid = ';
               IF Teller = 1 THEN
Ticketid_place1 := Tussen_ticketid;
Query_to_use := Query_to_use || 'Ticketid_place1';
               ELSIF Teller = 2 THEN
Ticketid_place2 := Tussen_ticketid;
Query_to_use := 'UNION'||Query_to_use || 'Ticketid_place2';
               ELSIF Teller = 3 THEN
Ticketid_place3 := Tussen_ticketid;
Query_to_use := 'UNION'||Query_to_use || 'Ticketid_place3';
               ELSIF Teller = 4 THEN
Ticketid_place4 := Tussen_ticketid;
Query_to_use :='UNION'|| Query_to_use || 'Ticketid_place4';
               ELSIF Teller = 5 THEN
Ticketid_place5 := Tussen_ticketid;
Query_to_use :='UNION'|| Query_to_use || 'Ticketid_place5';
               ELSIF Teller = 6 THEN
                    Teller := Teller + 1;
               END IF;
               Teller := Teller + 1;
               Tussen_ticketid := Tussen_ticketid - 1;
          ELSIF
               Tussen_ticketid := Tussen_ticketid - 1;
          END IF;
     END LOOP;
     -- dbms_output.Put_line(Query_to_use);
     RETURN Query_to_use;
END;

DECLARE
Mrecent_ticket NUMBER;
Tussen_ticketid NUMBER;
Ticketid_Place2 NUMBER;
Ticketid_Place3 NUMBER;
Ticketid_Place4 NUMBER;
Ticketid_Place5 NUMBER;
Ticketid_Place1 NUMBER;
TestVeld VARCHAR2(2000);
Query_to_use VARCHAR2(4000) := ' SELECT ticketid,
applicatiecd, '||
' categorieid, titel, klantprioriteitid,
interneprioriteitid, gebruikerid, statusid,'||
' versieid FROM ticket WHERE ticketid =';
Start_Rec_ticketid NUMBER;
TestVeldFoundThatIsCorrect NUMBER; --is NULL;
--BOOLEAN := FALSE;
EGIN
-- TestVeldFoundThatIsCorrect := FALSE;
Max(Ticketid) INTO Mrecent_ticket FROM Ticket ;
ussen_ticketid := Mrecent_ticket;
     -- of dit echt nodig is weet ik zo niet
     -- kan eventueel opgevangen worden in de hoofd loop
     -- TestVeldFoundThatIsCorrect := FALSE;
-- mischien checken op datum die ingevuld is, die
e moet ingevuld zijn wil het ok zijn
LOOP From top to bottom  Till
l TEstVeldFOUNDTHATISCORRECT is TRUE
     WHILE TestVeldFoundThatIsCorrect != 9999999 LOOP
SELECT titel INTO TestVeld FROM ticket WHERE
ERE ticketid =
               Tussen_ticketid;
          IF TestVeld is NULL THEN
               Tussen_ticketid := Tussen_ticketid - 1;
               TestVeld := NULL;
          ELSE
               TestVeldFoundThatIsCorrect := 9999999;
               Start_rec_ticketid := Tussen_ticketid;
               --Stop loop
          END IF;
     END LOOP;
     IF TestVeldFoundThatIsCorrect = 9999999 THEN
          Tussen_ticketid := Start_rec_ticketid;
-- standaard is het onderstaande, bovenstaande
de gebeurt alleen als de bovenstaande loop
          -- gebruikt is
     ELSE
          Tussen_ticketid := Mrecent_ticket;
     END IF;
-- mischien moet er nog een count gebeuren die kijkt
t hoeveel tickets er zijn in een bepaalde --
-- periode en afhankelijk daarvan, tussen wanneer en
n wanneer een andere flag zetten
     --LOOP TELLER BETWEEN 1 AND  6
     While teller <= 5 LOOP
SELECT titel INTO TestVeld FROM ticket WHERE
RE ticketid = Tussen_ticketid;
--Veld_dat_ingevuld_moet_zijn INTO  TestVeld FROM
OM ticket WHERE ticketid = Tussen_ticketid;
          -- dit zou het datumveld moeten zijn
          IF TestVeld is NOT NULL THEN
               -- dan is dat record ok voor gebruik
-- wel nog nakijken welke veld dat moet zijn, moet
oet altijd ingevuld zijn
               -- waarde doet er niet toe
--Query_to_use := Query_to_use || ' UNION SELECT
ECT ticketid, applicatiecd, '||
--' categorieid, titel, klantprioriteitid,
id, interneprioriteitid, gebruikerid, statusid,'||
               --' versieid FROM ticket WHERE ticketid = ';
               IF Teller = 1 THEN
Ticketid_place1 :=
Tussen_ticketid;
Query_to_use :=
Query_to_use || 'Ticketid_place1';
               ELSIF Teller = 2 THEN
Ticketid_place2 :=
Tussen_ticketid;
Query_to_use :=
'UNION'||Query_to_use || 'Ticketid_place2';
               ELSIF Teller = 3 THEN
Ticketid_place3 :=
Tussen_ticketid;
Query_to_use :=
'UNION'||Query_to_use || 'Ticketid_place3';
               ELSIF Teller = 4 THEN
Ticketid_place4 :=
Tussen_ticketid;
Query_to_use :='UNION'||
Query_to_use || 'Ticketid_place4';
               ELSIF Teller = 5 THEN
Ticketid_place5 :=
Tussen_ticketid;
Query_to_use :='UNION'||
Query_to_use || 'Ticketid_place5';
               ELSIF Teller = 6 THEN
                    Teller := Teller + 1;
               END IF;
               Teller := Teller + 1;
               Tussen_ticketid := Tussen_ticketid - 1;
          ELSIF
               Tussen_ticketid := Tussen_ticketid - 1;
          END IF;
     END LOOP;
     -- dbms_output.Put_line(Query_to_use);
     RETURN Query_to_use;
END;WHat are you trying to achive by this code? Please explain this bolded script part. I didn't see any function is using here. But, you are returning one value to where? Or may be i overlooked it. Please explain it.
Regards.
Satyaki De.

Similar Messages

  • How to get the last record from the database

    I am using MS Access database and Swings as GUI. I want to get the last record of a particular column from the table and store it as a varaible.

    Hi
    To get Last record of resultset, you have pass some parameter in constructor of CreateStatement.In such case Resultset should be scrollable and Readonly
    Example
    objStatement=objCon.createStatement ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
    mwwResultSet=cwwStatement.executeQuery(mwwSqlQuery);
    while(mwwResultSet.next())
    if(mwwResultSet.isLast())
    //Fetch the required column record.
    String abc=mwwResultSet.getString(1);
    I think this will work. Try it.
    bye

  • How to get the last record of an internall table ....

    Hi All..
    i want to get the last record of an internal table itab, and i want the the value of the last record.

    Hi,
         Use describe statment.
    data: lv_line type i.
        Describe table itab lines lv_line.
        read table itab into wa_itab index lv_line.
    regards,
    Santosh Thorat

  • How to get the last record??

    Hi, I now have to get only the last record from one table
    from MS Access.
    I was looking for the useful method from API, however,
    I cannot get it.
    How to get only the last record from one table ???
    Please help, thanks.

    In RDBMS, row order is really not relavent by iteself. Meaning there is no such thing as 'last record' unless it's in the context of a column (e.g. timeStamp).
    Of course, rows are inserted and stored in some natural order, but you cannot assume they'll come back the same way in a 'Select *' as they were entered.
    So, if you mean last row as in last inserted row, I would add a timestamp field that's set at insert, or use a autonumber column. Either way, have a column that will always contain the highest number or newest timestamp, and then you can build your where clause from that.
    For instance, in Access, I have an autonumbered field called 'fred', with other columns. If I want the last record, I simply use the following:
    select * from atable where fred in (SELECT max(fred) AS Max FROM atable);
    the 'where in' clause will filter to only those records in the subsequent select statment, which of course is only one, the max of the column fred.
    bRi

  • Getting the last record from the internal table

    When we use a READ statement it always picks up the first record which fulfill its condition but in my case I want to pick up the last record that fulfills it condition
    I have a internal table like
    id     type
    N1      A
    N1      T
    N1      A
    N1      6 ----> LAST RECORD
    my code is
    read table itab wIth key id = netobjid.
    for eg if netobjid = N1 , then I want to read the last record that corresponds to N1 ie ID N1 TYPE - 6...
    How to do that?

    HI
    actually i have done same requirement like this ...
    Take  one count variable into your internal table ..you pass the number of records into cont variable for every time  u enter the loop .
    Sort the internal table with count variable descending . ( AS we cant sort the internal table with sy-tabix)
    Then use read statement with sy-index = 1 .
    USe below logic ,............
    data  :  count  type i value '0'.
    LOOP at int .
    count = count + 1 .
    endloop.
    sort int count descending .
    read int  with  index = 1 .

  • How to get the last inserted record from a table ?

    :-) Hiee E'body
    I work on Oracle 8i and need to get the last
    record inserted in a table.
    I have tried using rownum and rowid pseudo-columns
    but that doesn't work.
    Can you please help me out ?
    :-) Have a nice time
    Vivek Kapoor.
    IT, Atul Ltd.,
    India.

    I'm not sure about 8i features.
    I assume here that you don't have 'Date-Time' stamp columns on the table which is the easiest way to determine the last inserted row in the table.
    If not try the following :-
    select address, piece, SQL_TEXT
    from V$SQLTEXT
    where upper(sql_text) like '%INSERT INTO TABLE_NAME%'
    Substiute the TABLE_NAME with the name of the actual table.
    Have fun.
    Regards,
    Shailender
    :-) Hiee E'body
    I work on Oracle 8i and need to get the last
    record inserted in a table.
    I have tried using rownum and rowid pseudo-columns
    but that doesn't work.
    Can you please help me out ?
    :-) Have a nice time
    Vivek Kapoor.
    IT, Atul Ltd.,
    India.

  • Problem getting the last database record

    I need to get the last record of my database. The only way i found to do this is to use cursor::get with DB_LAST flag.
    But using it i don't always get the last record. For instance if the database contains 5000 records i am getting record number 4864 and so on.
    What am i doing wrong?

    The DB_LAST flag is the right one to use.
    Are you sure the keys sort in the order you expect? In particular, check for little endian integers. Here is some Python code that might be instructive:
    import struct
    sorted([(struct.pack("<i", i), i) for i in xrange(5000)])[-1][1]Regards,
    Michael Cahill, Oracle Berkeley DB.

  • How to Get the last data dymanic

    in my bussiness scenarios,I have a cube store some data by month
    but some material have no records in some month
    I need to check if this month have records,get it
    or if there is no records, get the last records by month
    how can i do this?

    You check in R3...whether you have material data for that month...if yopu have data, in BW, run a repair full request by giving this criteria i.e. month criteria.
    Thanks...
    Shambhu

  • Selecting the last record from a database table

    In my ABAP Program, I have to use a select statement to retrieve the last record from the database table with the same key.  In other words, the Program will get more than one hit on the database table for the selected keys and I need to retrieve values from only the last record and not the first.  I know I can use an internal table to sort the records first and then retrieve the right value.   But to make things easier, is there a SELECT statement keyword than I can use to do this in one single step?  Thanks!

    hi,
    tables:mara.
        data: begin of it_mara occurs 0,
                matnr like mara-matnr,
                meins like mara-meins,
                mtart like mara-mtart,
                end of it_mara.
    select-options:s_matnr for mara-matnr.
    select matnr
              meins
              mtart
    from mara
    into table it_mara
    where matnr in s_matnr.
    if not it_mara[] is initial.
    sort it_mara by matnr descending.
    read table it_mara index 1.
    endif.
    then you get the last record of the select statement.
    reward points if useful,
    venkat.

  • How to get the last time a record was modified or created ?

    Is there a way (hidden system fields for example, system view, other ?) to get the last time a record of a table was modified or the date it was created.
    Thanks for any help.
    Stiphane CAMPION

    blarman74 wrote:
    I know I could do this with a trigger, but I was wondering if there is a data dictionary view I can query to find the date/time a table was last updated. What I have is a table that is constantly getting hammered with new data being uploaded from a third party. We need to keep close tabs to verify that this datafeed is constantly running and bringing in new data. Because the data that comes in comes from multiple timezones and there are hundreds of lines, our attempts at monitoring by just looking at the data leave something to be desired.
    Any ideas?refer this links
    How to find Last modified/updated time of a particular table
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1590655700346557237
    Thanks

  • How to get the first and the last record of every month within a time range in sql

    I am trying to get the first record and the last record of each and every month in a given date range using sql. I have a sample code
    where i have just selected everything within the date range now i have to extract the first and the last records of each and every month.
    SELECT PurOrderNum,
    OrderDate
    FROM Purchasing.PurOrder
    WHERE OrderDate >= '2013-02-28'
    AND OrderDate <= '2014-12-29'

    SELECT PurOrderNum,
    OrderDate
    FROM
    SELECT PurOrderNum,
    OrderDate,
    MAX(OrderDate) OVER (PARTITION BY DATEDIFF(mm,0,OrderDate)) AS MaxDate,
    MIN(OrderDate) OVER (PARTITION BY DATEDIFF(mm,0,OrderDate)) AS MinDate
    FROM Purchasing.PurOrder
    WHERE OrderDate >= '2013-02-28'
    AND OrderDate <= '2014-12-29'
    )t
    WHERE OrderDate = MaxDate
    OR OrderDate = MinDate
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How can I get the last / newest record of a table?

    Hi,
    I am developing an ecard app that has a create greeting page, a preview page with edit and send buttons and an edit page.
    I got he insert working, and on the preview page I created a master record page (displays all records), and delete all unecessary designs. Doing it this way also gives me the 'edit' button, so people are able to edit their page.
    How do I get only the last record displayed though? At the moment it loops through all records and displays them in sets of 10. I found the variable that holds the totla count of records ('$totalRows_rs7417_content1'), but how do I (re-)write the script so it ONLY diplays the last record?
    I need to get the ID of this record as I am writing this into the PARAMs of the object and embed tags of my message .swf (this picks up the ID and based on that sucks the greetings text out of the database via another php script.
    Also, from this page, how can I send an email to the sender (ie creator of the message) as well as the recipient? Both email addresses are in the databse so should be part of the erecord returned.
    Thanks,
    Nik

    -----
    OK, So how do I recreate what I got in a non-ADDT list?
    well, when you´re just about to display one certain record, the term "list" is somewhat inappropriate anyway.
    What you´d simply need to do IMHO, is using DW´s native functions to create the basic "SELECT * FROM table_name ORDEr BY ID DESC" query, add "LIMIT 1" manually, and display the desired "dynamic text" placeholders in 1 table cell -- don´t think there were any need for all the fancy stuff
    (sorting, filtering etc) provided by ADDT´s list, as it´s just 1 record.
    It also occurred to me just now that finding the last record that has been added *may-* notbe enough if the site gets used a lot by our executives (I am thinking of a situation where 2 or three peolpe create greetings at the same time and press submit and then getting each others messges rather than their own).
    in this case you might want to additionally store the respective executive´s "kt_login_id" session variable -- because it´s this unique "identifier" which should be used to show the last inserted record of the person who actually inserted it, means adding a "WHERE submitter_id" equals the session variable kt_login_id - clause to the query.
    When creating a non-ADDT list that´s at some point based on detecting a user session, you´ll BTW need to insert at line 1
    I can't seemt o insert it on the page as it is looking for a insert, update or delete bahaviour on the page which of course I don't have
    please search these forums for several posts I made which explain my "use dummy table" approach that´s made for cases when you actually don´t have anything to insert/update/delete, but need "something" for ADDT´s send email behaviours.
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Different ways to get the last 5 records ordered by date

    I have a query no that returns the tickets ordered by moddt, modification date,
    I was thinking of adding a select on top, to get the last 5 records of that list the select already generates. An other way was to use that select to create a view,
    and get the 5 last records that way. I also though of a possibly impossible cursor with a sequence, but hmm well I consider that not a good solution.
    So I'm trying to find a way, using a select, the topmost select which is not completed yet, to get the last 5 records. Maybe I should just try the rownumber thing again or something likewise.
    Select * from(
    select * from(
    Select ticketid, appliecatiecd, categorieid, substr(titel,&,200)||' ...' "titel", klantproriteitid, interneprioriteitid,
    (select g.voornaam||' '||g.naam
    from gebruiker g
    Where g.gebruikerid = t.gebruikerid
    And t.applicatiecd = NVL(:P0_applicatiecd, :F101_applicatiecd))"aangemaakt door",
    (select s.statusdefoms "status"
    From status s
    Where s.statusid = t.statusid
    And t.applicatiecd = NVL(:P0_applicatiecd, :F101_applicatiecd)) "status",
    Versieid,
    Moddt,
    Row_number() over (order by ticketid desc) rn
    From ticket t
    Where applicatiecd = NVL(:P0_applicatiecd, :F101_applicatiecd) )
    Order by moddt)
    Where --

    Hi Floris,
    You can also use RANK: http://www.dba-oracle.com/oracle_news/oracle_faq/faq_beg_sql_top_n_rows.htm
    Regards Pete

  • Getting the last active number purchasing info record

    Hi,
    I was trying to get the last active number of the purchasing info record.
    As in the ME21N, while creating a purchase order, once we have entered the material number, the system automatically returns the adequate number of the info recored, but I could't identify (through debug) which was the function module or method call used to get it.
    I will be really thankful if somebody could help.
    Thanks & regards.

    Thanks to all for your answers. I finally figured it out with the help of a functional consultant.
    To identify the last active number purchasing info record, we retreive from table EINA, and there, the field LOEKZ should be empty.
    Basically, we only have one info record number per couple material/vendor.
    Ragards

  • Getting the last added record

    Hi,
    Am developing an application that needs to record some info in a user table after adding a sales invoice. What i need is an object or method that could give me the info of the last record added in the AR invoices table, i tried using the GetNewObjectKey() but i'm not sure if this method works OK in a scenario where concurrence situations could be present, i mean in situations where multiple users could save documents at the same time, does not the method become imprecise?

    Hi Oscar,
    Have a look at the following post:
    Re: Getting the Document Number
    Hope this helps,
    Owen

  • How to get to the last record of an APEX report automatically?

    In Oracle Forms there is a "lastrec" command which can be placed after a call to a multi-row form.  The records called have the last record at the bottom of the page.  For example, if there are 100 records and there are 10 rows on the form, record numbers 91 through 100 would be showing.  Can this be done in APEX?  I have a user who wants it this way.  I set the report page up to be ordered descending, which gives her last record at the top of the page, but this is not acceptable to her.  She wants to see the last record, but she wants it at the bottom of the page. 

    Hi,
    Try this query, it should order your data as you want and the report pagination is not broken!
    The number of row displayed must be the same as the divide by value (ie. 10)
    select your_id
    from your_table
    order by trunc ((DENSE_RANK() OVER (  ORDER BY your_id desc) -1) /10)
        , DENSE_RANK() OVER (  ORDER BY your_id desc) desc;
    Page 1 displays 91 to 100
    Page 2 displays 81 to 90
    Also if your data set have 87 rows, Page 1 will display 78 to 87 (ie. the 10 last rows).
    If you want more details regarding the sorting you can have a look on this query:
    select your_id
         , trunc ((DENSE_RANK() OVER (  ORDER BY your_id desc) -1) /10)
         , DENSE_RANK() OVER (  ORDER BY your_id desc)
    from your_table
    order by 2, 3 desc;

Maybe you are looking for

  • HT5070 I bought a tv series but only getting the first episode

    I got charged for the whole season but only have one episode available to me and it's not showing up in my recently purchased file!

  • Media Sync 3.0 does not recognized my device

    I have a Blackberry 8330 with a media card installed, 4GB. I started my Blackberry Desktop and allowed it to update to the latest version, 5.01. I have used the Media sync in the past but not in a long time. When I started the Media sync it asked to

  • Exact difference between Item category and Account assignment category

    Can anyone plz give the exact difference between account assignment category and Item category Thanks inadvance

  • Dtrace on Solaris 2.6 -- ?

    I know the very notion is ridiculous. Or is it? Can someone confirm with authority that dtrace will not run on Solaris 2.6? I'm trying to rule out options in resolving some issues we're having on a legacy app. Thanks...

  • The resizing of a JTextArea

    Hi. Before I begin, I have... --Searched the forums for similar postings --Read the API for all related components --Attempted various solutions myself --Followed the Swing tutorials/trails That being said, I've got a JTextArea that gets added to a J