See my query and error, see my query and error

hi master
sir i use inner query but not run
please see my query with error
query :==========
select accid as acccode,fstatus, case when fstatus=1 then
(select sum(drbal) from accbal where substr(accbal.accid,1,length(acccode))=acccode)
end what
from chartofacc
error :========
SQL> /
(select sum(drbal) from accbal where substr(accbal.accid,1,length(acccode))=acccode)
ERROR at line 2:
ORA-00904: "ACCCODE": invalid identifier
please sir give me any idea *

Does this column ACCCODE exist in your table accbal?
The columns in the outer query will not be visible in the inner query but the vise versa is true.

Similar Messages

  • Can someone  see why im getting error in this query ?

    I had 2 queries , instead of using left join i put them together. Now i get error , can someone just take a look to see if syntax wrong somewhere ?
    select * from
    select i.ips,
    a.ips,
    a.question_type,
    sum(a.score) score,
    p.project_name,
    p.project_segment,p.location,p.project_exec_model,
    p.project_exec_model||' - '||p.project_config pmodel,
    one.score schedule,two.score cost,three.score execution,four.score commercial,
    nvl(one.score,0)+nvl(two.score,0)+nvl(three.score,0)+nvl(four.score,0) as total,
    (select sum(prev_score) prev from XT_RISK_PAST2 where ips = i.ips) prev_score,
    (select max(createdt) from tbl_risk_answer where (ips,sample_num) in
    (select ips,max(sample_num) from VW_RISK_SCORE group by ips) and ips=i.ips) last_dt
    from
    (select v.project_id,v.ips,v.sample_num,v.question_id,v.header_desc,v.section_area,v.score,
    decode(bi_recurse(q.active_question,1,2),2,'OTR','-')||decode(bi_recurse(q.active_question,1,1),1,'ITO','-') question_type
    from VW_RISK_SCORE v left join tbl_risk_question q on v.question_id=q.question_id
    where (v.project_id,v.sample_num) in
    (select project_id,max(sample_num) sample_num from VW_RISK_SCORE group by project_id)
    ) a,
    (select distinct ips from VW_RISK_SCORE) i,
    (select ips, sum(score) score from VW_RISK_SCORE where section_area=1 group by ips) one,
    (select ips, sum(score) score from VW_RISK_SCORE where section_area=2 group by ips) two,
    (select ips, sum(score) score from VW_RISK_SCORE where section_area=3 group by ips) three,
    (select ips, sum(score) score from VW_RISK_SCORE where section_area=4 group by ips) four,
    tbl_risk_project p
    where i.ips=one.ips(+) and i.ips=two.ips(+) and i.ips=three.ips(+) and i.ips=four.ips(+) and ito on scores.ips=ito.ips
    and i.ips=p.ips and  a.question_type='-ITO' group by  i.ips,a.ips, a.question_type, p.project_name, p.project_segment, p.location, p.project_exec_model, p.project_exec_model||' - '||p.project_config, one.score, two.score, three.score, four.score, nvl(one.score,0)+nvl(two.score,0)+nvl(three.score,0)+nvl(four.score,0), (select sum(prev_score) prev from XT_RISK_PAST2 where ips = i.ips), (select max(createdt) from tbl_risk_answer where (ips,sample_num) in
    (select ips,max(sample_num) from VW_RISK_SCORE group by ips) and ips=i.ips)
    ) scores and here is error I get.
    ORA-00604: error occurred at recursive SQL level 1
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at line 12
    ORA-00920: invalid relational operator
    00604. 00000 - "error occurred at recursive SQL level %s"
    *Cause:    An error occurred while processing a recursive SQL statement
    (a statement applying to internal dictionary tables).
    *Action:   If the situation described in the next error on the stack
    can be corrected, do so; otherwise contact Oracle Support.
    Error at Line: 30 Column: 4

    You would move them to the from-clause, just like one, two, three and four.
    Something like:
    untested for obvious reasons
    select *
      from (select i.ips,
                   a.ips,
                   a.question_type,
                   sum(a.score) score,
                   p.project_name,
                   p.project_segment,
                   p.location,
                   p.project_exec_model,
                   p.project_exec_model || ' - ' || p.project_config pmodel,
                   one.score schedule,
                   two.score cost,
                   three.score execution,
                   four.score commercial,
                   nvl(one.score, 0) + nvl(two.score, 0) + nvl(three.score, 0) +
                   nvl(four.score, 0) as total,
                   (select sum(prev_score) prev
                      from xt_risk_past2
                     where ips = i.ips) prev_score,
                   (select max(createdt)
                      from tbl_risk_answer
                     where (ips, sample_num) in
                           (select ips, max(sample_num)
                              from vw_risk_score
                             group by ips)
                       and ips = i.ips) last_dt
              from (select v.project_id,
                           v.ips,
                           v.sample_num,
                           v.question_id,
                           v.header_desc,
                           v.section_area,
                           v.score,
                           decode(bi_recurse(q.active_question, 1, 2),
                                  2,
                                  'OTR',
                                  '-') ||
                           decode(bi_recurse(q.active_question, 1, 1),
                                  1,
                                  'ITO',
                                  '-') question_type
                      from vw_risk_score v
                      left join tbl_risk_question q
                        on v.question_id = q.question_id
                     where (v.project_id, v.sample_num) in
                           (select project_id, max(sample_num) sample_num
                              from vw_risk_score
                             group by project_id)) a,
                   (select distinct ips from vw_risk_score) i,
                   (select ips, sum(score) score
                      from vw_risk_score
                     where section_area = 1
                     group by ips) one,
                   (select ips, sum(score) score
                      from vw_risk_score
                     where section_area = 2
                     group by ips) two,
                   (select ips, sum(score) score
                      from vw_risk_score
                     where section_area = 3
                     group by ips) three,
                   (select ips, sum(score) score
                      from vw_risk_score
                     where section_area = 4
                     group by ips) four,
                   tbl_risk_project p
                   -- moved part I
                   (select ips,
                           sum(prev_score) prev
                      from xt_risk_past2
                     where ips = i.ips) five --or whatever
                   -- moved part II
                  (select ips,
                     max(createdt) maxcreatedt
                    from tbl_risk_answer
                   where (ips, sample_num) in  (select ips, max(sample_num)
                                                  from vw_risk_score
                                              group by ips)
                   group by ips) six -- or whatever              
             where i.ips = one.ips(+)
               and i.ips = two.ips(+)
               and i.ips = three.ips(+)
               and i.ips = four.ips(+)
               and i.ips = five.ips -- outerjoin if needed
               and i.ips = five.ips -- outerjoin if needed
               and ito on scores.ips = ito.ips
               and i.ips = p.ips
               and a.question_type = '-ITO'
             group by i.ips,
                      a.ips,
                      a.question_type,
                      p.project_name,
                      p.project_segment,
                      p.location,
                      p.project_exec_model,
                      p.project_exec_model || ' - ' || p.project_config,
                      one.score,
                      two.score,
                      three.score,
                      four.score,
                      nvl(one.score, 0) + nvl(two.score, 0) +
                      nvl(three.score, 0) + nvl(four.score, 0),
                      five.prev,
                      six.maxcreatedt
           ) scoresI wonder how all this is going to perform by the way....all those scalar subqueries and outer joins are expensive....
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:1594885400346999596
    Read up on Subquery Factoring/WITH-clause, and try to rewrite parts of your query.
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:4423923392083

  • Web Analysis Error -- Error while executing query and retrieving data

    Regarding Web Analysis:
    We have a number of reports that we created. yesterday they were all working fine. today we try to open them and most are generating an error.
    The error is:
    Error while executing query and retrieving data.; nested exception is:
    com.hyperion.ap.APException: [1033] Native:
    1013033[Thu Oct 22 09:08:17
    2009]server name/application name/database name/user name/Error91013033)
    ReportWriter exit abnormally
    Does anyone have any insight into what is going on?
    My version information is:
    Hyperion System 9 BI+ Analytic Administration Services 9.3.0.1.1 Build 2
    Web Analysis 9.3.0.0.0.286
    Thanks in advance for your help.
    DaveW

    Hi,
    And also click on check option by opening the query in Query designer,as Mr . Arun suggested.
    And if you get any error in checking, see the long message(detail).
    With rgds,
    Anil Kumar Sharma .P

  • Executing query error: System error in program SAPLRRI2 and form REP_A

    Hello Experts,
    I am facing problem while executing query.
    I have activated a query from BI content. The query is activated successfully in development and running successfully in development, so I transported the same into QA.
    When I execute this query into quality, automatically debuger opens. After I come out of debuger I get following error message:
    " >> Row: 82 Inc: LRRMSU13 Prog: SAPLRRMS
    System error in program SAPLRRI2 and form REP_ASSIGN_INITIAL_OPT-01- (see long text)
    Error when generating dataProvider "
    This query is using some standard structures, which are running successfully in other queries in QA.
    what would be an issue?
    Regards,
    Nirav Shah

    Hi,
      Try to regenerate the query in RSRT t.code.
       ie) RSRT - give the query name - Generate report ( icon will be there near to Execute + debug) .
    After generating the report, (logoff and login )try to execute the query again ..if the above solution doesn't work, check the below OSS notes which may help for you.
    OSS notes : 1. 1121766
                       2. 1117966
                       3. 1225856
    Regards,
    Siva.

  • Error executing a query using VPD and BC4J

    Hi all,
    Our team is developing an application using an Oracle DB 9.2.0.4 and BC4J 10g (9.0.5.16.0) as persistence layer.
    We also are using the VPD (virtual private database) to have security in the database at row level.
    The problem we are facing is that every some time (days) we get a jdbc error when a query (see below) that uses VPD policies is executed. Once the error occurs I execute it from sqlplus without getting any error .. it only occurs from our java application.
    To temporary solve this problem, we delete and recreate the VPD policies, then the application continue working fine for some time ...
    I'll appreciate any comment / suggestions
    Thank in advance.
    Eduardo.
    ERROR LOG:
    oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (SELECT CalLocation.ID,
    CalLocation.CODE, eo
    CalLocation.NAME,
    CalLocation.ZIP,
    CalLocation.PHONE,
    CalLocation.FAX,
    CalLocation.ADDRESS1,
    CalLocation.ADDRESS2,
    CalLocation.URL,
    CalLocation.OWNER,
    CalLocation.CTY_ID,
    CalLocation.DESCRIPTION,
    ORefCity.CODE CTY_CODE,
    ORefCountry.ID CTR_ID,
    ORefCountry.CODE CTR_CODE,
    ORefRegion.ID REG_ID,
    ORefRegion.CODE REG_CODE
    FROM CAL_LOCATIONS CalLocation,
    OREF_CITIES ORefCity,
    OREF_COUNTRIES ORefCountry,
    OREF_REGIONS ORefRegion
    WHERE ORefCity.ID = CalLocation.CTY_ID
    and ORefCountry.ID = ORefCity.CTR_ID
    and ORefRegion.ID = ORefCountry.REG_ID) QRSLT WHERE ( ( (CTY_ID = 867) ) )
    ## Detail 0 ##
    java.sql.SQLException: Io exception: Broken pipe
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:189)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:231)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:345)
         at oracle.jdbc.driver.OracleStatement.open(OracleStatement.java:717)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2605)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:457)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:387)

    The symptoms we have been getting are quite similar to the bug 3662364 .
    I'm going to implement the patch for that bug and see what happend then.
    Thank you very much for your help.
    Regards,
    Eduardo.

  • System error in program CL_RSR and form GET_PROVID-02-(see long text)

    Hi,
    If i execute a cube contents,i am getting  this message "System error in program CL_RSR and form GET_PROVID-02- (see long test)" , due to this error data has not appeared,only structure appeared in the cube.
    When we execute a query in the BEX,I got the message "System error in program CL_RSR and form GET_PROVID-02- (see long test)"
    Please let us know what can be the problem and the solution.
    Thanks in advance and best regards.
    kumar

    Hello,
    Open the query in query designer and perform query check. The query might have erroraneous elements.
    Regards,
    Shashank

  • System error in program CL_RSR and form GET_PROVID-02- (see long test)

    Hi,
    If i execute a cube contents,i have getting this message  "System error in program CL_RSR and form GET_PROVID-02- (see long test)" , due to this error no data has appeared only structure appeared
    If I execute a query in BEX, the message "System error in program CL_RSR and form GET_PROVID-02- (see long test)"
    Please let us know what can be the problem and the solution.
    Thanks in advance and best regards.
    kumar

    can you post the message in st22 and sm21 for the error?

  • Can't see 7.x Variable in 3.5 Query Designer

    Hi, I created a BEx Variable on one of my characteristics in the 7.x Query Designer and cannot see this same variable in the 3.5 Query Designer.
    Does anyone know if this is a known limitation?
    Thanks!

    Variables are not version specific. Variables created in any version are visible in both 3.5 and 7.x query designers. In 7.x query designer when you create a variable it allows you to select the InfoObject the variable should be associated with. For example if you have an InfoObject that has a reference InfoObject, then a variable created on this InfoObject is not visible on the reference InfoObject. I think variables created on navigational attributes also show different behavior, unless you select the base Infoobject as the reference Infoobject for the variable. With 3.x the InfoObject to which variable is attached behaves differently.
    If you try to create a new variable with the same technical name as the one you created in 7x, you will get the message that the variable already exists. Check the reference infoobject for the variable you created in 7.0 and that may help you. You might want to check out the details of the variable in RSZGLOBV table for any clues.
    Thanks
    Vineet

  • Cannot see list of universes addind a new query

    Hi all, we are building a new query in Infoview and want to add a query from another universe. When we click add query we can see the original universe but in the pane containing the list of other universes we see nothing. If an administrator logs on Infoview and adds a query, he can see all universes in the list.
    What are the permissions to give in order to see other universes when we add a query?
    Thank you.
    Regards,
    Gaetano.
    Edited by: Gaelis on Nov 30, 2011 12:28 PM
    Edited by: Gaelis on Nov 30, 2011 12:29 PM

    Hi,
    As you said your Administrator could see all universe and you are not, that means you don't have access to all other universes.
    To give the access to all other universes,
    - Go to CMC
    - Click on Universes
    -  grant access to universe
    - Click on the connections on the CMC home page.
    - Grant the access to connection that is being used in the universe.
    Easy way to grant access is grant view on demand access to everyone for all connetion. This will not harm since you will need universe rights to refresh the connection.
    If you want to grant access to all universe then select the universe from CMC home page and grant access to universe folder and by default the access level will be inherited to the sub folders and the universes under it.
    I hope this will help you for sure.
    Thanks,
    Ravichandra K

  • SQL query works in the SQLPlus, but fires parse error after being cut and pasted into

    One of our client has a SQL query like this:
    SQL> SELECT LNAME,
    2 QUOTA/12,
    3 (SELECT SUM(CAMT) FROM CONSULTING WHERE CONSULTANT = P.EMPLOYEE
    4 AND ACTIVITYCODE = 'C'AND
    5 CDATE BETWEEN '01-JAN-2001' AND '31-JAN-2001') AS SUM,
    6 (SELECT SUM(CAMT) FROM CONSULTING WHERE CONSULTANT = P.EMPLOYEE
    7 AND ACTIVITYCODE = 'C'AND
    8 CDATE BETWEEN '01-JAN-2001' AND '31-JAN-2001') -
    QUOTA/12 AS PL
    9 FROM PERSONNEL P
    10 ORDER BY LNAME;
    Running the above query in the SQLPlus returns appropriate resultsets to the
    user. After the same SQL being cut and pasted into a portal report
    component, running the report component fires the following error:
    Failed to parse query
    Error:ORA-00911: invalid character (WWV-11230)
    Failed to parse as XXX - SELECT LNAME, QUOTA/12, (SELECT SUM(CAMT) FROM
    CONSULTING WHERE CONSULTANT = P.EMPLOYEE AND ACTIVITYCODE = 'C'AND CDATE
    BETWEEN '01-JAN-2001' AND '31-JAN-2001') AS SUM, (SELECT SUM(CAMT) FROM
    CONSULTING WHERE CONSULTANT = P.EMPLOYEE AND ACTIVITYCODE = 'C'AND CDATE
    BETWEEN '01-JAN-2001' AND '31-JAN-2001') - QUOTA/12 AS PL FROM PERSONNEL P
    ORDER BY LNAME; (WWV-08300)
    Cursor is not open
    Is this because of the multi-table queries, or something else? Is there any
    way around this? Any information regarding this will be highly appreciated.
    Thanks.
    null

    Sunny,
    From the error message that you posted it seems that you are putting a semicolon ";" at the end of your query. I checked the query that you have posted. It is working fine for me. (I am using 3.0.8) but I feel it will work in your version also. I tried the query without a ";" at the end --It worked.
    I tried with ";" at the end -- It gave the error that you have posted. So remove the ";" at the end and it should work. If you are still getting the same error then pls write down the version you are using. I will check in that version.
    Thanx,
    Chetan.

  • Lightroom trial doesn't show complete menu selections or import button.  Also get error message on launch:  An error occurred when attempting to change modules.  I am unable to find/see the following file to try renaming the SLCache and SLStore files:  Sy

    Lightroom trial doesn't show complete menu selections or import button.  Also get error message on launch:  An error occurred when attempting to change modules.  I am unable to find/see the following file to try renaming the SLCache and SLStore files:  System Library/Application Support/Adobe.  Any ideas?  I only have 16 days left on the trial and have been unable to get it to work on my Macbook Pro.  This is all I am seeing after Lightroom opens.  Thanks!

    Thanks to both of you for attempting to help.  I finally figured out what was wrong . . . it was a Permissions problem.  Very frustrating, but after scouring the troubleshooting tips I finally found the one that solved my problem.  I had to add a User and give it Read/Write privileges to Lightroom.  The file I had to add the User to was Hidden on my Mac, so that added an even bigger challenge to the mystery.  Only a few days left on my trial version!  I hope I have time to try it out!

  • App-V PowerShell: Script to Query XenApp Servers for App-V Publishing Errors and Output an Excel Document with the Results

    Please Vote if you find this to be helpful!
    App-V PowerShell:  Script to Query XenApp Servers for App-V Publishing Errors and Output an Excel Document with the Results
    Just posted this to the wiki:
    http://social.technet.microsoft.com/wiki/contents/articles/25323.app-v-powershell-script-to-query-xenapp-servers-for-app-v-publishing-errors-and-output-an-excel-document-with-the-results.aspx

    Hi petro_jemes,
    Just a little claritification, you need to add the value to the variable "[string]$ou", and also change the language in the variable "$emailbody" in the function "Get-ADUserPasswordExpirationDate".
    I hope this helps.

  • " 3 items could not be synced. See iTunes for more information"  I have searched and I have tried the solutions on the forum. My iPhone has been successfully synced without error and I am trying to sync with new laptop.

    " 3 items could not be synced. See iTunes for more information"  I have searched and I have tried the solutions on the forum. My iPhone has been successfully synced previously on my mac mini without error. I am trying to sync my iPhone with new MacBook Pro.

    Modular77:  With respect the dialog on the iPhone 'XX items could not be synced.  See iTunes for more information.' , would you happen to know where to look in iTunes?  I looked in all the places that seemed logical to me. 
    I am, however, asking only for future reverence, as the initial sync which generated the error dialog was done via USB, and almost immediately after the USB sync, I ran a WiFi Sync—two in a row in fact—both initiated from the iPhone.  Both WiFi syncs completed successfully with no error dialog. 
    I then ran another USB sync initiated from iTunes on the Macintosh, as was the first sync which gave the error. This second USB sync also completed successfully with no errors.
    I think someone in this thread mentioned non-AppleStore products or DMR issues which I think could not have been an issue in my case, as I was running the sync to install updated Apps from the AppStore, and additionally had deleted some music and movie items to make sure there was room for the App updates. Nothing was added other than the recently downloaded App updates from the AppStore. 
    iPhone3GS  iOS 5.1.1 build 9B206. 
              Developer Profile enabled.  iCloud enabled.
              32 GB “disk.” About 1.5 GB free after sync.
              iPhone NOT jailbroken
    MacBook 13-inch Aluminum, Late 2008 (NOT Macbook Pro)
         Lion 10.4.7 build 11E53.  2 GB RAM.
    Thanks for any info or advice.  Problem IS now solved, but it absorbed a lot of time to reach that point.

  • System Error in program SAPLRRS2 and form GET_SID-1 -(see long text)

    Hello all,
    One of the users is trying to run a report in Production using BEx analyser and gets the following error.
    BI Server error:
    Program error in class SAPMSSY1 method: UNCAUGHT_EXCEPTION
    System Error in program SAPLRRS2 and form GET_SID-1 -(see long text)
    I have already run the SAP Note 1237190 but there is no use as the error comes up again.
    Could any one please help to resolve this issue.
    Thanks
    Phani.

    Hi Dipika
    Thanks for the reply.
    But I dont think that note is applicable for this error as this error pops as soon as the selection screen is past and before the report is displayed.
    This is not happening with all the users though.
    Its a random problem only.
    Thanks
    Phani.

  • Syntax errors in update query with inner joins and sub query.

    Below is the query:
    UPDATE sp_CFQ_Coord_Corrections 
    INNER JOIN (CFQ_Coord_Corrections 
    INNER JOIN CFQ_Referrals ON CFQ_Coord_Corrections.CorrID = CFQ_Referrals.RecID) 
    ON sp_CFQ_Coord_Corrections.ID = CFQ_Referrals.RecID 
    SET CFQ_Coord_Corrections.MatchFound = 1, 
    CFQ_Coord_Corrections.RecTblID = [CFQ_Referrals].[RecTblID], 
    sp_CFQ_Coord_Corrections.MatchFound = 1
    WHERE (((CFQ_Coord_Corrections.MatchFound)=0) 
    AND ((sp_CFQ_Coord_Corrections.MatchFound)=0) 
    AND ((CFQ_Coord_Corrections.RecImported)=1) 
    AND ((CFQ_Referrals.RecFileName)='COORDCORR_SPOINT') 
    AND ((CFQ_Referrals.RecCombKey)='No.Match') 
    AND ((sp_CFQ_Coord_Corrections.RecImported)=1));
    Error messages seen when executed:
    Msg 156, Level 15, State 1, Line 3
    Incorrect syntax near the keyword 'INNER'.
    Msg 102, Level 15, State 1, Line 10
    Incorrect syntax near 'CFQ_Coord_Corrections'.
    Please help.....

    Below is the query:
    UPDATE sp_CFQ_Coord_Corrections 
    INNER JOIN (CFQ_Coord_Corrections 
    INNER JOIN CFQ_Referrals ON CFQ_Coord_Corrections.CorrID = CFQ_Referrals.RecID) 
    ON sp_CFQ_Coord_Corrections.ID = CFQ_Referrals.RecID 
    SET CFQ_Coord_Corrections.MatchFound = 1, 
    CFQ_Coord_Corrections.RecTblID = [CFQ_Referrals].[RecTblID], 
    sp_CFQ_Coord_Corrections.MatchFound = 1
    WHERE (((CFQ_Coord_Corrections.MatchFound)=0) 
    AND ((sp_CFQ_Coord_Corrections.MatchFound)=0) 
    AND ((CFQ_Coord_Corrections.RecImported)=1) 
    AND ((CFQ_Referrals.RecFileName)='COORDCORR_SPOINT') 
    AND ((CFQ_Referrals.RecCombKey)='No.Match') 
    AND ((sp_CFQ_Coord_Corrections.RecImported)=1));
    Error messages seen when executed:
    Msg 156, Level 15, State 1, Line 3
    Incorrect syntax near the keyword 'INNER'.
    Msg 102, Level 15, State 1, Line 10
    Incorrect syntax near 'CFQ_Coord_Corrections'.
    Please help.....
    sp_CFQ_Coord_Corrections is a table and not a stored procedure.
    are these both tables "sp_CFQ_Coord_Corrections" and "CFQ_Coord_Corrections" different ??

  • After I downloaded the update of iOS 8.1.3,I was unable to install it and I see "an error occurred installing iOS 8.1.3"what can I do?

    After I downloaded the update of iOS 8.1.3,I was unable to install it and I see "an error occurred installing iOS 8.1.3"what can I do?

    Hi Josephineapo,
    If you are trying to update your iPhone over-the-air rather than through iTunes, and you are having issues with installing it, then I'd like you to please follow the steps outlined below.
    If you get a message that "an error occurred downloading iOS," try again later. If the issue persists, try updating your device in another network or use iTunes to update your device. Learn more about iOS updates.
    Update does not complete
    If you're installing the update and the progress bar appears to move slowly, be patient. The time an update takes depends on the size of the update and the number of files on the device.
    When you're updating over the air, keep your device connected to a power source so that it doesn't run out of power. If your device does run out of power, connect it to a power source and turn on the device to let the update or restore complete.
    If the update never completes and the progress bar hasn't moved for an extended time, try restarting your device. If you still see the issue after you restart, see what to do if your device appears frozen or won't start.
    Resolve issues with an over-the-air iOS update - Apple Support
    Thanks for using the Apple Support Communities!
    Cheers,
    Alex H.

