Large App Databases?

Is there anyway to tell which Apps are taking up large amounts of space with their own databases? I know they can slow your phone down but how do you find them?

I've not found an iPhone app for that.
Phil

Similar Messages

  • Downloading large apps via a second computer

    I've moved to a new city for a new job opportunity. Everything is great except the home Internet charges in this city are outrageously expensive for such a small data amount!
    My iPad has several large apps it needs updating which would blow my home Internet data usage for the month if downloaded by home Wifi.
    I have free internet at work.
    My question is could I setup iTunes on my work computer, (windows), and log into my apple account and download one or two of the large apps that I have brought, and then take them home and put them into the iTunes-mobile applications folder on my Mac (deleting the older version) and then Sync my iPad?
    Would iTunes recognize that the app has been updated or is there some internal database that needs to be updated that recognizes the new version of the app?
    Apart from using my employers Internet usage, everything else is legit.
    Thanks for your feedback.

    You should be able to download the app to your normal computer (http://support.apple.com/kb/HT2519) and get it onto yout iPhone that way.
    If you are away from that computer, then you download all your apps to the iMac and then try syncing - I had a similar issue when I moved to a new computer and it said that it would delete all my apps off it, but it didn't (though I did copy all music and apps to it first).

  • Putting apps database in Read-Only mode

    Hi,
    I want to put the apps database in read-only mode to that user will be able to login into the applications and see data but will not be able to update it.
    What is the best way to do this?
    Thanks

    I am still looking at how to do this because if users
    update the UAT/test database, when the prod upgrade
    is completed, they will think that their updates will
    be available and this will cause some issues.This is a training/expectation-setting issue, not a technical one. You need to make sure that your users understand the difference between a test system and production, and that changes made in testing will not be present in production. They also need to understand that this situation is actually to their benefit: it enables them to really work with the test system to uncover potential problems and learn new features, without fear of making changes that could negatively impact their day-to-day work in production.
    Please note that I'm not trying to be a jerk here. I very respectfully submit that attempting to make an instance read-only for training purposes, even if possible, will involve a great deal of technical work for very little (and perhaps even negative) overall benefit to the users.
    Regards,
    John P.

  • W_YEAR_D Script to configure Year Data in Apps Database : OBIA

    Hi Friends,
    We want to configure DAY, MONTH, YEAR... in my Apps database. As of now we have Scripts for W_DAY_D, W_MONTH_D and mentioned below. NOw , we need same kind of scripts for W_YEAR_D. We are planning to bypass Informatica and DAC, So we need to configure them in Apps DAtabase to get the results similar to OBIA.
    W_DAY_D
    CREATE TABLE W_DAY_D AS
    (SELECT
    ROWNUM ROW_WID,
    CurrDate AS Day_ID,
    to_number(to_char(CurrDate, 'YYYYMMDD')) as DAY_ID_YYYYMMDD,
    --1 AS Day_Time_Span,
    --CurrDate                AS Day_End_Date,
    TO_CHAR(CurrDate,'Day') AS Week_Day_Full,
    TO_CHAR(CurrDate,'DY') AS Week_Day_Short,
    TO_NUMBER(TRIM(leading '0'
    FROM TO_CHAR(CurrDate,'D'))) AS Day_Num_of_Week,
    TO_NUMBER(TRIM(leading '0'
    FROM TO_CHAR(CurrDate,'DD'))) AS Day_Num_of_Month,
    TO_NUMBER(TRIM(leading '0'
    FROM TO_CHAR(CurrDate,'DDD'))) AS Day_Num_of_Year,
    UPPER(TO_CHAR(CurrDate,'Mon')
    || '-'
    || TO_CHAR(CURRDATE,'YYYY')) AS MONTH_ID,
    TO_CHAR(CurrDate,'Mon')
    || '-'
    || TO_CHAR(CURRDATE,'YY') AS MONTH_SHORT_ID,
    TO_CHAR(CurrDate,'Mon')
    || ' '
    || TO_CHAR(CurrDate,'YYYY') AS Month_Short_Desc,
    RTRIM(TO_CHAR(CurrDate,'Month'))
    || ' '
    || TO_CHAR(CurrDate,'YYYY') AS Month_Long_Desc,
    TO_CHAR(CurrDate,'Mon') AS Month_Short,
    TO_CHAR(CurrDate,'Month') AS Month_Long,
    TO_NUMBER(TRIM(leading '0'
    FROM TO_CHAR(CurrDate,'MM'))) AS Month_Num_of_Year,
    'Q'
    || UPPER(TO_CHAR(CurrDate,'Q')
    || '-'
    || TO_CHAR(CurrDate,'YYYY')) AS Quarter_ID,
    'Q' || UPPER(TO_CHAR(CurrDate,'Q')) AS Quarter_Short,
    TO_NUMBER(TO_CHAR(CurrDate,'Q')) AS Quarter_Num_of_Year,
    CASE
    WHEN TO_NUMBER(TO_CHAR(CurrDate,'MM')) = 1 THEN 1
    WHEN TO_NUMBER(TO_CHAR(CurrDate,'MM')) = 2 THEN 2
    WHEN TO_NUMBER(TO_CHAR(CurrDate,'MM')) = 3 THEN 3
    WHEN TO_NUMBER(TO_CHAR(CurrDate,'MM')) = 4 THEN 1
    WHEN TO_NUMBER(TO_CHAR(CurrDate,'MM')) = 5 THEN 2
    WHEN TO_NUMBER(TO_CHAR(CurrDate,'MM')) = 6 THEN 3
    WHEN TO_NUMBER(TO_CHAR(CurrDate,'MM')) = 7 THEN 1
    WHEN TO_NUMBER(TO_CHAR(CurrDate,'MM')) = 8 THEN 2
    WHEN TO_NUMBER(TO_CHAR(CurrDate,'MM')) = 9 THEN 3
    WHEN TO_NUMBER(TO_CHAR(CurrDate,'MM')) = 10 THEN 1
    WHEN TO_NUMBER(TO_CHAR(CurrDate,'MM')) = 11 THEN 2
    WHEN TO_NUMBER(TO_CHAR(CurrDate,'MM')) = 12 THEN 3
    END AS Quarter_Num_of_Month,
    CASE
    WHEN TO_NUMBER(TO_CHAR(CurrDate,'Q')) <= 2
    THEN 1
    ELSE 2
    END AS half_num_of_year,
    CASE
    WHEN TO_NUMBER(TO_CHAR(CurrDate,'Q')) <= 2
    THEN 'H'
    || 1
    || '-'
    || TO_CHAR(CurrDate,'YYYY')
    ELSE 'H'
    || 2
    || '-'
    || TO_CHAR(CurrDate,'YYYY')
    END AS half_of_year_id,
    TO_CHAR(CurrDate,'YYYY') AS Year_ID
    FROM
    (SELECT level n,
    -- Calendar starts at the day after this date.
    TO_DATE('31/12/2000','DD/MM/YYYY') + NUMTODSINTERVAL(level,'DAY') CurrDate
    FROM dual
    -- Change for the number of days to be added to the table.
    CONNECT BY level <= 9131
    W_MONTH_D
    CREATE TABLE W_MONTH_D
    AS
    SELECT ROWNUM AS ROW_WID,
    B.MONTH_ID AS MONTH_ID,
    B.MONTH_SHORT_DESC,B.MONTH_LONG_DESC,B.MONTH_SHORT,B.MONTH_LONG,B.MONTH_NUM_OF_YEAR,B.QUARTER_ID,B.QUARTER_SHORT,B.QUARTER_NUM_OF_YEAR,
    B.QUARTER_NUM_OF_MONTH,B.HALF_NUM_OF_YEAR,B.HALF_OF_YEAR_ID,B.YEAR_ID
    FROM
    (SELECT MONTH_ID,MONTH_SHORT_DESC,MONTH_LONG_DESC,MONTH_SHORT,MONTH_LONG,MONTH_NUM_OF_YEAR,QUARTER_ID,QUARTER_SHORT,QUARTER_NUM_OF_YEAR,
    QUARTER_NUM_OF_MONTH,HALF_NUM_OF_YEAR,HALF_OF_YEAR_ID,YEAR_ID FROM W_DAY_D
    GROUP BY MONTH_ID,MONTH_SHORT_DESC,MONTH_LONG_DESC,MONTH_SHORT,MONTH_LONG,MONTH_NUM_OF_YEAR,QUARTER_ID,QUARTER_SHORT,QUARTER_NUM_OF_YEAR,
    QUARTER_NUM_OF_MONTH,HALF_NUM_OF_YEAR,HALF_OF_YEAR_ID,YEAR_ID
    ORDER BY YEAR_ID,MONTH_NUM_OF_YEAR) B
    Please help on this asap. Its really urgent requirement..
    Thanks in Advance.
    Raghu Nagadasari

    messDate.setGregorianChange(theResult..getDate(2)); //I GET ABSOLUTELY NO DATE HERE
    This doesn't do what you think it does. Check the API documentation.
    http://java.sun.com/j2se/1.4.1/docs/api/java/util/GregorianCalendar.html
    Try this instead:
    messDate.setTime(theResult.getDate(2));

  • XML Database in Apps Databases

    Hi,
    What is the use of XML database in Apps Databases...it has XML Schema...etc etc..what purpose is that...

    If you are using XMLTYPE in stored procedures,
    views, functions, columns or tables you need the XDB
    feature in order for the base XMLTYPE to have
    complete functionality of it's member functions.
    This means if you were directed to remove XDB for
    some other reason you must follow the steps to put
    it back in if you want to use the XMLTYPE. You will
    also require it if you are using any of the standard
    pl/sql apis such as DBMS_XMLDOM and DBMS_XMLQUERY
    to name a couple.Yes, this is from the first note. If you check the other one, you would also find that Oracle XML Database has to be installed correctly (Oracle 10g Release 2 and above) in order to have a successful interMedia installation. For getting more details about "Oracle interMedia", check the the same note (Question 1).

  • Oracle Apps Database severe Performance Issue

    Hi Gurus,
    This is regarding a severe performance issue running in our Production E-Business Suite Instance.
    its an R12.1.3 setup installed with 11.2.0.1 Database. All the servers are Solaris Sparc 64 (Solaris 10)
    Let me brief you about the instance first:
    2 Node Application
    - Main Application Server hosting web/forms/concurrent/admin servers
    - iSupplier server hosting web services (placed in DMZ, used by external suppliers via Internet)
    1 Node Database Server
    Database Server Specs
    Memory: 144G phys mem 20G total swap
    - CPUs (8Px4cores, 2Px2cores)
    - I/O - fiber channel hard disk (hitachi SAN Storage) - 7 DATA_TOPs (7 drives with RAID 5) - current DB size 1.6 TB
    - at peak load, around 1000 concurrent forms session and 2000 web sessions.
    We have been facing some serious performance issues and we raised an SR with Oracle Support.
    The Support analyzed a bunch of AWR Reports we provided them and they asked us to increase the DB_CACHE from its current usage of 27G to 40G
    So, we changed SGA_TARGET from 35G to 50G and PGA was increased from 35G to 40G as v$pgastat was also suggesting some lack of memory.
    We made these changes last night.
    Today morning we observed the following:
    1. after start of office hours, we checked in the home page of EM DB Console that ADDM was showing reduced impact due to lack of SGA memory which seemed to be a good sign. Earlier it was around 25% which was now at 12%.
    However, negative aspects were:
    1. lot of swapping was reported by the System Administrators on the DB Server
    2. High CPU Usage
    3. EM DB Console showed a lot of "Concurrency Wait Class" events ...throughout the day lot of blocking sessions were reported which were making other sessions to wait.
    in the AWR Report, following foreground reports were listed:
    Top 5 Timed Foreground Events
    Event
    Waits
    Time(s)
    Avg wait (ms)
    % DB time
    Wait Class
    DB CPU
    132,577
    61.46
    library cache lock
    3,539
    40,683
    11496
    18.86
    Concurrency
    library cache: mutex X
    4,014,083
    21,011
    5
    9.74
    Concurrency
    db file sequential read
    4,138,014
    20,767
    5
    9.63
    User I/O
    latch free
    381,916
    5,897
    15
    2.73
    Other
    This is showing "library cache lock" events as the main culprit apart from the usual suspect, the CPU.
    I am attaching the AWR Report. Please let me know if  i should revert back the memory changes or is there anything else i could do.
    Please help us resolving it because the performance is going worst.
    Regards,
    Muneer.

    Pl do not post duplicates - Oracle Apps Database severe Performance Issue
    For all critical production issues, pl work with Support thru SRs - using the forums to troubleshoot production issues is not wise

  • I inherited an iPod classic from the passing of a family member. I dont have any passwords to access it. I have a large itunes database on my pc, but I want to add the files on the inherited ipod to my itunes. I do not want to lose files on itunes or ipod

    I inherited an iPod classic from the passing of a family member. I dont have any passwords to access it. I have a large itunes database on my pc, but I want to add the files on the inherited ipod to my itunes. I do not want to lose files on itunes or ipod

    but I want to add the files on the inherited ipod to my itunes
    If the media was purchased from the iTunes store, it cannot be transferred to another iTunes account.

  • Hi, I'm developing a application thats need read and log a large tag database at

    Hi, I'm developing a application thats need read and log a large tag database at period of 1 second. My system have actually 1200 tags and when I try to increase the number of tags my system slowdown and not update at requested period anymore. I'm using NI OPC Servers to read data of 4 different PLC's. In the SVE I've created an IO Server to bind variables and all variables are located in a single process. All variables are logging alarms and data. The Log Deadband and Update Deadband are set to 0. My machine is a DELL Precision T5400 with Dual Intel Xeon Quad Core with 4GB of RAM and Windows XP Sp3 installed. Bruno Costa Automation Enginner

    Duplicate Post
    Why did you create an identical post under a different username?
    You'll have to be patient.  It is the 4th of July holiday, so the forums are going to be less active than a usual Monday.

  • Developers access to apps database user(Best Practice)?

    Hello all,
    I'm trying to understand a developers need to have access to the "apps" database user. The arguent can be made that the need is there for all development efforts, but is that really the case? Should all updates/changes by the "apps" user be executed by the apps dba even in the development environment? I'm trying to get a better understanding of how other organizations are set up. Our shop currently allow developers free raign to the apps user, but there are known security risks in doing so with "apps" being such a powerful user of the database environment.
    Thanks in advance and any recommendations(Best Practices) will be greatly appreciated.

    Hi,
    We usually give developers access to APPS schema on the development instances. The access to this schema (and other schemas) is revoked on the UAT/PROD (and other instances where the data is not sanitized). When giving such access we are not much worried about the data as much as we are about the objects, but this is not a big issue as we can recover those objects from other instances. Some organizations do not provide their developers with access to APPS schema on the development instances and all the tasks are done by the Apps DBA team. Another approach would be creating a read only APPS schema (search the forum for details) to allow developers to view the objects/data without bugging the DBAs with such routine tasks.
    Thanks,
    Hussein

  • Using exp imp on 11i apps database

    Hi,
    Does anyone have experience in using exp and imp utility on 11i apps database? Is there any special method to achieve this.
    I want to do a full export and do an import.
    Do we get any performance benefits if we do this?
    Regards,
    SA

    Hi Sa;
    Does anyone have experience in using exp and imp utility on 11i apps database? Is there any special method to achieve this. You want to take exp imp for which issue?
    I want to do a full export and do an import.Follow:
    10g Export/Import Process for Oracle Applications Release 11i [ID 331221.1]
    Export/import process for R12 using 11gR1 [ID 741818.1]
    Do we get any performance benefits if we do this?It depends many segment but finaly u will make one process on server and it has cost,answer you can have some performance issue while you are taking exp-imp
    Regard
    Helios

  • HT1725 whenever i download larger apps i.e 100mb, after download is completed, instead of processing it just restarts downloading

    whenever i download larger apps i.e > 100mb,
    after download is completed, instead of processing it just restarts downloading

    You can automatically save downloads without seeing the Open/Save/Cancel dialog in the Options:
    orange Firefox button (or Tools menu) > Options > General > "Saves files to"
    However, I can't think of a way to have the Open/Save/Cancel dialog always default to Save. I think mine suggests whatever I did last for the same type of content, but I haven't paid close attention.
    I'm out of time to address the problem with "do this automatically" but there is one suggestion for why it could be grayed out in this article: [[Change what Firefox does when you click on or download a file]].
    Is it possible you had a download-related extension before? To compare settings and extensions, please retain the Old Firefox Data folder on your desktop. Aside from checking the extensions in there, it would be interesting to run a text file comparison on your currently active prefs.js file and your old one in that folder.

  • Invalid checksum for iTunes? ... can't download large apps?

    I've noticed two things.
    First, I've tried to download iTunes 11 from both the app store and a straight download, and, both ways (and every time -- 7 tries now), I get an invalid checksum. I've downloaded from Chrome; I've downloaded from Safari. I can't imagine the source is the problem, so what's happening there? My network connection seem otherwise solid, based on my ping rate to California, and standard web use.
    Secondly, iTunes 10 won't download large apps. Neither the 'Magic the Gathering' update or the 'Grand Theft Auto: Vice City' app will download. (Both of those weigh in at over a gig.) At some point during the download, I get the warning, "An unknown error occurred (-50)." Smaller apps seem fine.
    This is with a late 2008 13-inch Macbook Pro running 10.8.2.
    Help? ... and thank you!

    Just need to find a way to get a hold of someone who can fix this.

  • Is it possible to successfully import large Entourage databases into Mail?

    Hi:
    Perusing lots of threads, it looks like Mail has some issues importing large Entourage databases; my Entourage Identity is about 6 GB.
    The most current of the threads I saw was a few months old. Does anyone know if Apple has recently found a way to import these large files successfully, preserving the subfolder hierarchy and getting all of the messages transferred?
    The other alternative for me is just to start with Mail fresh and run Entourage in a parallel fashion for half a year or so, until I no longer regularly need to use Entourage, but I'd prefer the more elegant approach.
    Thank you!

    Char did the suggested solution work? I suspect not - but if it did please confirm. I've also been trying to import large business use mail databases from entourage 2004 & 2008 into Mail without much luck. In one case it took 12 separate imports because each would fail after successfully importing a few folders. After each fail I needed to logout the user and login again in order for Mail to "find" the entourage mail file again. As a final step I had to reassemble, from the import folders, the previous file structure by drag and drop. Complete pain and the result is questionable no matter how carefully I do this. Without a good import solution we will have to stick with entourage 2008 or upgrade to the new version of Outlook 2011. Disappointing performance from apple Mail on this.

  • CLONE ORACLE APPS DATABASE TO OTHER MACHINE

    Hi,
    I want to know how I can clone oracle APPS database to other machine.
    Just want to know the database part.
    Thanks in advance

    You really, really want to ask this in the appropriate Oracle Apps forum. Cloning the database may or may not be sufficient-- most packaged applications have their own data dictionaries that may need to be manipulated in application-specific ways in order to properly clone the application. The folks in the Oracle Apps forum should be able to tell you what scripts, if any, you'd need to run for your particular Oracle Apps version and database.
    Justin

  • Problem in downloading large App

    Trying to download Mavericks but since its a large file, cant download in a single sitting. I leave it in pause mode and when i try to resume it shows an error and starts download from Zero.

    I bought a large app (370MB)...and I am finding it difficult to download...when it's about 80% complete, it goes back to zero, and I'm tired. I felt like I wasted my money and If I go another day trying to download something that I bought and cannot enjoy it, I'll be forced to ask back for money. My internet connection is fine...it must be an apple problem!

Maybe you are looking for