Trying to make sense of histogram data

Hi,
I'm trying to create some histograms for some highly skewed columns and try to make sense of the gathered statistics.
The table I am analyzing has two columns:
TRE_ID_O indicates the transaction number in which the row was added.
TRE_ID_V indicates the transaction number in which the row was deleted.
Transaction # 1 loads a lot of data. All loaded rows will have TRE_ID_O = 1 and TRE_ID_V = null.
In subsequent transactions rows are added and deleted. After some time the data distribution over the transaction ID's looks like this:
Count(*) TRE_ID_O
944940      1
1        2
1        4
2        5
1        6
1        7
1        8
1        12
1        13
1        14
1        15
1        16
1        17
1        18
1        19
1        20
1        21
COUNT(*) TRE_ID_V
944940      <null>
1        2
1        4
2        5
1        6
1        7
1        8
1        12
1        13
1        14
1        15
1        16
1        17
1        18
1        19
1        20
1        21Using the index on tre_id_o and tre_id_v for transaction numbers > 1 will be very selective.
Histogram data:
DBMS_STATS.GATHER_TABLE_STATS('NGM101','NGG_BASISCOMPONENT', METHOD_OPT => 'FOR COLUMNS SIZE auto tre_id_o');
DBMS_STATS.GATHER_TABLE_STATS('NGM101','NGG_BASISCOMPONENT', METHOD_OPT => 'FOR COLUMNS SIZE auto tre_id_v'); In DBA_HISTOGRAMS I find:
COLUMN_NAME ENDPOINT_NUMBER ENDPOINT_VALUE
TRE_ID_V    1               2     
TRE_ID_V    2               4     
TRE_ID_V    4               5     
TRE_ID_V    5               6     
TRE_ID_V    6               7     
TRE_ID_V    7               8     
TRE_ID_V    8               12     
TRE_ID_V    9               13     
TRE_ID_V    10              14     
TRE_ID_V    11              15     
TRE_ID_V    12              16     
TRE_ID_V    13              17     
TRE_ID_V    14              18     
TRE_ID_V    15              19     
TRE_ID_V    16              20     
TRE_ID_V    17              21     
TRE_ID_O    5500            1     Why the difference between TRE_ID_V and TRE_ID_O? (I found that the <null> value in tre_id_v makes the difference but why?)
Why is there only 1 bucket for TRE_ID_O ?
thanks Rene

