How to handle large library, limited data plan

I've been using Itunes Match for about six months now, and I'm having problems...
I live rurally and so I use an AT&T hotspot with a 10 gig/month data plan for my phone, ipad, and desktop mac. My wireless connection speed is pretty good.
I have about 15000 tracks in my Itunes library, most not purchased through Itunes.
When I signed up for Match and went through the initial process, it took about 24 hours and used up about six gig, which caused a significant overage in my data plan. Consequently, I just use Match on my Mac and decided not to use it on my other devices because of the data limitations. My motivation to use it currently is as a back up for my music. I connect my phone to my mac manually to transfer some of my music to my phone.
I figured that the data overuse problem was a one time deal if I didn't use my other devices.
But recently, when I purchase a song from emusic or Amazon, the icloud processing image pops up after the download purchase is complete. Itunes will then start the process of sending data to Amazon, which was still going at 4 hours yesterday when I manually stopped it as I saw my data plan being used up. It seemed to restart the process of sending periodically and never got to the analyzing or returning data stages.
Now my recently purchased music shows up with both the Icloud processing symbol and a faded download icloud icon, one for each separate track. I can play the "processing" track, but Itunes won't allow me to add it to a playlist. Further, if I'm online with my hotspot, sometimes the regular Itunes Icon is visible, but at other times the icon with the thunderbold through it. I'm guessing this means it's streaming with the first icon, playing from my harddrive with the second.
So a couple of questions, and sorry for the length, I'm a first-time support user
1) Does it make sense to use Match with such a large library, and limited data plan?
2) "Where" is the music I've purchased - on my computer or in the cloud?
3) Should it take all day to send data to itunes, when the only updates to my library are songs I've deleted and a handful of new albums I purchased.
4) Am I using up my data plan when the regular Icloud Icon appears and I'm online? Is there a way to manually play from the hardrive to reduce use of my data plan? I turned off Match once and payed with a half-day sending and receiving session when I turned it back on.
4) Will I lose music if I unsubscribe from Match?
Thanks to anybody who has the inclination to respond to any of these questions!

This datasource sends After images in delta loads which is compatible with loading to a Std DSO only. You cannot load from this datasource directly to a cube.
You can check with business the number of years they would need history. If they need for 5 years, you could delete data older than that or Archive.
For GL, there would not be any changes to years that are closed for posting. There may be adjustments carried out for the previous fiscal year. I guess there would not be any changes to years prior to that. So archiving old data should not affect delta.

