App Hangs in 3 consecutive days

Hi all,
11.2.0.1
Aix 6.1
Our database & app hangs for the first time, 3 consecutive days (Aug 11,12,13)  during run of batch jobs at 12AM.
The batch operator said the batch job is deleting a table with only less than 1000 rows but was not able to lock the table as there lots of updates queues from lots of client app.
I check the alert log for the said time period and this is the output. I saw similar occurences at 1AM
Tue Aug 13 01:20:45 2013
Clearing standby activation ID 2855092487 (0xaa2d4107)
The primary database controlfile was created using the
'MAXLOGFILES 16' clause.
There is space for up to 10 standby redo logfiles
Use the following SQL commands on the standby database to create
standby redo logfiles that match the primary database:
ALTER DATABASE ADD STANDBY LOGFILE 'srl1.f' SIZE 262144000;
ALTER DATABASE ADD STANDBY LOGFILE 'srl2.f' SIZE 262144000;
ALTER DATABASE ADD STANDBY LOGFILE 'srl3.f' SIZE 262144000;
ALTER DATABASE ADD STANDBY LOGFILE 'srl4.f' SIZE 262144000;
ALTER DATABASE ADD STANDBY LOGFILE 'srl5.f' SIZE 262144000;
ALTER DATABASE ADD STANDBY LOGFILE 'srl6.f' SIZE 262144000;
ALTER DATABASE ADD STANDBY LOGFILE 'srl7.f' SIZE 262144000;
Tue Aug 13 02:00:00 2013
Closing scheduler window
Closing Resource Manager plan via scheduler window
Clearing Resource Manager plan via parameter
Tue Aug 13 04:36:07 2013
WARNING: Heavy swapping observed on system in last 5 mins.
pct of memory swapped in [9.53%] pct of memory swapped out [23.33%].
Please make sure there is no memory pressure and the SGA and PGA
are configured correctly. Look at DBRM trace file for more details.
Tue Aug 13 05:07:14 2013
Thread 1 cannot allocate new log, sequence 49033
Private strand flush not complete
AlertSunday Aug 11
https://app.box.com/s/6ut7uk0o5y6tg2sjfzvn
AlertMonday Aug 12
https://app.box.com/s/gafa2d1ngn7hpen6tfky
AlertTuesday Aug 13
https://app.box.com/s/o5v5gtul1mr3yra6vbgj
Do you have any idea what causes tha hang? Its weird because these did not happened before.
Please help...
Thanks a lot,
zxy

Thanks,
Does these ASH, & AWR reports shows anything?
ASH
https://app.box.com/s/bmuafe2y39mzo036bbij
https://app.box.com/s/jdfv3uauwhp7tttvqlig
https://app.box.com/s/7r0sej0r77n3jay7n1fd
AWR
https://app.box.com/s/fdyx0rare2tskd291f1w
https://app.box.com/s/0pd4u7kzt0p10rhgnivq
https://app.box.com/s/sjotdxe57pssjitabrj2
Thanks,