Maybe you are looking for

  • Analysis Authorization for nav Attr Issue

    Hello: I have a 0COMP_CODE as an attribute of 0SALSORG and it is marked as authorization relevant. i.e 0SALESORG_0COMP_CODE is authorization relevant. I created an analysis authorization Object ZCOMPCODE_1000 by adding following in it. InfoObject    

  • SAP WM over MM

    Dear all, How will i convince a client for question like . Why do we need SAP WM system,rather than just using SAP MM ? From a business perceptive what should be my convincing answer to the client ?

  • Is this really used for scoring?  i mean there is not offset for timecode +

    This can't be used for anything but a stereo audio editor. I have tried to use STP to do audio for video, but there isn't a tempo window as in Logic. i have striped a QT file in FCP 5.1 01:00:00;00. i have set the timecode 01:00:00:00 on beat 1 in ST

  • Creative Suite 6 and Windows XP

    Does anyone know yet if Creative Suite 6 is going to support Windows XP, or is it going to be aimed more at Windows 7? Aside from whatever feature changes there may be in the individual components, I would purchase CS 5.5 instead of 6 if XP is not go

  • Rasmol crashes with segmentation fault

    Hi. I have just switched to Arch Linux from Ubuntu. I have installed arch from AUR and it crashes immediately after launch with segmentation fault. I don't really know what more data I can provide but please tell me if there is any.... Am I the only