Similar Messages

  • I have allowed my iTunes Match subscription to expire, because of a limited data plan so can't listen to music outside my house. My music files were removed from my computer and are inaccessible without renewing the subscription. How do I get them back?

    I have allowed my iTunes Match subscription to expire, because of a limited data plan so can't listen to music outside my house. My music files were removed from my computer and are inaccessible without renewing the subscription. How do I get them back?

    Hi,
    I presume you deleted the original files as match would not have done so. Do you have a back up. If so, restore your music from that. If not, your will have lost all your music as this needed to be on your hard drive when you unsubscribed.
    Jim

  • How to handle large result set of a SQL query

    Hi,
    I have a question about how to handle large result set of a SQL query.
    My query returns more than a million records. However, the Query Template has a "row count" parameter. If I don't specify it, it by default returns only 100 lines of records in the query result. If I specify it, then it's limited to a specific number.
    Is there any way to get around of this row count issue? I don't want any restriction on the number of records returned by a query.
    Thanks a lot!

    No human can manage that much data...in a grid, a chart, or a direct-connected link to the brain. 
    What you want to implement (much like other customers with similar requirements) is a drill-in and filtering model that helps the user identify and zoom in on data of relevance, not forcing them to scroll through thousands or millions of records.
    You can also use a time-based paging model so that you only deal with a time "slice" at one request (e.g. an hour, day, etc...) and provide a scrolling window.  This is commonly how large datasets are also dealt with in applications.
    I would suggest describing your application in more detail, and we can offer design recommendations and ideas.
    - Rick

  • How to handle dbms_xmldom with no data values.(no_data_found error in dom)

    hi,
    i have below block,
    DECLARE
    doc dbms_xmldom.DOMDocument;
    node dbms_xmldom.DOMNode;
    elem dbms_xmldom.DOMElement;
    cur_node dbms_xmldom.DOMNode;
    root_elem_data dbms_xmldom.DOMElement;
    root_elem_tab dbms_xmldom.DOMElement;
    root_node_data dbms_xmldom.DOMNode;
    mode_elmn dbms_xmldom.DOMElement;
    mode_node dbms_xmldom.DOMNode;
    mode_text dbms_xmldom.DOMText;
    doc1 DBMS_XMLDOM.DOMDOCUMENT;
    root_node_data1 DBMS_XMLDOM.DOMNODE;
    child_document DBMS_XMLDOM.DOMDOCUMENT;
    child_rootnode DBMS_XMLDOM.DOMNODE;
    V_CLOB CLOB;
    v_doc CLOB;
    v_EMP CLOB;
    v_output_filename VARCHAR2(300) := 'SPOOL_DIR/'||'EMP_XML_FILE.xml';
    l_xmltype XMLTYPE;
    BEGIN
    doc := dbms_xmldom.newDOMDocument;
    node := dbms_xmldom.makeNode(doc);
    dbms_xmldom.setversion(doc, '1.0');
    dbms_xmldom.setCharset(doc, 'UTF8');
    elem := dbms_xmldom.createElement(doc, 'PartnerInfo');
    dbms_xmldom.setAttribute(elem,'xmlns','EMP');
    cur_node := dbms_xmldom.appendChild(node, dbms_xmldom.makeNode(elem));
    mode_elmn := dbms_xmldom.createElement(doc, 'EMPLOYEE');
    mode_node := dbms_xmldom.appendChild(cur_node,dbms_xmldom.makeNode(mode_elmn));
    BEGIN
    SELECT value(e) INTO l_xmltype
    FROM TABLE(XMLSequence(Cursor(SELECT * FROM EMP1 where EMPNO=7501))) e;
    child_document := DBMS_XMLDOM.newDOMDocument(l_xmltype);
    root_node_data1 := dbms_xmldom.importNode(doc,dbms_xmldom.makeNode(dbms_xmldom.getDocumentElement(child_document)),TRUE);
    root_node_data1 := DBMS_XMLDOM.appendChild(root_node_data, root_node_data1);
    EXCEPTION
    WHEN OTHERS THEN
    Dbms_Output.Put_Line('Error in SELECT stmt(UC_PARTNER_MS):::'||'error::'||SQLERRM);
    END;
    dbms_lob.createtemporary(v_doc, true);
    dbms_xmldom.writeToClob(doc,v_doc,'UTF8');
    v_EMP:= v_doc;
    dbms_xmldom.writeToFile(DOC,v_output_filename,'UTF8');
    dbms_xmldom.freeDocument(doc);
    --Dbms_Output.Put_Line('THE OUTPUT IS::'||V_EMP);
    EXCEPTION
    WHEN OTHERS THEN
    Dbms_Output.Put_Line('Error in SELECT stmt(UC_PARTNER_MS):::'||'error::'||SQLERRM);
    END;
    The xml file is 'EMP_XML_FILE.xml'
    <empno>U++kYmcVuGchxbh+++++++++++++++1+</empno>
    <empname>J</empname>
    suppose the empno 7501 is not available in our emp table,
    i got error
    ORA-03113: end-of-file on communication channel
    how to handle xmldom with no data values.
    by
    siva

    hi,
    please give the solution
    by
    siva

  • How do I add to my data plan on the iPad once I have run out of time and no longer have an internet connection?

    How do I add to my data plan on the iPad once I have run out  and no longer have an internet connection? I am working out of the country and got a message that I was running low,followed immediatly by a you're out message.

    Should you not be asking your carrier? They are the people supplying your data plan.

  • What phones can you still get the $15/month for limited data plan?

    I am aware Verizon has switched over to the "Share Everything" plan. I think it's obsurd to charge $50 a month for only 1GB of data to share with the whole family. Anybody who pays for that, must be insane. But, that's not what I'm asking about.              I have talked to my local Verizon store and they said I can keep my plan if I just want to upgrade my phone. There are 3 other phones on my plan, by the way. I have a basic Samsung Rogue that has unlimited texting and a shared amount of minutes for phone calls. I asked about changing my phone to a smart phone and they said I could have the $45/month plan, or whatever it was, for unlimited everything. That was just a little bit more than what I was willing to spend. I considered switching carriers and decided against it, as Verizon seems to have the best coverage. Then, it occured to me that they used to offer a limited data plan that my sister had before she got unlimited. I thought it was about $15 on top of what I already pay, but I'm not for sure. So, since I am still on my old plan, would it be possible to add the limited data package to my plan?? Also, if that is possible, what phones have an option to have a data plan? Can it just be any smart phone? I would prefer a touch screen phone.
    All answers are appreciated. Thank you!!

    Yes it is true. when you add a line you are required to change to the share everything plan.
    <Moderator comment. This information is incorrect. Current customer are not required to switch to the Share Everything Plan if the customer deals with a corporate store or VZW directly through Customer Service.<
    Message was edited by: Verizon Moderator

  • How do i get a UD data plan?

    How do I get a US data plan??  I have an AT&T sim card but am unable to purchase a plan on my iPad as I do not have a US address or US credit card!

    That would be a question for AT&T. I would start at www.att.com and work through there for contact info to find a phone number and see what they suggest. Or if you have an AT&T account already, contact them and see what they can do to set up a US data plan.

  • How to keep the Unlimited verizon data plan when upgrading to iphone 4s?

    How can I keep my unlimited data plan when upgrading to a IPHONE 4s???
    I tried everything!!! I have an apple giftcard so I want to use it through apple.com but It wont let me keep my unlimited data plan

    The terms of your data/phone plan are solely determined by your carrier, in this case Verizon.  It is up to them if they wish to allow consumers to carry over the existing terms of their plan.  Hence, the thing you need to do is contact Verizon customer service and ask them to carry your terms over with your upgrade.  I'm hoping if you ask nicely they may do it.
    Hope this helps

  • HT202197 How do I cancel a Verizon data plan for a lost ipad?

    My wife has lost her ipad, which is the most current version. How do we cancel her Verizon data plan without having the ipad in our possesion?

    Contact Verizon.
    http://www.verizonwireless.com/support/

  • How to handle HTTP-POST encrypted data for ECC Using proxy or RFC

    I have a scenario HTTP-POST ->PI->ECC.sender is HTTP Post  send encrypted data i need to handle the data and stored in to SAP ECC  with out decrypt using PI .what should i take for receiver  can i use inbound proxy or RFC  and how can handle the encrypted data  for decrypt.
    Regards
    Ravi

    1. my sender is HTTP POST . what should i configure in sender communication channel in SAP PI .like SOAP or HTTP .What are the parameters i need to pass .
    >>>
    If you are on PI 7.3 and above, configure the HTTP AAE adapter - Configuring the Java HTTP Adapter on the Sender Channel - Advanced Adapter Engine - SAP Library
    2.while using inbound proxy for encrypted data  i need  store the data in to table , the same proxy can i call  another outbound  service for decrypt  same data.
    >>>>
    Yes you can always a proxy within a proxy.

  • How to handle large images?

    Hi,
    Does anyone know how to handle big jpg images (1280*960) so that they could be presented in a midlet.
    The problem is that the images requires so much memory that they can't be decoded to an Image object with Image.createImage method. One solution would be to extract thumbnail image from exif headers. Unfortunately at least images taken with Nokia 6680 don't contain thumbnail in exif headers.
    So the only solution seems to be to decode the byte presentation of the image and resize it before creating an Image object.
    Do anybody know any library for this or tips where to start?
    Br, Ilpo

    Hi,
    I think it is not possible. My application contains a file browser (which uses jsr-75). User can use the browser to select an image either from phone memory or memory card. After the selection I would like to present the selected image for that user can be sure it is the right image. The selected image will be then sent to the server side with some additional data for further processing (but that is another story).
    Now the problem is that for example with Nokia 6680 user can take images as big as 1280*960 and I can't present them anymore because of the memory restrictions. With 640*480 image there is no problem because I can create an image object and then use a simple algorithm to resize the image for presentation.
    Br, Ilpo

  • How to handle large heap requirement

    Hi,
    Our Application requires large amount of heap memory to load data in memory for further processing.
    Application is load balanced and we want to share the heap across all servers so one server can use heap of other server.
    Server1 and Server2 have 8GB of RAM and Server3 has 16 GB of RAM.
    If any request comes to server1 and if it requires some more heap memory to load data, in this scenario can server1 use serve3’s heap memory?
    Is there any mechanism/product which allows us to share heap across all the servers? OR Is there any other way to handle large heap requirement issue?
    Thanks,
    Atul

    user13640648 wrote:
    Hi,
    Our Application requires large amount of heap memory to load data in memory for further processing.
    Application is load balanced and we want to share the heap across all servers so one server can use heap of other server.
    Server1 and Server2 have 8GB of RAM and Server3 has 16 GB of RAM.
    If any request comes to server1 and if it requires some more heap memory to load data, in this scenario can server1 use serve3’s heap memory?
    Is there any mechanism/product which allows us to share heap across all the servers? OR Is there any other way to handle large heap requirement issue? That isn't how you design it (based on your brief description.)
    For any transaction A you need a set of data X.
    For another transaction B you need a set of data Y which might or might not overlap with X.
    The set of data (X or Y) is represented by discrete hunks of data (form is irrelevant) which must be loaded.
    One can preload the server with this data or do a load on demand.
    Once in memory it is cached.
    One can refine this further with alternative caching strategies that define when loaded data is unloaded and how it is unloaded.
    JEE servers normally support this in a variety of forms. But one can custom code it as well.
    JEE servers can also replicate cached data across server instances. Custom code can do this but it is more complicated than doing the custom caching.
    A load balanced system exists for performance and failover scenarios.
    Obviously in a failover situation a "shared heap" would fail completely (as asked about) because the other server would be gone.
    One might also need to support very large data sets. In that case something like Memcached (google for it) can be used. There are commercial solutions in this space as well. This allows for distributed caching solutions which can be scaled.

  • Advice needed on how to keep large amounts of data

    Hi guys,
    Im not sure whats the best way is to make large amounts of data available to my android  app on the local device.
    For example records of food ingredients, in the 100's?
    I have read and successfully created .db's using this tutorial.
    http://help.adobe.com/en_US/AIR/1.5/devappsflex/WS5b3ccc516d4fbf351e63e3d118666ade46-7d49. html
    However to populate the database I use flash? So this kind of defeats the purpose of it. No point in me shifting a massive array of data from flash to a sql database, when I could access the data direct from the as3 array?
    So maybe I could create the .db with an external program? but then how would I include that .db in the apk file and then deploy it to users android device.
    Or maybe I create a as3 class with an xml object init and use that as a means of data storage?
    Any advice would be appreciated

    You can use any means you like to populate your SQLite database, including using external programs, (temporarily) embedding a text file with SQL statements, executing some SQL from AS3 code etc etc.
    Once you have populated your db, deploy it with your project:
    http://chrisgriffith.wordpress.com/2011/01/11/understanding-bundled-sqlite-databases-in-ai r-for-mobile/
    Cheers, - Jon -

  • How do I get my unlimited data plan back

    Upgraded my phone at a verizon booth in a SAM's club and was told that nothing would change on my plan. They activated the phone and got everything all set up so I didn't skip a beat. A couple days later I receive a text from VZW that I was close to going over my data minutes so knew something was wrong. Called VZW and sure enough was told that unlimited data was not longer provided and since I upgraded my phone I lost the plan. I explained I had not been given that piece of information and if had I would not have changed phones as the unlimited data is more important to me. The VZW I talked with was verify helpful and said I should have been told, that since I was not told he would send a request to corporate to get the unlimited data back for me. He even bumped me up from 2G to 5G with no cost to me so that during the 48 hours that this could take I wouldn't incur any costs. I was so very pleased and assumed all was ok. Then yesterday I receive another text from VZW again telling me my data was close to going over my plan. Surprised I called VZW today and again talked with a rep who was very pleasant but informed me that the request sent to corporate was rejected and guess what, I wasn't informed and now it is past the 14 days so I can't return the phone and re-establish my plan back to how it was prior to the new phone. I was told I had been sent a email telling me this was rejected but I have no record of an email. I don't understand why I get texts when I' close to going over data but they wont send a text to tell me a request has been rejected and this is sent to some bogus email account that I'm not aware of or even a notification sent where I can go into my vzw account and call up the notification of reject... nothing... then I'm told the only way I can get in touch with corporate is to via mail.... really.... a company that's business is smart phones, who communicates with me via texts, emails, and I can't get in touch with them other then mail. So because I upraded my phone, I am now under a 2 year contract again, so can't just cancel my account without penalty and I have no unlimited data. How is that customer service.

    Yes I was told I could return my phone within 14 days; however, when the vzw customer service rep I toalked with told me they agreed I should have been told this important piece of information and submitted an "Inactive Price Request" to Corporate on my behalf, I assumed after the 48 hour waiting period that my data had been restored since I was NOT NOTIFIED by vzw that they had rejected the request. By the time I was texted again from vzw that I was close to exceeding my data plan it was past the 14 days and vzw will not honor returning the phone at this point. What I find interesting is the vzw is great about sending text and emails when a person is close to exceeding or exceeding their plan however they were not able to send me a text or email telling my they had rejected my request to reinstate my unlimited data plan. A bit sneeky and unprofessional in my opinion.

  • How to handle tables having volatile data

    Hi,
    We have a table in which we load millions of data and after validation a huge amount of data is deleted. After that the select statements (performing FTS) becomes slow. If we shrink the space, the queries becomes faster. But shrinking space requires additional time. We can consider creating index on the table. But the indexes will slow down the inserts.
    I wanted to know, how do we handle such tables containing data which has volitile nature.
    The database version is 10.2.0.5 and platform Windows server 2008.
    Regards,

    Thanks Justin,
    We can't truncate the table.
    Basically, the application is for a credit card payment gateway. A credit card transaction may be a successful or unsuccessful transaction. All the data is pushed in flat file. The application loads the data(using SQL loader) in a temporary table and if the merchant_id is correct then the data is pushed in permanent table(say T1). The table T1 may contain successful as well as unsuccessful transations (The unsuccessful transactions have to be maintained for 30 days because of business compulsions). Once the validation is done, the successful transations are moved to different table and are deleted from T1.
    Here I have referred T1 as a table having volatile data. We can't truncate it as it has still data which is required by business.
    Hope I am clear.
    Regards,

