ITunes taking more space then it should!

Hey Apple Discussions,
I have come to you guys for a solution for the same problem for the second time...(http://discussions.apple.com/thread.jspa?threadID=1351866&tstart=0)
the first time i thought it would really work(look in the other thread about the script) but then i noticed something.
itunes isnt just music...it stores all the movies. so that resolved about 15GBs of my problem...but now i have new amount of problem
iTunes shows that I have 19.69GB of music(that shows at the bottom of the application) and 9.98Gb of movies, which totals to 29.67GB. But when i right click on the itunes folder to "get info" it shows i have 35.39GB
can anyone help me out on this problem? i have a wierd thing about freeing space on my computer

Try this -> List Music Folder Files Not Added v2.0
"This script recursively searches user-selected folders for files not added to iTunes and creates a text file listing their file"

Similar Messages

  • Why is my Time Machine Backup Taking More Space then my Hard Drive?

    I have a Late-2009 MacBook model with a 250GB hard drive.  My external drive is 1TB.  I use it for Time Machine backups as well as other storage.  My backups on that drive are a bit less then 900GB, which is 90% of that disk.  My hard drive is only 250GB so how is it over 3 times as large?  I would like to have more storage for other files.  What would you recomend doing?  Can I partition the external disk?

    How time machine works is that it makes an initial back up and from there it scans your system for changes.  When it finds a change it adds the changes on top of your current backup. So if you have a folder full of pictures then rename them or change them, etc it'll resave/archive the pictures ontop of what it already backed up.  It doesn't keep a single "state" of backup.  This allows you to "look back in time" and see if you can find something you might have accidentally changed or deleted or etc.  Once the disk becomes full it will delete the oldest backups to keep archiving newer files.
    I would suggest that you partition your external drive to a size that allows you to keep free the desired extra storage space you're looking to use.  For example partition the drive to two 500GB partitions one for storage one for time machine.

  • FAST REFRESH OF MV IS TAKING MORE TIME THEN COMPLETE REFRESH IN PRODUCTION

    Hi
    We have production enviroment in which FAST REFRESH OF MV IS TAKING MORE TIME THEN COMPLETE REFRESH. Can you tell me what are the differences between this refreshes?
    Regards,
    RJ.

    Sure:
    create table emp (id number(9));
    Table created.
    SQL> alter table emp add primary key (id);
    Table altered.
    create materialized view log on emp;
    Materialized view log created.
    create materialized view emp_mv as select * from emp;
    Materialized view created.
    Complete refresh:
    SQL> exec dbms_snapshot.refresh('EMP_MV','C');
    PL/SQL procedure successfully completed.
    Fast Refresh:
    SQL> exec dbms_snapshot.refresh('EMP_MV','F');
    PL/SQL procedure successfully completed.
    This is the basic setup. There are many more options to the create materialized view statement, just FYI.
    Idan.

  • Itunes taking more time to Sync after IOS 6 upgrade

    itunes taking more time to Sync apps data after IOS 6 upgrade in iphone 4s. Also itunes is getting hanged and is very slow. I tried twice and still having the same issue.

    I also noticed that. Even with a cable connection. Just a small pdf file hangs forever.
    Forever ... 12/15 seconds maybe? It's a long time really, for such a small sync.
    File transfer not so much! That behaves normally here, as one would expect with iOS5 and previous versions before iTunes 10.7.
    It's the first steps. Doing whatever it is doing. Those are definitely slower now. It takes a while until it starts the actual transfer.

  • Layout taking more space than necessary...

    Hi folks...my applet has two panels inside it arranged in a flowlayout. The first panel is a 5 row x 1 col gridlayout, and the second is working fine. The problem with the first one is that that it is taking more space than necessary and going out the bottom of the applet. Now if I do this in appletviewer, resizing the window by a few pixels will make it relayout the panel and everything looks fine, but of course you can't ask people to do that =) What's the problem here? I've tried validating both the applet and the problem panel, and tried invalidating it first. Any ideas? thanks!

    Here is the first half of it...it has all the relevant info. I took out the validate stuff 'cause it wasn't helping.
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Hashtable;
    public class Spit extends Applet implements KeyListener {
         Hashtable images = new Hashtable();
         CardPacket myPacket;
         PlayerCardPile[] myPiles;
         Hand myHand;
         CardPacket oppPacket;
         PlayerCardPile[] oppPiles;
         Hand oppHand;
         MainCardPile[] mainPiles;
         CardPile takenFrom;
         private final int WIDTH = 700;
         private final int HEIGHT= 800;
         Graphics offscreen;
         Image image;
         ChatPanel theChatPanel = new ChatPanel(this);
         public final int HAND = -1;
         public final int PACKET = -2;
         public final int LEFT_MAIN_PILE = 0;
         public final int RIGHT_MAIN_PILE = 1;
         boolean pendingMainPileMove = false;
         Panel gameSpace = new Panel();
         public void init() {
              loadImages();
              initPiles();
              placePiles();
              addKeyListener( this );
              myPacket.addKeyListener( this );
              mainPiles[0].addKeyListener( this );
              mainPiles[1].addKeyListener( this );
              for( int i = 0 ; i < 5 ; i++ )
                   myPiles.addKeyListener( this );
              image = createImage( WIDTH, HEIGHT );
              offscreen = image.getGraphics();
              myPacket.requestFocus();
         public void loadImages() {
              MediaTracker t = new MediaTracker(this);
              for( int i = Card.CLUB; i <= Card.SPADE ; i++ )
                   for( int j = Card.ACE; j <= Card.KING; j++ )
                        images.put( Card.toString(i,j),
                             getImage(getCodeBase(),"images/"+Card.toString(i,j)+".gif") );
              images.put( "back", getImage(getCodeBase(),"images/back.gif") );
              // wait for all images to finish loading
              try {
                   t.waitForAll();
              }catch (InterruptedException e) {}
              // check for errors //
              if (t.isErrorAny()) {
                   showStatus("Error Loading Images!");
              else if (t.checkAll()) {
                   showStatus("Images successfully loaded");
         public void dealNewGame() {
              emptyPiles();
              Deck theDeck = new Deck( images );
              for( int i = 0 ; i < 26 ; i++ )
                   oppPacket.add( theDeck.getCard(i) );
              for( int i = 26 ; i < 52 ; i++ )
                   myPacket.add( theDeck.getCard(i) );
              theChatPanel.sendCardPackets( oppPacket.toString() , myPacket.toString() );
              dealMyPacket();
              dealOppPacket();
              repaint();
         public void dealMyPacket() {
              for( int i = 0 ; i < 5 && myPacket.numCards() > 0 ; i++ ) {
                   for( int j = i ; j < 5 && myPacket.numCards() > 0 ; j++ ) {
                        Card temp = myPacket.remove();
                        if( j == i )
                             temp.flip();
                        myPiles[j].deal( temp );
                   myPiles[i].repaint();
         public void dealOppPacket() {
              for( int i = 0 ; i < 5 && oppPacket.numCards() > 0 ; i++ ) {
                   for( int j = i ; j < 5 && oppPacket.numCards() > 0 ; j++ ) {
                        Card temp = oppPacket.remove();
                        if( j == i )
                             temp.flip();
                        oppPiles[j].deal( temp );
                   oppPiles[i].repaint();
         public void setPackets( String strMyPack , String strOppPack ) {
              emptyPiles();
              myPacket.replaceWith( CardPacket.parseString( strMyPack , images ) );
              oppPacket.replaceWith( CardPacket.parseString( strOppPack , images ) );
              dealMyPacket();
              dealOppPacket();
         public void setOppPacket( String strOppPack ) {
              String strMyPack = myPacket.toString();
              emptyPiles();
              myPacket.replaceWith( CardPacket.parseString( strMyPack , images ) );
              oppPacket.replaceWith( CardPacket.parseString( strOppPack , images ) );
              dealMyPacket();
              dealOppPacket();
         public void emptyPiles() {
              myPacket.makeEmpty();
              oppPacket.makeEmpty();
              myHand.makeEmpty();
              oppHand.makeEmpty();
              for( int i = 0 ; i < 5 ; i++ ) {
                   myPiles[i].makeEmpty();
                   oppPiles[i].makeEmpty();
              mainPiles[0].makeEmpty();
              mainPiles[1].makeEmpty();
         public void initPiles() {
              myPacket = new CardPacket();
              myPiles = new PlayerCardPile[5];
              myHand = new Hand();
              oppPacket = new CardPacket();
              oppPiles = new PlayerCardPile[5];
              oppHand = new Hand();
              mainPiles = new MainCardPile[2];
              for( int i = 0 ; i < 5 ; i++ ) {
                   oppPiles[i] = new PlayerCardPile();
                   myPiles[i] = new PlayerCardPile();
              mainPiles[0] = new MainCardPile();
              mainPiles[1] = new MainCardPile();
         public void placePiles() {
              Panel row1 = new Panel();
              row1.add( (Component)oppHand );
              row1.add( (Component)oppPacket );
              Panel row2 = new Panel();
              for( int i = 4 ; i >= 0 ; i-- )
                   row2.add((Component)oppPiles[i]);
              Panel row3 = new Panel();
              row3.add( mainPiles[0] = new MainCardPile() );
              row3.add( mainPiles[1] = new MainCardPile() );
              Panel row4 = new Panel();
              for( int i = 0 ; i < 5 ; i++ )
                   row4.add((Component)myPiles[i]);
              Panel row5 = new Panel();
              row5.add((Component)myPacket);
              row5.add((Component)myHand);
              gameSpace.setLayout( new GridLayout(5,1) );
              gameSpace.add(row1);
              gameSpace.add(row2);
              gameSpace.add(row3);
              gameSpace.add(row4);
              gameSpace.add(row5);
              this.add( gameSpace );
              this.add( theChatPanel );
              this.setBackground( Color.white );
              gameSpace.setBackground( Color.white );
              theChatPanel.setBackground( Color.white );
    public void paint( Graphics g ) {
              super.paint( offscreen );
              offscreen.setColor(Color.white);
              offscreen.fillRect(0,0,WIDTH,HEIGHT);
              g.drawImage(image,0,0,this);

  • Movie files take up more space than they should

    Hi! I'm new to iDVD, and I wanted to take about 20 .mp4 files and put them on a DVD that a DVD player hooked to my TV will be able to read. The combined size of all the files is under 4GB and will fit on a burnable DVD. But when I drag them into iDVD, it only lets me have like 5 before it says it is full. Why is this happening? Why should the video take up more space than the file's actual size? If anyone can help, I'd appreciate it!

    iDVD works on time and NOT on RAW file size!!
    All video is converted to MPG-2 by the encoding process in iDVD. With a single layer disc, you can get UP TO 60 minutes of content in Best Performance mode and UP TO 120 minutes in Best Quality mode.

  • "Other" option in storage is taking more space..

    Is it normal that from the very first time I open my macbook pro after operating system reinstallation is that the "Other" option in storage is already taking up more space? Now, I have 4.1 MB Audio, 42.3 MB Movies, 115.4 MB Photos, 1.1 GB Apps, 0KB Backups, and 9.12 GB OTHER... (This is right after the Mac OS X v 10.7.3 reinstallation.
    Some advice please...
    Thanks..

    I see.. Thank you...

  • Songs taking up more space than they should?

    Well, I have an iPod mini & I have 149 songs on my iTunes, but it says its taking up 3.04 GB I pretty sure it shouldn't, but does anyone know if this is normal and if I can fix it? I don't have any artwork or anything either.

    You might want to convert them all to Apple Lossless instead of MP3's or WAV's or whatever. I haven't noticed any loss of sound quality on any of my music and the files are really compact. Worst case is at some point in the future, I go back and reimport my CD's if I think the sound quality's then better. Also - when you do that - convert - it'll have two copies of the songs in your library. The original & the converted version. You can either leave them both showing in your iTunes library, or move the larger versions out to another location. Just have the library show you duplicates, add a column for size or type, and select the larger versions & click Delete. It'll ask you if you want to send the files to the recycle bin or leave them on your hard disk - that's your call. I'd probably be inclined to leave them all right there - if you need the bigger copy at some point, just navigate to the folder in your iTunes folder using Windows Explorer or similar and you'll see both versions. But iTunes and your iPod will only see the more compact converted versions.

  • ADOBE AN ABSOLUTE DISCGRACE OF A COMPANY TAKING MORE MONEY THAN THEY SHOULD OFF MY ACCOUNT EVERY MON

    I have been having major issues with my Adobe Creative Cloud Account.  The problem started when I had a normal subscription, then upgraded to Team for additional space.  Due to changes in my team I reverted back to normal subscription 3 months later.  I had hoped that I could just update my monthly subscription to one subscription... but No!!  Adobe said I couldnt restart my normal subscription and I had to start a new one, so I did.  I then tried to cancel my Team subscription and they say every month that they have.  Yet every month I still get charged for it along with my new and old normal subscriptions. (3 CC Payments per month)
    I have tried cancelling my Adobe Creative Cloud Subscrition for 5 months.  Time and time again Adobe keep saying that its cancelled and every month I get charged.  I have to go through support and battle for refunds and spend hours of my time speaking to overseas support operators going over the same stupid things.
    Adobe support is hopeless and I have raised over 10 support cases to sort this and well over 15 hours of my time to rectify the situation.  Time and Time again Adobe escalate it, say they have fixed then every month I get billed for my Team on the 8th of the month then billed for 2 x normal subscriptions on the 18th of every month.
    It has now got to the stage that I am sick of support and I need to look at alternatives to sort this.  My bank cant cancel it because it is not a direct debit or a standing order.  Adobe has my card details and it lies with them to cancel it.  The only option the bank said I can choose is to cancel my cards.
    Adobe Can you please cancel my Adobe please.  I wish to cancel everything as I have had enough.
    Here are all my support cases trying to cancel.
    #0210696665
    #0210598930
    #0210656123
    #021065 4488
    #0210119710
    #0210386192
    #0210385224
    #02103852 20
    #0210385197
    #0210270656
    #0210217642
    #0210042906
    #0210210299
    #0209901892
    You will get my details from those
    Looking forward to your response

    Ken G. Rice wrote:
    @W_J_T and Aegis Kleais - I deleted the original post from W_J_T: "Sad isn't it. To bad Adobe could not be more professional via the conventional methods you tried. Welcome to the Creative Cloud utopia going forward. Buckle up people, brace yourselves."
    I hardly feel my original comment was out of line given Adobe's failure on the matter being discussed in this thread.
    Ken G. Rice wrote:
    If a customer has a problem please post a helpful response.
    In all honesty that's a rather audacious comment in and of itself, look at the original post and what they stated.
    Billygunn111 wrote:
    - ADOBE AN ABSOLUTE DISCGRACE OF A COMPANY...
    - I have been having major issues with my Adobe Creative Cloud Account.
    - I have tried cancelling my Adobe Creative Cloud Subscrition for 5 months.
    - Adobe support is hopeless and I have raised over 10 support cases to sort this and well over 15 hours of my time to rectify the situation.
    - Here are all my 14 support cases trying to cancel.
    #0210696665
    #0210598930
    #0210656123
    #021065 4488
    #0210119710
    #0210386192
    #0210385224
    #02103852 20
    #0210385197
    #0210270656
    #0210217642
    #0210042906
    #0210210299
    #0209901892
    Did Adobe use a similar approach of "If a customer has a problem please "provide" (post) a helpful response." I mean come on, my comment was in direct correlation to the topic at hand, the customer tried conventional methods and Adobe failed repeatedly and miserably by conventional methods. The customer then caused public noise, Adobe wanted no bad PR and finally took action. 14 support tickets over 5 months before posting on a public forum and "finally" getting help? So is that considered a professional approach to "customer support" by a corporation dealing with its "flagship" offering to a customer? This is not the first instance of this either, one merely has to search the forum to find similar issues regarding similar situations.
    This is what is considered by Adobe as "A customer has a problem and providing help?" Really, 5 months and 14 support tickets, then needing to post what should be a private business matter publicly on a public forum for resolution?

  • Query taking more time then required.

    I have aquery which is taking is taking 8-9 min to retrieve data. It contain 27,000 rows. pls tell me how can i optimize this query.
    SELECT DEPO_CODE,
    DEPO_NAME,
    DEPO_LOCAL_NAME,
    CIRCLE_ID,
    CIRCLE_CODE,
    CIRCLE_NAME,
    CIRCLE_LOCAL_NAME,
    VILLAGE_ID,
    VILLAGE_CODE,
    VILLAGE_NAME,
    VILLAGE_LOCAL_NAME,
    MEM_ID,
    MEM_CODE,
    MEM_NAME,
    MEM_LOCAL_NAME,
    MEM_TYPE,
    Mem_typ_srno,
    AMOUNT,
    SHARE_AMT,
    TONNAGE,
    (NVL(AMOUNT, 0)) - (NVL(SHARE_AMT, 0)) Balance
    FROM (SELECT D.DP_TYPE_CODE DEPO_CODE,
    D.DP_TYPE_NAME DEPO_NAME,
    D.DP_TYPE_NAME_LOCAL DEPO_LOCAL_NAME,
    G.GUT_ID CIRCLE_ID,
    G.GUT_CODE CIRCLE_CODE,
    G.GUT_NAME CIRCLE_NAME,
    G.LOCAL_GUT_NAME CIRCLE_LOCAL_NAME,
    V.VILLAGE_ID VILLAGE_ID,
    V.VILLAGE_CODE VILLAGE_CODE,
    V.VILLAGE_NAME VILLAGE_NAME,
    V.LOCAL_VILLAGE_NAME VILLAGE_LOCAL_NAME,
    M.FAAM_ID MEM_ID,
    M.FAAM_CODE MEM_CODE,
    M.FAAM_NAME MEM_NAME,
    M.FAAM_LOCAL_NAME MEM_LOCAL_NAME,
    decode(T.MEMBER_TYPE,
    'Y',
    'ºÉ¦ÉɺÉnù',
    'N',
    'ʤÉMÉ®ú-ºÉ¦ÉɺÉnù',
    'G',
    'MÉä]õEòäxÉ',
    'D',
    'Êb÷{ÉÉìÊZÉ]õ®') MEM_TYPE,
    decode(T.MEMBER_TYPE, 'Y', 1, 'N', 2, 'D', 3, 'G', 4) Mem_typ_srno,
    SUM(NVL(T.AMOUNT, 0)) AMOUNT,
    NULL SHARE_AMT,
    T.TONAGE TONNAGE
    FROM CANE_DEPOSIT_TRN T,
    CANE_DEPOSITE_TYPE_MST D,
    FA_ACT_MST M,
    VILLAGE_MST V,
    GUT_MST G
    WHERE T.ACC_ID = M.FAAM_ID
    AND T.DEPOSIT_TYPE_ID = D.DP_TYPE_ID
    AND M.FAAM_VILLAGE = V.VILLAGE_ID(+)
    AND V.GUT_ID = G.GUT_ID(+)
    AND T.TRDATE BETWEEN NVL(&P_FROM_DATE, T.TRDATE) AND
    NVL(&P_TO_DATE, T.TRDATE)
    AND T.MEMBER_TYPE = NVL(&p_grower_type_id, T.MEMBER_TYPE)
    AND M.FAAM_ID = NVL(&P_ACC_ID, M.FAAM_ID)
    AND D.DP_TYPE_ID = NVL(&P_DEPOSITE_TYPE_ID, D.DP_TYPE_ID)
    AND T.COMPANY = &P_COMPANY_ID
    AND T.BRANCH = &P_BRANCH_ID
    AND G.GUT_ID = NVL(&p_gut_id, G.GUT_ID)
    and v.village_id = nvl(&p_village_id, V.VILLAGE_ID)
    GROUP BY D.DP_TYPE_CODE,
    D.DP_TYPE_NAME,
    D.DP_TYPE_NAME_LOCAL,
    G.GUT_ID,
    G.GUT_CODE,
    G.GUT_NAME,
    T.MEMBER_TYPE,
    G.LOCAL_GUT_NAME,
    V.VILLAGE_ID,
    V.VILLAGE_CODE,
    V.VILLAGE_NAME,
    V.LOCAL_VILLAGE_NAME,
    M.FAAM_ID,
    M.FAAM_CODE,
    M.FAAM_NAME,
    M.FAAM_LOCAL_NAME,
    M.MEMBER_TYPE,
    T.TONAGE
    UNION ALL
    SELECT D.DP_TYPE_CODE DEPO_CODE,
    D.DP_TYPE_NAME DEPO_NAME,
    D.DP_TYPE_NAME_LOCAL DEPO_LOCAL_NAME,
    G.GUT_ID CIRCLE_ID,
    G.GUT_CODE CIRCLE_CODE,
    G.GUT_NAME CIRCLE_NAME,
    G.LOCAL_GUT_NAME CIRCLE_LOCAL_NAME,
    V.VILLAGE_ID VILLAGE_ID,
    V.VILLAGE_CODE VILLAGE_CODE,
    V.VILLAGE_NAME VILLAGE_NAME,
    V.LOCAL_VILLAGE_NAME VILLAGE_LOCAL_NAME,
    M.FAAM_ID MEM_ID,
    M.FAAM_CODE MEM_CODE,
    M.FAAM_NAME MEM_NAME,
    M.FAAM_LOCAL_NAME MEM_LOCAL_NAME,
    NULL MEM_TYPE,
    NULL Mem_typ_srno,
    NULL AMOUNT,
    SUM(NVL(S.AMOUNT, 0)) SHARE_AMT,
    NULL TONNAGE
    FROM CANE_DEPOSIT_TRF_TO_SHARE S,
    CANE_DEPOSITE_TYPE_MST D,
    FA_ACT_MST M,
    VILLAGE_MST V,
    GUT_MST G
    WHERE S.ACC_ID = M.FAAM_ID
    AND S.DEPOSIT_TYPE_ID = D.DP_TYPE_ID
    AND M.FAAM_VILLAGE = V.VILLAGE_ID(+)
    AND V.GUT_ID = G.GUT_ID(+)
    AND S.TRDATE BETWEEN NVL(&P_FROM_DATE, S.TRDATE) AND
    NVL(&P_TO_DATE, S.TRDATE)
    AND M.FAAM_ID = NVL(&P_ACC_ID, M.FAAM_ID)
    AND D.DP_TYPE_ID = NVL(&P_DEPOSITE_TYPE_ID, D.DP_TYPE_ID)
    AND S.COMPANY = &P_COMPANY_ID
    AND S.BRANCH = &P_BRANCH_ID
    AND G.GUT_ID = NVL(&p_gut_id, G.GUT_ID)
    and v.village_id = nvl(&p_village_id, V.VILLAGE_ID)
    GROUP BY D.DP_TYPE_CODE,
    D.DP_TYPE_NAME,
    D.DP_TYPE_NAME_LOCAL,
    G.GUT_ID,
    G.GUT_CODE,
    G.GUT_NAME,
    G.LOCAL_GUT_NAME,
    V.VILLAGE_ID,
    V.VILLAGE_CODE,
    V.VILLAGE_NAME,
    V.LOCAL_VILLAGE_NAME,
    M.FAAM_ID,
    M.FAAM_CODE,
    M.FAAM_NAME,
    M.FAAM_LOCAL_NAME,
    M.MEMBER_TYPE)
    ORDER BY Mem_typ_srno, DEPO_CODE, CIRCLE_ID, VILLAGE_ID, MEM_NAME

    Maybe
    when using if-parameter-is-null-then-all approach and parameters are mostly not null pushing predicates can substantially reduce the number of rows to join (to an extent where indexes are not really necessary).
    Could not be of any help as the Optimizer is very good at predicate pushing and might have seen to it already.
    Rewritten to ANSI join syntax
    <tt>
    WHERE S.ACC_ID = M.FAAM_ID
      AND S.DEPOSIT_TYPE_ID = D.DP_TYPE_ID
      AND M.FAAM_VILLAGE = <b><font color="red">V</font>.VILLAGE_ID<font color="red">( + )</font></b>
      AND <b><font color="red">V</font>.GUT_ID</b> = <b><font color="blue">G</font>.GUT_ID<font color="blue">( + )</font></b>
    </tt>
    being suspicious about the combination as above
    select depo_code,depo_name,depo_local_name,
           circle_id,circle_code,circle_name,circle_local_name,
           village_id,village_code,village_name,village_local_name,
           mem_id,mem_code,mem_name,mem_local_name,
           mem_type,mem_typ_srno,
           amount,share_amt,tonnage,
           (nvl(amount, 0)) - (nvl(share_amt, 0)) balance
      from (select d.depo_code,d.depo_name,d.depo_local_name,
                   g.circle_id,g.circle_code,g.circle_name,g.circle_local_name,
                   v.village_id,v.village_code,v.village_name,v.village_local_name,
                   m.mem_id,m.mem_code,m.mem_name,m.mem_local_name,
                   t.mem_type,t.mem_typ_srno,
                   sum(t.amount) amount,to_number(null) share_amt,t.tonage
              from (select acc_id,deposit_type_id,amount,tonnage,
                           decode(member_type,'Y','oɦÉÉoÉnu','N','E¤ÉMÉ®ú-oɦÉÉoÉnu','G','MÉä]oEoäxÉ','D','Eb÷{ÉÉiEZÉ]o®') mem_type,
                           decode(member_type,'Y',1,'N',2,'D',3,'G',4) mem_typ_srno,
                      from cane_deposit_trn
                     where trdate between nvl(&p_from_date,trdate) and nvl(&p_to_date,trdate)
                       and member_type = nvl(&p_grower_type_id,member_type)
                       and company = &p_company_id
                       and branch = &p_branch_id
                   ) t
                   join
                   (select dp_type_id,dp_type_code depo_code,dp_type_name depo_name,dp_type_name_local depo_local_name
                      from cane_deposite_type_mst
                     where dp_type_id = nvl(&p_deposite_type_id,dp_type_id)
                   ) d
                on t.deposit_type_id = d.dp_type_id
                   join
                   (select faam_id,faam_village,faam_id mem_id,faam_code mem_code,faam_name mem_name,faam_local_name mem_local_name,member_type
                      from fa_act_mst
                     where m.faam_id = nvl(&p_acc_id,m.faam_id)
                   ) m
                on m.faam_id = t.acc_id
                   left join
                   (select village_id,gut_id,village_code,village_name,local_village_name village_local_name
                      from village_mst
                     where v.village_id = nvl(&p_village_id,village_id)
                   ) v
                on m.faam_village = v.village_id
                   left join
                   (select gut_id circle_id,gut_code circle_code,gut_name circle_name,local_gut_name circle_local_name
                      from gut_mst
                     where g.gut_id = nvl(&p_gut_id,g.gut_id)
                   ) g
                on v.gut_id = g.gut_id
             group by d.depo_code,d.depo_name,d.depo_local_name,
                      g.circle_id,g.circle_code,g.circle_name,
                      t.mem_type,
                      g.circle_local_name,
                      v.village_id,v.village_code,v.village_name,v.village_local_name,
                      m.mem_id,m.mem_code,m.mem_name,m.mem_local_name,m.member_type,
                      t.tonage
            union all
            select d.depo_code,d.depo_name,d.depo_local_name,
                   g.circle_id,g.circle_code,g.circle_name,g.circle_local_name,
                   v.village_id,v.village_code,v.village_name,v.village_local_name,
                   m.mem_id,m.mem_code,m.mem_name,m.mem_local_name,
                   null mem_type,null mem_typ_srno,null amount,
                   sum(s.amount) share_amt,null tonnage
              from (select acc_id,deposit_type_id,amount
                      from cane_deposit_trf_to_share
                     where trdate between nvl(&p_from_date,trdate) and nvl(&p_to_date,trdate)
                       and s.company = &p_company_id
                       and s.branch = &p_branch_id
                   ) s
                   join
                   (select dp_type_id,dp_type_code depo_code,dp_type_name depo_name,dp_type_name_local depo_local_name
                      from cane_deposite_type_mst
                     where dp_type_id = nvl(&p_deposite_type_id,dp_type_id)
                   ) d
                on s.deposit_type_id = d.dp_type_id
                   join
                   (select faam_id mem_id,faam_village,faam_code mem_code,faam_name mem_name,faam_local_name mem_local_name,member_type
                      from fa_act_mst
                     where faam_id = nvl(&p_acc_id,faam_id)
                   ) m
                on m.faam_id = s.acc_id
                   left join
                   (select village_id,gut_id,village_code,village_name,local_village_name village_local_name
                      from village_mst
                     where village_id = nvl(&p_village_id,village_id)
                   ) v
                on m.faam_village = v.village_id
                   left join
                   (select gut_id circle_id,gut_code circle_code,gut_name circle_name,local_gut_name circle_local_name
                      from gut_mst
                     where gut_id = nvl(&p_gut_id,gut_id)
                   ) g
                on v.gut_id = g.gut_id
             group by d.depo_code,d.depo_name,d.depo_local_name,
                      g.circle_id,g.circle_code,g.circle_name,g.circle_local_name,
                      v.village_id,v.village_code,v.village_name,v.village_local_name,
                      m.mem_id,m.mem_code,m.mem_name,m.mem_local_name,m.member_type
    order by mem_typ_srno,depo_code,circle_id,village_id,mem_nameRegards
    Etbin

  • Fixed size thread pool excepting more tasks then it should

    Hello,
    I have the following code in a simple program (code below)
              BlockingQueue<Runnable> q = new ArrayBlockingQueue<Runnable>(10, false);
              ThreadPoolExecutor newPool = new ThreadPoolExecutor(1, 10, 20, TimeUnit.SECONDS, q);
    for (int x = 0; x < 30; x++) {
    newPool.execute(new threaded());
    My understanding is that this should create a thread pool that will accept 10 tasks, once there have been 10 tasks submitted I should get RejectedExecutionException, however; I am seeing that when I execute the code the pool accepts 20 execute calls before throwing RejectedExecutionException. I am on Windows 7 using Java 1.6.0_21
    Any thoughts on what I am doing incorrectly?
    Thanks
    import java.util.concurrent.*;
    public class ThreadPoolTest {
         public static class threaded implements Runnable {
              @Override
              public void run() {
                   System.out.println("In thread: " + Thread.currentThread().getId());
                   try {
                        Thread.sleep(5000);
                   } catch (InterruptedException e) {
                        System.out.println("Thread: " + Thread.currentThread().getId()
                                  + " interuptted");
                   System.out.println("Exiting thread: " + Thread.currentThread().getId());
         private static int MAX = 10;
         private Executor pool;
         public ThreadPoolTest() {
              super();
              BlockingQueue<Runnable> q = new ArrayBlockingQueue<Runnable>(MAX/2, false);
              ThreadPoolExecutor newPool = new ThreadPoolExecutor(1, MAX, 20, TimeUnit.SECONDS, q);
              pool = newPool;
         * @param args
         public static void main(String[] args) {
              ThreadPoolTest object = new ThreadPoolTest();
              object.doThreads();
         private void doThreads() {
              int submitted = 0, rejected = 0;
              for (int x = 0; x < MAX * 3; x++) {
                   try {
                        System.out.println(Integer.toString(x) + " submitting");
                        pool.execute(new threaded());
                        submitted++;
                   catch (RejectedExecutionException re) {
                        System.err.println("Submission " + x + " was rejected");
                        rejected++;
              System.out.println("\n\nSubmitted: " + MAX*2);
              System.out.println("Accepted: " + submitted);
              System.out.println("Rejected: " + rejected);
    }

    I don't know what is wrong because I tried this
    public static void main(String args[])  {
        BlockingQueue<Runnable> q = new ArrayBlockingQueue<Runnable>(10, false);
        ThreadPoolExecutor newPool = new ThreadPoolExecutor(1, 10, 20, TimeUnit.SECONDS, q);
        for (int x = 0; x < 100; x++) {
            System.err.println(x + ": " + q.size());
            newPool.submit(new Callable<Void>() {
                @Override
                public Void call() throws Exception {
                    Thread.sleep(1000);
                    return null;
    }and it printed
    0: 0
    1: 0
    2: 1
    3: 2
    4: 3
    5: 4
    6: 5
    7: 6
    8: 7
    9: 8
    10: 9
    11: 10
    12: 10
    13: 10
    14: 10
    15: 10
    16: 10
    17: 10
    18: 10
    19: 10
    20: 10
    Exception in thread "main" java.util.concurrent.RejectedExecutionException
         at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(ThreadPoolExecutor.java:1768)
         at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:767)
         at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:658)
         at java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:92)
         at Main.main(Main.java:36)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.intellij.rt.execution.application.AppMain.main(AppMain.java:115)Ihave Java 6 update 24 on Linux, but I don't believe this should make a difference. Can you try my code?

  • Trimmed video taking more space!!!!?!!

    I Have a 16GB iPhone 6 & it was pretty full earlier this week so I decided to do my regular "i need room to update" routine & began deleting stuff which is hard because it's all stuff like pictures I really liked and apps I truly use (but get back after I get the update so it's okay). Anyways so I decided since I can't delete any videos I'll trim some and save them as the original  to get rid of space but apparently that takes up a TON of space!!!! So now my phone doesnt have any space and I'm just angry and I want to know why it does that/can I fix it?? ..I'm so close to going back to android over this
    & let's not forget the 1000+ pics & 40+ vids I don't actually have on my phone that it says I do (no changing the date does NOT work)

    Hey johnboy813,
    Thanks for the question. Your issue is similar to the symptoms outlined in the following resource. The troubleshooting steps may provide a solution:
    iOS: "Not enough free space" alert when trying to sync
    http://support.apple.com/kb/TS1503
    Thanks,
    Matt M.

  • Hi, everytime i try to download tv shows, movies, anything really, it says my Macbook Pro is out of memory... so i erased tons of stuff and went back, it still says there is no more space. What should i do?

    I was wondering if there might be a second version of all files stored somewhere that could take up space, if not i dont know what to do...

  • QR code occupying more space around the barcode

    Hi,
    I am creating a new form with 7 barcodes of type Paper forms Barcode(QR code). I have two problem in this...
    1) I am giving the same width and height for all the barcodes. But in the final output the size differes for all. two are of one size, other two are of other size and other 3 are of different size.
    2) And for the QR code it is taking more space around the barcode where the form is looking odd with more empty space?
    So, How to make all the barcodes of same size?

    Hi All,
    Frequently we are facing the issue with memory dump files which will creating space issue on the drive...
    Each dump file occupying around 100 or 200 MB and it will creating every 1 mint..
    please let us know how to resolve the issue.
    Thanks,
    Subbu
    Thanks, Subbu
    Hello,
    As per me memory dumps are generated when fatal error occurs.
    How to avoid it ? See below
    1. Please apply latest Service pack as well as cumulative update .If you still receive this dumps please open a case with Microsoft and allow them to analyze the dumps
    2. Generally a SQL server not patched to latest SP or CU can cause this issue.
    Hope this helps
    Out of curiosity..can you post one of the dumps ,what is output of below query
    select @@version
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • I have MBP 13 late 2011:Will it be able to support a 3tb hardisk?Secondly, if i delete a song from itunes,is that song removed from the mac and is the space freed up?If not then what should I do to free up space when i delete songs from itunes?

    I have MBP 13 late 2011:
    Will it be able to support a 3tb hardisk?
    Secondly, if i delete a song from itunes,is that song removed from the mac and is the space freed up?If not then what should I do to free up space when i delete songs from itunes?

    Your MBP will support a 3T HDD provided it is formatted correctly and has sufficient power.  Most large HDDs require an outboard power source.
    When you delete songs from iTunes you will get a message if you want to send it to trash.  If you send it to trash, space will be freed up only when you empty trash.  An individual song does not consume much space so if your HDD is becoming full, more drastic action s should be considered, such as moving an entire file to an external HDD.
    Ciao.

Maybe you are looking for

  • How do I fix this error? "Could not complete your request because DynamicLink is not available?

    I am trying to open a video to edit in CS6 and I get this error: Could not complete your request because DynamicLink is not available I read on one of these formus that I should uninstall and reinstall the program. I tried to uninstall the program an

  • Time out problem in BPS

    BPS friends, We have a planning function to copy Versions based with some filters. The copy function takes 5 hours and times out after that. The function is reaching max buffer size as recommended by SAP so we cant increase the buffer size anymore. W

  • Getting ora-00904 BLOB_CONTENT invalid identifier. Help please.

    Hi everyone, I am trying to upload a .jpg file into a custom table with the follwong code: DECLARE v_id number; v_length number; v_name varchar2(4000); v_mime varchar2(4000); v_blob blob; begin If (:P_F01 is not null) then select ID,mime_type,blob_co

  • Hard Drive Hum on brand new IMac i5

    All, Just settling in with my new IMac, and a very noticeable, persistent hum comes from the machine. It is not read/write noises, but very clearly it is the 2tb Hitachi Drive (Hitachi HDS722020ALA330) making the majority of the noise (I can hear the

  • [SOLVED] List of configuration files of a package.

    Some files belonging to a package are treated as configuration files (management of *.pacnew and *.pacsave). How can I have the list of files belonging to a package that pacman consider as configuration files? [Edited] @tomk: Thanks, didn't have in m