Similar Messages

  • Mail app hangs on ios5 and gmail account

    The Mail app hangs several times per day. I have one gmail account. The diag. files says something like "com.apple.mobilemail failed to resume in time" or "Power assertion timeout for MailPendingChanges"

    This connectivity issue between my Apple Mail through CLEAR as ISP to Godaddy's pop.secureserver.net is just getting weirder. Now my 9 boxes spin out (when upload is testing at .07 mbps and also at .54 mbps) but partner's 4 emails on iMac using same settings through same network is fine...was glitched a while ago too though. Then partner's emails all do same thing, and hers and my Gmail accounts check fine. SO, Helllloooo Godaddy, if Gmail checks fine but your pop.secureserver.net does not, maybe it IS a problem on your end? Of course, getting Godaddy to ADMIT THEY HAVE A PROBLEM would be a miracle.
    Still zero reply or help from either Godaddy or Clear, no resolution from either, still pitching blame at each other.

  • Latest Number of Consecutive Days ("Current Streak")

    Using SQL Server (On Azure)
    I am trying to figure out how to get the latest number of consecutive days in an SQL query.
    I have a habit tracking app in which I keep track of best streaks, originally I was storing this "Streak" value as it's own column in the Habit table and changing it directly. This of course led to incorrect syncing and accuracy issues. I realize
    the best way to do it is to calculate from existing data.
    I simplified the 2 tables as listed below:
    Habit
    id (the habit id)
    Name (the name of the habit)
    Target (the target number of entries required to be considered completed)
    HabitEntry
    id (the habit entry id)
    HabitID (the corresponding habit id)
    EntryDate (the date and time of the entry)
    Looking to get a query that looks something like this:
    SELECT habit.id, habit.Name, (*subquery*) as 'CurrentStreak' from habit join habitentry on habit.id = habitentry.habitid
    And outputs something like this:
    1, 'Exercise Daily', 7
    If the habit's target is 2, there must be 2 entries within that date to be considered completed and to add to the streak.
    Not sure if this complicates things, but days are measured from 3:00am to 3:00am, any help is greatly appreciated.

    Figured I'd throw this in just for the fun of it. :)
    IF OBJECT_ID('tempdb..#Habbit') IS NOT NULL DROP TABLE #Habbit
    CREATE TABLE #Habbit (
    ID INT PRIMARY KEY,
    Name VARCHAR(255),
    [Target] INT
    INSERT #Habbit (ID,Name,Target) VALUES
    (1,'Three Day Thing', 3),
    (2,'Four Day Thing', 4),
    (3,'Five Day Thing', 5)
    --=============================================
    IF OBJECT_ID('tempdb..#HabitEntry') IS NOT NULL DROP TABLE #HabitEntry
    CREATE TABLE #HabitEntry (
    UserID INT,
    HabbitID INT,
    EntryDate DATETIME
    INSERT #HabitEntry (UserID,HabbitID,EntryDate) VALUES
    (1, 1, '20150101 06:35:30'),
    (1, 1, '20150102 08:35:30'),
    (1, 1, '20150103 08:35:30'),
    (1, 1, '20150110 09:35:30'),
    (1, 1, '20150112 10:35:30'),
    (1, 1, '20150115 22:35:30'),
    (1, 1, '20150116 23:35:30'),
    (1, 1, '20150117 00:35:30'),
    (1, 1, '20150118 01:35:30'),
    (1, 1, '20150122 04:35:30'),
    (1, 1, '20150124 05:35:30'),
    (1, 1, '20150126 15:35:30'),
    (1, 1, '20150127 10:35:30'),
    (2, 3, '20150101 06:35:30'),
    (2, 3, '20150102 06:35:30'),
    (2, 3, '20150103 02:35:30'),
    (2, 3, '20150104 06:35:30'),
    (2, 3, '20150105 06:35:30'),
    (2, 3, '20150108 06:35:30'),
    (2, 3, '20150110 06:35:30'),
    (2, 3, '20150111 06:35:30'),
    (2, 3, '20150112 06:35:30'),
    (2, 3, '20150113 06:35:30'),
    (2, 3, '20150114 06:35:30'),
    (2, 3, '20150122 06:35:30'),
    (2, 3, '20150123 06:35:30')
    --=============================================
    DECLARE @MinDate DATE, @RangeSize INT
    SELECT @MinDate = DATEADD(dd, -1, MIN(he.EntryDate)) FROM #HabitEntry he
    SELECT @RangeSize = DATEDIFF(dd, @MinDate, MAX(he.EntryDate) + 1) FROM #HabitEntry he
    IF OBJECT_ID('tempdb..#CalRanges') IS NOT NULL DROP TABLE #CalRanges
    SELECT TOP (@RangeSize)
    DATEADD(dd, ROW_NUMBER() OVER (ORDER BY (SELECT NULL)), @MinDate) AS [Date],
    DATEADD(hh, 3, DATEADD(dd, ROW_NUMBER() OVER (ORDER BY (SELECT NULL)), CAST(@MinDate AS DATETIME))) AS BegRange,
    DATEADD(hh, 27, DATEADD(dd, ROW_NUMBER() OVER (ORDER BY (SELECT NULL)), CAST(@MinDate AS DATETIME))) AS EndRange
    INTO #CalRanges
    FROM sys.all_objects ao
    --=============================================
    ;WITH cte AS (
    SELECT
    cr.Date,
    he.UserID,
    he.HabbitID,
    he.EntryDate,
    COALESCE(LAG(CASE WHEN he.EntryDate IS NOT NULL THEN cr.Date END, 1) OVER (PARTITION BY he.UserID, he.HabbitID ORDER BY cr.Date), '19000101') AS PrevDate
    FROM
    #CalRanges cr
    JOIN #HabitEntry he
    ON he.EntryDate BETWEEN cr.BegRange AND cr.EndRange
    --AND he.UserID = 1
    ), cte2 AS (
    SELECT
    c.*,
    CASE WHEN DATEDIFF(dd, c.PrevDate, c.Date) <> 1 THEN ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) END ConseqGroup
    FROM cte c
    WHERE c.Date <> c.PrevDate
    ), cte3 AS (
    SELECT
    c2.*,
    CAST(SUBSTRING(MAX(CAST(c2.Date AS BINARY(4)) + CAST(c2.ConseqGroup AS BINARY(4))) OVER (PARTITION BY c2.UserID, c2.HabbitID ORDER BY c2.Date), 5, 4) AS INT) AS ConseqGroupFill
    FROM cte2 c2
    ), cte4 AS (
    SELECT
    c3.UserID,
    c3.HabbitID,
    h.Name AS HabbitName,
    MIN(c3.EntryDate) AS BegDate,
    MAX(c3.EntryDate) AS EndDate,
    COUNT(*) AS DaysInSeries
    FROM
    cte3 c3
    JOIN #Habbit h
    ON c3.HabbitID = h.ID
    GROUP BY
    c3.UserID,
    c3.HabbitID,
    c3.ConseqGroupFill,
    h.Name
    HAVING
    COUNT(*) >= MAX(h.Target)
    -- SELECT * FROM cte4
    SELECT
    c4.*
    FROM (SELECT DISTINCT he.UserID, he.HabbitID FROM #HabitEntry he) AS a
    CROSS APPLY (
    SELECT TOP 1
    FROM cte4 c4
    WHERE a.UserID = c4.UserID
    AND a.HabbitID = c4.HabbitID
    ORDER BY c4.BegDate DESC
    ) c4
    HTH,
    Jason
    Jason Long

  • I updated to ios7 on my iphone 4 and now cant install apps and one app says waiting for 2 days now. Also it started ading apps from my wife's phone onto my phone even though we have separate apple ids.

    I updated to ios7 on my iphone 4 and now cant install apps and one app says waiting for 2 days now. Also it started ading apps from my wife's phone onto my phone even though we have separate apple ids.

    We do not share an apple ID and her phone is now logged in with her account and I have since backed it up on itunes under her account as well. I have turned off automatic downloads on her phone but they still keep downloading. I delete one app and then another one just appears on the phone.

  • Java Swing App hangs on socket loop

    H}ello everyone i've run into a bit of a snag with my application, its a simple chat bot right now but will evolve into a chat client soon. I can't do that however since my app hangs when i look through the readLine() function to receive data and i dont know how to fix this error. The code is below.
    The doSocket() function is where the while loop is if anyone can help me with this i'd be very greatful.
    * GuiFrame.java
    * Created on August 13, 2008, 9:36 PM
    import java.net.*;
    import java.io.*;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    * @author  brian
    public class GuiFrame extends javax.swing.JFrame {
        /** Creates new form GuiFrame */
        public GuiFrame() {
            initComponents();
        Socket client_sock = null;
        PrintWriter out = null;
        BufferedReader in = null;
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                         
        private void initComponents() {
            convertButton = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            setTitle("Test Bot");
            convertButton.setText("Connect");
            convertButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    convertButtonActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(41, 41, 41)
                    .addComponent(convertButton)
                    .addContainerGap(42, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(22, 22, 22)
                    .addComponent(convertButton)
                    .addContainerGap(26, Short.MAX_VALUE))
            pack();
        }// </editor-fold>                       
    private void convertButtonActionPerformed(java.awt.event.ActionEvent evt) {                                             
        if (convertButton.getText()=="Connect") {
                    String old;
                    try {
                        client_sock = new Socket("www.spinchat.com", 3001);
                        out = new PrintWriter(client_sock.getOutputStream(), true);
                        in = new BufferedReader(new InputStreamReader(client_sock.getInputStream()));
                    } catch (UnknownHostException e) {
                    } catch (IOException e) {
                try {
                    doSocket();
                } catch (IOException ex) {
                    Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
        } else if (convertButton.getText()=="Disconnect") {
            out.println("e");
            out.close();
            try {
                client_sock.close();
                in.close();
            } catch (IOException ex) {
                Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
    private void doSocket() throws IOException {
        BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
        String userInput;
        String old;
            while ((userInput = stdIn.readLine()) != null) {
                old = userInput;
                if (userInput != old) {
                    String proto = userInput.substring(0, 0);
                    if (proto == ":") {
                        out.println("{2");
                        out.println("BI'm a bot.");
                        out.println("aNICKHERE");
                        out.println("bPASSHERE");
                    } else if (proto == "a") {
                        convertButton.setText("Disconnect");
                        out.println("JoinCHannel");
        * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new GuiFrame().setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JButton convertButton;
        // End of variables declaration                  
    }Edited by: briansykes on Aug 13, 2008 9:55 PM
    Edited by: briansykes on Aug 13, 2008 9:56 PM

    >
    ..i've run into a bit of a snag with my application, its a simple chat bot right now but will evolve into a chat client soon. >Is this intended as a GUId app? If so, I would stick to using a GUI for input, rather than reading from the command line (which when I run it, is the DOS window that jumps up in the BG - quite counterintuitive). On the other hand, if it is intended as a non-GUId or headless app., it might be better to avoid any use of JComponents at all.
    My edits stick to using a GUI.
    Other notes:
    - String comparison should be done as
    s1.equals(s2)..rather than..
    s1 == s2- Never [swallow exceptions|http://pscode.org/javafaq.html#stacktrace] in code that does not work.
    - Some basic debugging skills are well called for here, to find where the program is getting stuck. When in doubt, print out!
    - What made you think that
    a) a test of equality on a member against which you had just set the value to the comparator, would logically lead to 'false'?
    old = userInput;
    if (userInput != old) ..b) A substring from indices '0 thru 0' would provide 1 character?
    String proto = userInput.substring(0, 0);
    if (proto == ":") ..
    >
    ..if anyone can help me with this i'd be very greatful.>Gratitude is often best expressed through the offering of [Duke Stars|http://wikis.sun.com/display/SunForums/Duke+Stars+Program+Overview].
    * GuiFrame.java
    * Created on August 13, 2008, 9:36 PM
    import java.net.*;
    import java.io.*;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.swing.*;
    * @author  brian
    public class GuiFrame extends JFrame {
        /** Creates new form GuiFrame */
        public GuiFrame() {
            initComponents();
        Socket client_sock = null;
        PrintWriter out = null;
        BufferedReader in = null;
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
            convertButton = new JButton();
            setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            setTitle("Test Bot");
            convertButton.setText("Connect");
            convertButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    convertButtonActionPerformed(evt);
            GroupLayout layout = new GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(41, 41, 41)
                    .addComponent(convertButton)
                    .addContainerGap(42, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(22, 22, 22)
                    .addComponent(convertButton)
                    .addContainerGap(26, Short.MAX_VALUE))
            pack();
            setLocationByPlatform(true);
        }// </editor-fold>
    private void convertButtonActionPerformed(java.awt.event.ActionEvent evt) {
        if (convertButton.getText()=="Connect") {
                    String old;
                    try {
                        System.out.println( "Connect start.." );
                        client_sock = new Socket("www.spinchat.com", 3001);
                        out = new PrintWriter(client_sock.getOutputStream(), true);
                        in = new BufferedReader(new InputStreamReader(client_sock.getInputStream()));
                        System.out.println( "Connect end.." );
                    } catch (UnknownHostException e) {
                        e.printStackTrace();
                    } catch (IOException e) {
                        e.printStackTrace();
                try {
                    doSocket();
                } catch (IOException ex) {
                    Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
        } else if (convertButton.getText()=="Disconnect") {
            out.println("e");
            out.close();
            try {
                client_sock.close();
                in.close();
            } catch (IOException ex) {
                Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
        private void doSocket() throws IOException {
            System.out.println( "doSocket start.." );
            String userInput;
            String old;
            userInput = JOptionPane.showInputDialog(this, "Send..");
            while(userInput!=null && userInput.trim().length()>0) {
                System.out.println( "doSocket loop 1.." );
                String proto = userInput.substring(0, 1);
                System.out.println("proto: '" + proto + "'");
                if (proto.equals(":")) {
                    System.out.println("Sending data..");
                    out.println("{2");
                    out.println("BI'm a bot.");
                    out.println("aNICKHERE");
                    out.println("bPASSHERE");
                } else if (proto.equals("a")) {
                    convertButton.setText("Disconnect");
                    out.println("JoinCHannel");
                userInput = JOptionPane.showInputDialog(this, "Send..");
            System.out.println( "doSocket end.." );
        * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new GuiFrame().setVisible(true);
        // Variables declaration - do not modify
        private JButton convertButton;
        // End of variables declaration
    }

  • 10.6 -- All Office 2008 apps hang at splash screen. FontCache Tool runaway

    Did an upgrade of 10.5 to 10.6. Nearly everything works fine. Can't launch Office 2008. All apps hang at their splash screen; usually at Optimizing Font Menu Performance.
    Once an app is opened, in Activity viewer you'll find a process called FontCache Tool using >90% of the CPU (on my Core Duo MBP at least, YMMV). I suppose it's saying a lot about 10.6 that the computer is completely usable with that runaway process. Even after forcing the office app(s) to quit, Font Cache Tool stays running until it's killed manually.
    I have yet to find out if FontCache Tool is an Apple or MS process. I think it's microsoft.
    This happens under multiple users.
    This happens after reinstalling Office.
    This was an Office 2008 upgrade from Office 2004.
    After reinstall, and installing Rosetta, office 2004 will run, but office 2008 will not.
    Office 2008 is 12.2.1.
    I am running FontAgent Pro for font management, and so font book sees certain activated fonts as duplicates. (Validate fonts shows duplicate warnings but no errors). FontAgent Pro 4.0.3 is listed as Snow Leopard compatible. So is Office 2008.
    I have yet to do a clean SL install, which I'm guessing will fix it, but I'm curious if there is a sub-sledgehammer approach, or if I am the only person with this issue.
    Other probably irrelevant facts include that the computer is bound to both Active Directory and OS X OpenDirectory servers. Open Directory is running on Leopard 10.5 Server. It does have some managed preferences, including those for Office (e.g. to set default to .doc rather than .docx) but the situation persists even after removing those managed preferences.
    Normally really specific problems are easy to isolate and solve, but I'm at a loss.
    Any help appreciated
    keppie

    Hey i think i figured it out.
    Had the same prob. 10.6 12.2.1 entourage hanging.
    Renamed FCT, instantly prompted that a font was corrupt. Removed the corrupt Font: KufiStandardGK.ttf << this just happened to be my one corrupt font.
    A little troubleshooting i did leading up to this, I read your post and my situation was the same. I use Linotype X to manage fonts. I disabled all but the minimum fonts (i moved them into a folder font_trouble in the same folder)
    I also deleted every office pref/plist setting i thought relevant to startup which triggered the microsoft setup assistant (watched via the console app) and it ran through its check and then immediately the fontcachetool started and went awol on cpu time. Once i killed it--during the starting up of word and entourage... timing may be unrelated but i did them at nearly the same time.
    Ps. Your post was extremely well written and I apologize for my stream of consciousness, less than stelllar response... hope this helps if not feel free to ping me for more details on what I did...
    Good Luck.. All my office apps are running normally now.

  • Camera App Hangs On Startup

    Hi,
    the camera app hangs when I start it up. The shutter doesn't open (I can switch to the camera roll and view photos though). I tried restore twice, doesn't help. Sounds like a hardware issue to me!?
    Anyone else experienced something like this?
    Chris

    I forgot to post back with the results of my trip to the Apple Store. The tech restarted the phone with boot diagnostics which reported no camera present. His first thought was that the camera cable might have wiggled loose. He popped the cover, reseated the camera cable, and rebooted. Same result: no camera present. He deemed it faulty hardware and replaced the phone. I'm not sure how to access the boot diagnostics (Google probably knows), but it might be worth seeing if the camera hardware is detected. Hope this helps.

  • App hang up when opening cc files?

    Are there any others having issues with opening InDesign CC files where the app hangs up and you have to force quite and restart it? This is happening way too often for me and I'm suspicious that it might have to do with Suitcase. Any help would be greatly appreciated. I've already had to force quit 3 times today. Thanks!

    Sorry if this is posted in the wrong forum
    Office questions should be posted on Microsoft's own forums for their Mac products:  http://www.officeformac.com/productforums

  • Count consecutive days in array

    Hi,
    I'm looking for an algorithm to count consecutive days in array, but i don't find one.
    for example, if i have this array.
    2009/07/01
    2009/07/02
    2009/07/03
    2009/07/06
    2009/07/08
    2009/07/09
    2009/07/10
    2009/07/11
    The result be
    3
    1
    4
    Anyone have one?
    Thanks for all.

    jverd wrote:
    kajbj wrote:
    It's a fairly specialist algorithm so you are unlikely to find someone to post a solution. By just keeping a reference to the previous date, it is easy to iterate though the list counting consecutive dates.I think the trick to making this algorithm sucessful is to make sure that when you change months your algorithm doesn't set consec_days to 0 Why not?Presumably he's talking about this case:
    7/31
    8/1
    and not this case
    7/1
    8/1
    So he really should have said, "...when you increment month by one, or from 12 to 1, and the day went from the last day of the old month to 1, don't set consec_days to 0"Ok. I would use the Calendar class and SimpleDateFormat. The tricky part would otherwise be to keep track of days per month, and leap year.

  • Adobe apps hang after upgrade to Yosemite

    Adobe apps hang after upgrade to Yosemite - requires force quit and reopen...any advice?

    thanks, Kurt...we'll see...I upgraded to Yosemite so I could load the newer Adobe CC anyway - I'll upgrade the suite to the cloud and see what happens

  • How to get a refund for app store purchases after 90 days

    Is it possible to recieve a refund for App store purchases after 90 days have passed. In my case I purchased several apps by the same developer which cost around £10 in total, but due to a recent update they are now unusable and lead to frustration as they are impossible to use. The initial purchase was longer than 90 days ago, however the most recent update that has lead to the faulty item was probably within the last 90 days.
    many thanks.

    Click Contact Us at the bottom of this page and contact iTunes support and ask.
    In general, all sales are final.

  • How to find consecutive days?

    Hi I have a requirement, where I need to find all employees who have taken 5 consecutive days off in one week.
    I am trying to build a query in BI, which can identify these records, but of no avail. I am wondering if I can do this in visual Composer. My data output currently looks like this in a table.
    Employee number     calendar day    time-off hours
      100                           6/8/2009         8
      100                           6/9/2009         8
      100                           6/10/2009       8
      100                           6/11/2009       8
      100                           6/12/2009       8
      101                           6/1/2009         8
      101                           6/5/2009         8
      I like to loop through this table, somehow, and identify that employee 100, has 5 consecutive days off, but not 101.
      I like to filter those employees who do not have 5 consecutive days off, and just show those who have 5 days off, like employee number 100. My output should look like, this
    Employee number     calendar day    time-off hours
      100                           6/8/2009         8
      100                           6/9/2009         8
      100                           6/10/2009       8
      100                           6/11/2009       8
      100                           6/12/2009       8
    Any ideas will be greatly appreciated. I am trying out dynamic expression, but cannot find a way to access the first row of data, while processing the second row.

    Hi
    Why dont you try with time characteristics '0CALWEEK'. Add '0CALWEEK' to your infocube & map it with the date which you already have in the table. Now consider the your example for employee '100' -
    100 6/8/2009 8
    100 6/9/2009 8
    100 6/10/2009 8
    100 6/11/2009 8
    100 6/12/2009 8
    by adding Calweek you will get - 100   24.2009 (that is 24 th week)  40 hrs.
    Now in your query divide this 40 hrs (that is total working hours in week) with daily min working hrs. (In your case assume it 8 Hrs per day). So in query you will get number of working days in a week for each employee. From this you can easily find out how many leaves each employee has taken.
    I think this is what you are looking for.
    Regards
    Sandeep

  • Hi. I have a problem with downloading from app store while last three days. An error did mot allow me to that. It's number is 1009.

    I have a problem with downloading from app store while last three days. An error does not allow me to take any app. The error number is 1009.

    Thats the ugliest code I've seen in a while and may be hampering your abilities to debug it. No offense - you have to start somewhere - think of it as somewhat constructive criticism.
    However, I cannot find any place where this is happening. Its happening on line 193.
    Also, this only happens when you try to move certain pieces to certain squaresThat might be a clue. Try printing out the indexes before line 193 and see what happens. Maybe use a debugger to step through your code.

  • App hangs on tab click if connection in use

    If tab one is using connection1 and running a script and i click on tab2 which is also connected using connection1, the app hangs until tab1 finishes the script it was running and connection1 is again free.
    Shouldnt each tab really open a new connection with the same parameters as the connection from the connections list? If not then it should at least not let you select any tabs using connection1 while connection1 is busy so that you can continue working on tabs with other connections.
    I am using 1.5.0.53 on windowsxp.
    Thanks

    By default, all worksheets use the same single threaded connection. To get a worksheet with an unshared connection, use ctrl-shift-N

  • Yosemite mail.app hang

    I just upgraded to Yosemite and have found that Mail.app hangs. I would open it and 10 or 15 seconds later it would hang. I would get a spinning beach ball and Mail was listed as not responding in Activity Monitor.
    I was able to narrow down the problem to one account. The account works in Thunderbird on the same Mac, so I don't think the account is a problem.
    Any ideas how and can trouble shoot this, or otherwise diagnose and fix the problem?

    Hi railmeat,
    Sounds like you may be experiencing an issue with your Mail app. I would like to recommend that you use this article as a reference for troubleshooting this issue further:
     OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

Maybe you are looking for

  • Font color in text box

    Here's the scenario.  User copies text from black and white document in acrobat 8.2.  User then goes and pastes the text into a text box on a different page.  When the user leaves the text box, the text all goes to the same color as the text box back

  • Diabled Apple ID

    Hi there, For the past couple weeks, I've been trying to update my iPad and iPhone, but cannot due to my Apple ID being disabled. I've changed my password 4 times now, and it still won't take. What can I do? There are a number of updates now, and I w

  • UC500 user licensing

    Hi, license file is UC520-8U-2BRI-K9 , it shopuld allow just 8 users. My question is what user means?does it mean  extension? when I do " show version" I get the following input: 14 User Licenses 10 FastEthernet interfaces 2 ISDN Basic Rate interface

  • Cannot start Microsoft Office Outlook. Cannot open the Outlook window.

    I get the following error message when opening Microsoft Outlook (using Windows 7): Cannot start Microsoft Office Outlook. Cannot open the Outlook window. The set of folders cannot be opened. Errors have been detected in the file. C:/Users/owner/AppD

  • Reposition Image in Slideshow?

    I have a full screen slideshow in my phone layout.  The photo is originally a Horizontal one.  I have the slides set to fill frame proporitional.  I do not like the automatic crop, so how do I select an image and then move it around so that I get the