Maybe you are looking for

  • IPhone 3G is not recognized by iTunes installed on MAC PRO

    I have attempted to connect iTunes after Mac Pro system restore with iPhone 3G, but iTunes does not recognize any connection from iPhone. When I plug iPhone into my MacBook Pro iTunes immediately recognizes iPhone and begins sync process. I restored

  • Best way to transfer files from old Macbook Pro to new one?

    I just got a new Macbook Pro from Apple...YEEEEAAAHHHH!  So.... What's the best way to transfer files from old Macbook Pro to new one?  I know Migration assistant, but is there a recommended way?  I don't want to put do a system restore or transfer e

  • Aperture very slow

    Has anyone come across this issue when the MAC just freezes up or runs very slow when aperture in use? its like the things is running on solar energy an its night time! can someone help please? any quick fixes? i run a MAC OSX version 10.7.2, 3.06Ghz

  • RSA3 Execution error?

    when I click on the execute of RSA3 for a data source 0PROJECT_ATTR I am getting fallowing error.Please help me if some body has encountere similar kind of error. In one section there is no number. "D:XX-0000-000.000" Message no. CJ608 Diagnosis You

  • Publishing Crystal Report with subreport in BOE

    Where can I find specific step-by-step instructions on how to publish a Crystal Report in BOE that contains an on-demand subreport that contains links (passed parameters) to the main report?  I havepublished the 'main' report and the subreport in the