Hello Rene,
if only one bucket is existing... you have no histograms or in other words:
One bucket means no histograms. (see also metalink note #175258.1)
-> method_opt => 'FOR ALL COLUMNS SIZE 1', Table and columns statistics. No histogram generated
Why the difference between TRE_ID_V and TRE_ID_O? (I found that the <null> value in tre_id_v makes the difference but why?)Let's have a look at the oracle documentation for DBMS_STATS.GATHER_TABLE_STATS:
http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_stats.htm#sthref8129
-> - AUTO : Oracle determines the columns to collect histograms based on data distribution and the workload of the columns.
Is this column TRE_ID_O not used in much queries or only used very infrequently? That would be an explanation
Try to gather the statitics only with data distribution
-> DBMS_STATS.GATHER_TABLE_STATS('NGM101','NGG_BASISCOMPONENT', METHOD_OPT => 'FOR COLUMNS SIZE SKEWONLY tre_id_o');
Btw. you maybe wonder why the null values are not shown in the buckets for column TRE_ID_V:
Have a look here:
http://www.ioug.org/client_files/members/select_pdf/05q2/SelectQ205_Kanagaraj.pdf
-> Before we move on, let us state that histograms are essentially “buckets” that
specify a range of values in a column. The Oracle kernel sorts the non-null
values in the column and groups them into the specified number of these
buckets so that each bucket holds the same number of data points, bounded
by the end point value of the previous bucket.
In the pdf document there are also some sql traces which show how oracle determine the columns, etc..
@ Rob:
As Sybrand already suggested, Oracle already has the statistics that your table contains 944957 rows of which 944940 are NULL for column tre_id_vOk that but i will make no sense... because histograms are created for the column tre_id_v.
Regards
Stefan

Similar Messages

  • Trying to make sense on how and if RBAC and MOAC could work together

    Hi All,
    We upgraded from 11.5.9 to R12.1.1 in Nov-2009.
    Since the time we have upgraded to R12, we are trying to make sense as to how and if RBAC and MOAC could work together.
    The use case is as below:
    *11i Days*
    US Accountant - accesses ‘AR superuser US’
    Canada Accountant - accesses ‘AR superuser Canada’
    France Accountant - accesses ‘AR superuser France’
    Spain Accountant - accesses ‘AR superuser Spain’
    North America Financial controller - Switches between 'AR superuser US' and 'AR superuser Canada'
    European Financial controller - Switches between 'AR superuser France' and 'AR superuser Spain'
    CFO - Switches amongst 'AR superuser US','AR superuser Canada', 'AR superuser France' and 'AR superuser Spain'
    Now in R12- (Wow there is MOAC!)
    US Accountant - accesses ‘AR superuser US’
    Canada Accountant - accesses ‘AR superuser Canada’
    France Accountant - accesses ‘AR superuser France’
    Spain Accountant - accesses ‘AR superuser Spain’
    North America Financial controller - accesses 'AR superuser North America'
    European Financial controller - accesses 'AR superuser Europe'
    CFO - accesses 'AR superuser Global'
    With R12 now there are 3 additional responsibilities.
    We have (like most of the other EBS customers) custom responsibilities and so there is maintenance.
    More the responsibilities more the maintenance...More the SOD issues.
    To prevent creating new responsibilities, we could use the ‘MO: Security Profile’ at the user level BUT that would mean that now these users would have access to multiple OUs for all the responsibilities...that is not good.
    What-If: There is only 1 responsibility 'AR SuperUser' and somehow using RBAC, roles are created and assigned to users so that they only have access to specific OUs.
    Apparently, MOAC works based on MO:Security Profile that is something that RBAC cannot control.
    Am I missing something...RBAC seems to be no good?
    In PROD(R12.1.1)- We are expecting that we would end up creating 100+ new responsibilities since we have many shared services users and they all want to benefit from MOAC...Appreciate, if you could please help us understand how we can prevent these 100+ new responsibilities from getting created?
    Thanks
    Rahul Gupta

    Hi Rahul,
    your question is quite interesting. I did a lot in the area of RBAC to understand the background.
    RBAC mainly allows you to
    - group responsibilities
    - build hierarchies
    - manage low level data access (via VPD)
    - Grant permissions (new with R12)
    Unfortunately you can't control profile options via RBAC. Therefore, the MO:Sec Profile has to stay on responsibility level. I was playing with the alternative to put this profile option on user level, but also in this case the number of maintenance steps will stay the same.
    I would like to share a document with you, what's your email (or search my name in linkedin)?
    kr
    Volker Eckardt

  • Trying to make sense of div tags and css

    i know that i am a few years late here, but i am looking ot make the migration from using tables and switching over to div tags and css. i have watched a few tutorials on you tube and am trying to understand everything.
    please tell me if this is correct.  a div tag is basically a table and css is what is used to style that div tag to meet your needs, is this a correct assumption??
    if you go to my current site www.tankinz.com you can clearly see that the site is made up of tables, basically these boxes or tables contain a different item or package that a customer can click on and buy.  by using div tags and css would each of these boxes, or tables be their own div?
    sorry for sounding a bit moronic but i am trying to make sense of all of this.
    please help!

    Markup (html) contains elements, such as html, body, h1, h2, p, span, div and so forth. Hence a <div>-tag is part of an element; the other part being the </div>-tag.
    The element structure of many web sites is basically (using HTML5 element names)
    html
         head
         body
              header
              nav
              aside
              article
              footer
    These elements can be positioned and styled using style rules (css). Depending on the style rules, the above structure can take on many different styles, without ever touching the markup.
    Have a look here for a simple two-column layout using the same structure as above http://www.456bereastreet.com/lab/developing_with_web_standards/csslayout/2-col/

  • Does not make sense in evaluating data using isnull(Command.name)

    Hi,
    Environment:
    Os - Windows 7
    Crystal report developed in CR2008 - .rpt developed and running successfully here with the same formula.
    VS2010
    CRforVS2010
    Does not make sense in evaluating data using isnull(Command.name)  function when the report is integrated into VS2010 using Crystal report for VS2010 (13.0.2).
    But the same report is running in crystal report 2008 (12.3.0.601)  report Dev environment when previewed.
    Please reply me ASAP.
    Thanks & Regards,
    Mani G.S.

    Thank you and are you using the MS SQL Native 10 drivers.
    And still need to know if you are using ODBC or OLE DB?
    Can you copy the SQL in and use the PUBS sample database? Or import the xtreme.mdb and use one those tables. You can get it from our sample reports:
    https://smpdl.sap-ag.de/~sapidp/012002523100005852352008E/cr_xi_xtreme_rep_smpl_en.zip
    Thanks again
    Don

  • How should I make sense of ExportPDF data?

    I'm using Adobe Livecycle GeneratePDFService and calling the ExportPDF method. I'm sending the method a system generated PDF and looking to retrieve the data in a way that I can progammatically parse out specific pieces of information and use them in a C# WCF Service. I can successfully hit the Adobe service and return various formats. So far I've analyzed the HTML32 and XML10 formats. Unfortunately, I can't make much sense of the data because there doesn't seem to be many indicators of placement on the page or within tables / line items. Here is an example of a challenge that I'm looking to overcome.
    Here is an image from the income section of an IRS Form 1040.
    The ExportPDF exports the below as format HTML32. As you can see there is no way to relate a row of the table with any of the dollar values. XML10 isn't much better.
    Income Attach Form(s) W-2 here. Also attach Forms W-2G and 1099-R if tax was withheld. If you did not get a W-2, see instructions. 7 Wages, salaries, tips, etc. Attach Form(s) W-2 . . . . . . . . . . . . 7 8a Taxable interest. Attach Schedule B if required . . . . . . . . . . . . 8a b Tax-exempt interest. Do not include on line 8a . . . 8b 9 a Ordinary dividends. Attach Schedule B if required . . . . . . . . . . . 9a b Qualified dividends . . . . . . . . . . . 9b 10 Taxable refunds, credits, or offsets of state and local income taxes . . . . . . 10 11 Alimony received . . . . . . . . . . . . . . . . . . . . . 11 12 Business income or (loss). Attach Schedule C or C-EZ . . . . . . . . . . 12 13 Capital gain or (loss). Attach Schedule D if required. If not required, check here ▶ 13 14 Other gains or (losses). Attach Form 4797 . . . . . . . . . . . . . . 14 15 a IRA distributions . 15a b Taxable amount . . . 15b 16 a Pensions and annuities 16a b Taxable amount . . . 16b 17 Rental real estate, royalties, partnerships, S corporations, trusts, etc. Attach Schedule E 17 18 Farm income or (loss). Attach Schedule F . . . . . . . . . . . . . . 18 19 Unemployment compensation . . . . . . . . . . . . . . . . . 19 20 a Social security benefits 20a b Taxable amount . . . 20b 21 Other income. List type and amount 21 22 Combine the amounts in the far right column for lines 7 through 21. This is your total income ▶ 22 Adjusted Gross Income 23 Educator expenses . . . . . . . . . . 23 24 Certain business expenses of reservists, performing artists, and fee-basis government officials. Attach Form 2106 or 2106-EZ 24 25 Health savings account deduction. Attach Form 8889 . 25 26 Moving expenses. Attach Form 3903 . . . . . . 26 27 Deductible part of self-employment tax. Attach Schedule SE . 27 28 Self-employed SEP, SIMPLE, and qualified plans . . 28 29 Self-employed health insurance deduction . . . . 29 30 Penalty on early withdrawal of savings . . . . . . 30 31a Alimony paid b Recipient’s SSN ▶ 31a 32 IRA deduction . . . . . . . . . . . . . 32 33 Student loan interest deduction . . . . . . . . 33 34 Tuition and fees. Attach Form 8917 . . . . . . . 34 35 Domestic production activities deduction. Attach Form 8903 35 36 Add lines 23 through 35 . . . . . . . . . . . . . . . . . . . 36 37 Subtract line 36 from line 22. This is your adjusted gross income . . . . . ▶ 37 35,000. 35,000. 35,000. </Figure>
    Is there a format which will output the PDF in a format that is progammatically parsable?

    Following up to myself here - I was able to get Camera Raw to convert an image such that the L*a*b* numbers matched DNGPE, but Hue and Sat are still off.  What I WAS doing previously, to no avail, was converting in Camera Raw using the same BASE profile I had selected in DNGPE.  I thought that since I hadn't made any corrections or changes in DNGPE, it would only be applying the base profile, and the images should match.
    To fix that, I used DNGPE to export a new profile (again, with no actual edits made), and converted using the exported profile.  Now Photoshop and DNGPE agree about the L*a*b* figures at least, though they still disagree about hue / sat.  DNGPE consistently reports hue numbers about 6º-10º higher than Photoshop, and saturation numbers that are 50-100% higher.  Saturation difference, I suspect, are from comparing HSB in Photoshop to HSL in DNGPE.  Not sure what would be causing the hue inaccuracy.  The RGB numbers differ wildly, too, so this is probably a color management issue.
    Duplicating DNGPE's color management to obtain identical Hue and Sat figures in another application is now the problem.  Put as simply as possible - "Where does DNGPE get it's hue / sat figures?"
    Message was edited by: dougboutwell

  • Trying to make sense of AS2 gradient fill matrices

    This one will likely interest kglad, but I'm all ears for
    insight from
    anyone who digs math.
    I've been working with gradient fills lately in AS2, which
    means I've
    been reading through related entries in the ActionScript 2.0
    Language
    Reference. Here's a quick example right out of the docs
    (slightly revised
    to boil it down to the essentials). The Drawing API draws a
    square and
    fills it with a linear gradient that goes from red (upper
    left) to blue
    (lower right).
    this.createEmptyMovieClip("gradient_mc",this.getNextHighestDepth());
    with (gradient_mc) {
    colors = [0xFF0000, 0x0000FF];
    fillType = "linear";
    alphas = [100, 100];
    ratios = [0, 0xFF];
    matrix = {matrixType:"box", x:100, y:100, w:200, h:200,
    r:(45/180)*Math.PI};
    beginGradientFill(fillType,colors,alphas,ratios,matrix);
    moveTo(100,100);
    lineTo(100,300);
    lineTo(300,300);
    lineTo(300,100);
    lineTo(100,100);
    endFill();
    The point of interest, to me, is that generic Object
    instance, matrix,
    with properies x, y, w, h, r, and matrixType. The x and y are
    for position
    and correspond to the moveTo(100,100) call. The w and h
    represent width and
    height. The r is rotation in radians. The matrixType is
    arbitrary (I
    guess), because the same matrix can be used for a radial
    gradient -- never
    mind that for now.
    The properties shown, arbitrary or not, are the ones
    demonstrated in the
    docs. That snippet does draw a 45deg red to blue gradient.
    The docs recommend a slightly different approach for Flash
    Payer 8 and
    higher; namely, the native Matrix class. Everything in the
    above sample
    remains except that the existing matrix line changes to these
    two lines:
    matrix = new Matrix();
    matrix.createGradientBox(200, 200, (45/180)*Math.PI, 100,
    100);
    Pretty obvious to see where they overlap. The matrixType
    property is
    gone, but hey ... everything works, so I'm not going to go
    looking for
    trouble.
    Here's the punch line. The docs *also* show an alternative
    Object
    approach, one in which the properties describe a 3x3 matrix
    whose properties
    are a, b, c, d, e, f, g, h, and i. After toying with this
    a-through-i
    example, I noticed a pattern in the values: c, f, and i are
    0, 0, and 1
    respectively. That seems to correspond to the conventional
    graphics matrix
    a b u
    c d v
    tx ty w
    ... where u, v, and x are 0, 0, and 1. Seems fairly clear
    that tx and ty
    would correspond to x and y. After tracing the properties of
    the matrix
    variable (after the createGradientBox() call) it seemed
    reasonable to me to
    make the following mapping:
    a:a b:b c:0
    d:c e:d f:0
    g:tx g:ty i:1
    ... which led me to replace the original matrix declaration
    with this (back
    to a single line):
    matrix = {
    a:0.086316745750311,
    b:0.086316745750311,
    c:0,
    d:-0.086316745750311,
    e:0.086316745750311,
    f:0,
    g:200,
    h:200,
    i:1
    Those values, by the way, come from my tracing the
    properties of this
    matrix.createGradientBox(200, 200, (45/180)*Math.PI, 100,
    100);
    The weird part is, that still gives a 45deg angled gradient,
    but it's
    super-heavily banded. Not really a gradient at all, but more
    like four
    colored stripes -- red, blue, red, blue -- from upper left to
    lower right.
    Can anyone explain to me why?
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

    GWD,
    > I couldn't leave it alone. I came back to it.
    Ha! I know that feeling. :)
    > matrix = { a:200, b:-100, c:0, d:-100, e:200, f:0,
    g:200, h:200, i:1 };
    >
    > gets close, but its still not quite right. I think the
    difference here is
    > that skew is expressed differently.
    That makes sense. And yes, that comes pretty close.
    > I found a better explanation here:
    >
    http://www.flashdevils.com/tutorials.php?id=142
    Thanks, GWD! That helps a lot.
    > [I would be inclined to use the other approaches if I
    could get
    > away with it.]
    Yeah, I definitely agree. I find it odd that the docs even
    mention it,
    but since they do, I found myself elbow deep in wondering
    why. Thanks for
    input!
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Trying to make sense of this speed change.

    Ok, I'll try and make this clear, and then see if someone can explain to me why I should put up with this.
    I've had BT Infinity since November 2011 and was on the option 2 40mbps connection, and for the last 14 or so months I've had very few issues and CONSISTANTLY had the full 40mbps speed.
    Now, two weeks ago I upgraded to the new option 2 78mbps contract because I wanted my P2P to be unlimited again, which they had stopped on the old contract. On day one I noticed that my IP profile was set to 52mbps and while i thought it was odd it wasn't set to 78 I thought I'd let it settle and see if it just needed time. For two days I got that full 52 down and about 12-15 up depending on time of day.
    Then I had a power cut and when it all came back up my IP profile was set to 30.75mbps and I was only getting 30mbps up and 8-11 up depending on time of day. I rang up and they told me they would reset the line and profile. That was thursdaay, and today (sunday) its still showing my IP profile as 30.75 and I'm still getting the same speed.
    When i rang again I got told that maybe that was all the speed I would get. To which I said how the hell could I suddenly be only able to get 30mbps when I've had no troulbe getting 40mbps on the old contract for well over a year.
    Frankly this seems ridiculous, and made worse by the fact you have to speak to multiple help desks, none of which can actually do ANYTHING to help you, and anything to do with IP profile change or line reset needs an engineer to be sent out, AND he can't reset it either, but has to come out and then phone his help desk to do it.... CAN this system be anymore stupid?
    I've been with BT since broadband first came out, but frankly the service has got utterly ridiculous, and this speed issue if I can't resolve it might be the final straw to break the camels back.
    Sorry for the whine, but if someone can put anything positive to this I'd love it, as I'm very frustrated having spent many hours on phone over last two weeks since this started trying to resolve it.

    in my experience I've never in all the years with BT seen the IP profile go UP automatically.  I can assure you that DLM profile and sync speed do go up of their own accord when line quality is consistently ok.  It does take much longer than you would hope, though.  Often 2 to 3 weeks, not even 'just' 10 days.
    While waiting for a hoped for increase, it is worth disconnecting and reconnecting the router (NOT modem) each morning. Either use the web interface (I prefer that) or physically reset or power off/on the router.
    The reason for this is  that the IP/BRAS profile is set for the sync speed (cabinet->modem) when the router makes a pppoe connection; the sync speed is set from the DLM profile.  The DLM change is always automatic, though often slow.  Sometimes, when DLM updates itself and forces a resync (usually in the middle of the night), the pppoe connection from router->exchange is also broken.  In that case, the router automatically makes a new pppoe connection and the IP/BRAS proifile is updated.  However, often the resync at the cabinet->modem level is so quick that the router->exchange connection carries on unbroken.  In that case you can end up with a fast new sync speed, but with the old slower IP/BRAS profile; this is fixed by manual router disconnect/reconnect.

  • Does it make sense to create a worker role for data access to DocumentDB?

    Hi,
    I'm building an ASP.NET MVC app that will run on Azure. I'm using DocumentDB as its back-end database.
    Sometimes, I return multiple data sets from different collections that need to be "reorganized". I handle this using LINQ in my application code. Does it make sense then to put all my data access and manipulation code into a worker role that I
    can call from my web application that will run as a web role?
    The reason why I'm thinking this may be beneficial is that I could scale up my worker role to increase its data manipulation capacity.
    On the other hand, in most cases, my web role has to wait for a response from the DAL before it can do anything -- meaning, I cannot handle data access asynchronously -- I'm wondering if worker role approach makes any sense. I think mostly, worker roles
    are used for operations that can run asynchronously.
    I'd appreciate your feedback on this.
    Thanks, Sam

    Hi,
    Worker role applications are background processing applications like Windows processes which run in the background. Applications hosted within worker roles can run asynchronous, we usually use worker role to do some long-running or perpetual tasks, and
    use scale function to load balance the tasks. Based on your description, it seems that worker role is a good choice for you, please try it, if you have further issues, welcome to create new threads in our forum.
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • TS1702 I am trying to install an app, I'm asked to enter my password, but my keyboard won't pop up, only the option to paste, but when I choose paste, nothing fills in (which makes sense as I have not copied anything). How can I make my keyboard appear?

    I am trying to install an app, I'm asked to enter my password, but my keyboard won't pop up, only the option to paste, but when I choose paste, nothing fills in (which makes sense as I have not copied anything). How can I make my keyboard appear?

    Are you tapping on the field you want to enter data into? That opens the soft keyboard. If you touch the field and hold it, the paste option will appear.
    Barry

  • Error: there is a problem connection to the GPRS service in your registered home network, error trying to make data connection. this may be casued by a voice call, a wired activesync connection or inncorrect network setting

    like 2 weeks ago i called in to att to see how much is the data plan and it would end up costing $30.
    so i was like screw that. well they figured that i got a new phone replacing the LG shine. so they asked
    for to call this number so they can recieve data which would updated the system that i have a plam treo 750.
    ever since this conflict i can't send picture messages. i get that problem. everytime i attempt to send a picture
    i recieve this.
    - there is a problem connection to the GPRS service in your registered home network.
    - then i get a test that says error trying to make data connection. this may be casued by a voice call,
    a wired activesync connection or inncorrect network setting.
    please someone help me.
    btw. hard reset and soft reset did not work for me.
    Post relates to: Treo 750 (AT&T)

    problem fix, i had to call in. customer serivce. and when i called to ask about the plan. they blocked it. so i had to unblock my internet.
    Post relates to: Treo 750 (AT&T)

  • The iCloud was never verified therefore never backing up anything on my iphone 4s because it was the wrong email and now I'm trying to make a new one but it says if I delete the account it will remove it's data from my phone. Will I lose everything?

    The iCloud was never verified therefore never backing up anything on my iphone 4s because it was the wrong email and now I'm trying to make a new one but it says if I delete the account it will remove it's data from my phone. So if I put delete account will I lose everything on my Iphone?

    This was EXACTLY what I needed about the purchases I made from my device. However, is there a way to re-download other ones you've made from a computer? Because I realized some of them were not just purchased from my device.
    This is a picture of what it looks like now:
    http://tinypic.com/r/107quxu/7
    As you can see, the stuff circled in red doesn't give me an option to download from Cloud Beta because it already says "downloaded".
    any way to get around that?

  • I am trying to update my apps on my 4s but says there is not enough space. It shows i have 19.3 GB of 25 GB. Also, in my itunes...it shows about a quarter of space on the bar is photos but I took all the photos out. Don't make sense.

    I am trying to update my apps on my 4s but says there is not enough space. It shows i have 19.3 GB of 25 GB. Also, in my itunes...it shows about a quarter of space on the bar is photos but I took all the photos out. Don't make sense.

    It's telling you there's not enough space *on your 4S*.  The 25GB you refer to is probably that on iCloud, that's different memory than that on your iPhone.  You need to delete video, pictures, apps, or whatever ON THE IPHONE, to make enough room for downloading updates to your apps.

  • HT1918 I changed the card and i want to know how make to change the data from itunes. I tried and doesn't work.

    I changed the card and i want to know how make to change the data from itunes. I tried and doesn't work. Please, Help Me!

    No. That's not what I said. You can get an out of warranty replacement, which will be exactly the same model, color, and will be locked in exactly the same way the original is. If you want an iPhone 5, get the 4S replaced, sell it, and use the money to put toward a new phone.

  • HT5824 Im trying to make the appointments on the calendar in my phone transfer to the icloud.if i reset my documents in icloud, can or will it delete data on my iphone?

    Im trying to make the appointments on the calendar in my phone transfer to the icloud calendar on my PC. If i reset my documents in icloud, can or will it delete data on my iphone?

    Hi jordanpaulbrown,
    I apologize, I'm a bit unclear on the exact configuration you are currently using/describing. If you are talking about My Photo Stream, you should be aware that it only stores stores photos for 30 days in order to allow for other device to connect and download the photos. If you would like to keep them long term off of your iPhone, you may want to set up your computer (Mac or Windows) to automatically download them. You may find the following article helpful:
    iCloud: My Photo Stream FAQ
    If you are running iOS 8 on your iPhone, you may also find the following article about changes to Photos useful:
    Get help finding your Photos in iOS 8
    Regards,
    - Brenden

  • HT204053 I tried to make a purchase with my apple id after changing the experiration date on my credit card and it does not work

    I tried to make a purchase from the app store ( the French app store using my French apple ID and credit card) , i had just changed the experition date for my credit card and it did not work, should I do anything else?
    Thanks

    Then you should contact them:
    http://www.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • Cross Reference displays wrong Chapter

    I have several FrameMaker files that will eventually be combined into one book. In some chapters there are references to outside chapters. At some point another person that was using these files had to switch the Chapter title; for example Chapter 7

  • Delivery Output Type not updated automatically in change mode

    Hello, I am dealing with a strange problem. If i open delivery to change using VL02N then, output type configured for reissue is updated properly and on save ouput type is getting successfully processed also. Now if i open VL03N and then using change

  • BIP Desktop Install Problem:  Run-time error '9' Subscript out of range

    Hi All, I am trying to get my BIP Desktop to work. I have notice previous threads regarding the internet explorer security patches affecting BIP Desktop and my problem is similar. Here is my problem: 1. I installed BIP Desktop 5.7.146. 2. I start Tem

  • IWeb shows red site icon and won't allow any functions

    When I open iWeb I'm unable to use any functions (such as new file). The site shows up as a red icon. What do I need to do to use this application?

  • Noob question about trying to duplicate rows in a table

    Simplification of problem is I've got a table with user_id, name, year where user_id is pk. I would like to take all the rows that match year=2008 and insert them into the same table, but start the user_id at a certain number and set year=2009. I kno