Oracle 10.1.0.4.2 SQL Plus dbms_output.put_line not working

I am using Oracle 10.1.0.4.2 SQL Plus, and dbms_output.put_line is not working. It returns the dbms_output ONLY from outside the procedure. I have dbms_output INSIDE my procedure, and none of it gets returned. Please help!
Here is what I enter:
set serveroutput on size 1000000;
DECLARE
     x number:=0;
begin
DBMS_OUTPUT.ENABLE;
c2reports.c2proc(x,'TEST');
DBMS_OUTPUT.PUT_LINE('testX');
END;
testX
There should be more besides the 'testX' that gets returned. The first line in my procedure has output code to print testY. Thanks in advance!

This is the forum for the Oracle's SQL Developer (Not for general SQL/PLSQL questions). You should ask question like this in the PL/SQL forum

Similar Messages

  • SQL*Plus column command not working with Script Runner

    SQL Developer EA 2.1
    When running a script (interactive or from a file), the COLUMN commands are ignored. The documentation (User's Guide 1.7.1) says that COLUMN is supported, but the headings set in the column command are not changed. As a test, the SET FEEDBACK OFF command is processed.
    SET FEEDBACK OFF
    COLUMN ename HEADING 'Name'
    COLUMN job HEADING 'Job'
    COLUMN deptno HEADING 'Dept'
    SELECT ename as ename, JOB, DEPTNO
    FROM EMPLOYEES;
    The documentation for Script Runner (User's Guide 1.7.2) says that a much more limited set of SQL*Plus commands are available.
    Is this intended behavior? If so, the documentation should reflect that the COLUMN command is ignored.

    Hi,
    Doc bug logged:
    Bug 9015160 - OTNEA1: USER GUIDE COLUMN SUPPORTS 'COLUMN...NEWVAL' ONLY
    The user guide says column is supported, but
    Column supports the following new_value use only
    i.e. moving a value from a selected column to a substitution variable:
    column aval new_v a
    select 1 aval from dual;
    select '&a' || ' is 1' from dual;
    Output:
    AVAL
    1
    1 rows selected
    '1'||'IS1'
    1 is 1
    1 rows selected
    -Turloch

  • SQL*PLUS mouse scroling not working..

    Hi,
    I am facing one problem in SQL*Plus tool, and couldn't find solution. Please help me.
    I have set the line size 9999. When i select the data from table (or dual) which is having more line size that the screen size, some of the part is displayed on screen that the rest have been cut. I cannot scroll the screen horizontally to see the rest part of the output. If i set the line size 80, the whole output is displayed in wrapped style.
    Is there any other configuration or settings i need to do.. Please let me know what i am missing..
    Regards,
    Dipali.

    Aman, Amar and Jaffy,
    Thanks for your reply.
    Aman, yes dear, i can use DOS prompt, but i am using SQL*Plus tool and facing problem it. Instade of looking for alternative i want to solve this problem.
    Jaffy, i go through the index of the book given in the link by you. But didn't find the topic related to my problem.
    Aman, I tried to increase the screen buffer size from environment dialogue box. When i tried for first time, i was asked to disconnect from database. I did that, increased the buffer width to 10000 and keep the lenght untouchd (1000) and set the line size to 9999. Then i connected to DB and checked it and i got what i wanted :).
    But when i tried for next time, i was not getting that..It was behaving strange.. when i set the buffer size 10000, it showed message that 'screen buffer lenght must be between 80 to 1000' and when i set it to 1000 it showed 'screen buffer lenght must be between 80 to 2000' !!!!
    I am still trying.....
    Thank you.. :)
    Dipali.

  • Iphone 6 plus facetime camera not working after 8.1 upgrade

    iphone 6 plus facetime camera not working after ios 8.1 upgrade, also while making calls the voice on the other side sounds distant. Any pointers.

    It seems the facetime camera does not work for whatsapp only it works normally.

  • Why iPhone 6 Plus sound microphone not working, but in the case of sound recordings in conversation mode work?

    Why iPhone 6 Plus sound microphone not working, but in the case of sound recordings in conversation mode work?

    Sighhhh, wasted so much time yesterday and today going around Sony centre and then carphone warehouse. They told me to come back after Easter.
    I came home, banged the phone against the wall and it worked.
    Turned out that mic was working on loud speaker and when using headphones so I thought that the secondary mic is working and the main one (placed with the speakers) isn't. So I banged that part against the wall slightly (in plastic case to prevent scratches) then put the phone underwater, waited for it to dry and now it's working. Idk how well and if it's of perfect quality again but people can hear me well.

  • Sql * plus 9 is not able to connect oracle 7 database

    Today I have installed oracle 9i release 2 and found that the sql * plus provided with is unable to connect oracle database version 7. But before that we were able to connect the oracle 7 database well.
    Any one having a clue on that...?
    Is it a product bug...?
    If so then please provide me some alternative solution clue or patch download link. Please remember in any condition currently it is not possible discard my oracle 7 database.
    With Regards.
    Soumen.

    No, it is not a bug. You just cannot connect with Ora9i R2 SQL*Plus to an Ora7 database.You cannot create a DB link between the two database either, if you are planning on doing that.
    A solution is to install Ora8 client, which can connect to both Ora9 and Ora7 database (but a db link will stil be impossible).

  • Oracle:JDBC Call returns no results, SQL*Plus returns 1 record, Please help

    Any help would be greatly appreciated.
    Running 9.2.0.5.0, and using latest 9.2 JDBC 1.4_g drivers in thin mode.
    Execute the following query from SQL*Plus and it returns one row, from JDBC using a PreparedStatement, I get no results. Here's the query, table def, record, etc.:
    Query:
    SELECT
    ID_WEB_FRM,ID_WEB_SIT,CDE_LVL_1_FUNC,
    CDE_LVL_2_FUNC,NUM_WEB_FUNC_PG,NUM_WEB_PG_ID
    FROM
    WEB_FRM
    WHERE
    ID_WEB_FRM = ' '
    OR
    (ID_WEB_SIT = 'test' AND CDE_LVL_1_FUNC = ' '
    AND CDE_LVL_2_FUNC = 'u2T' AND NUM_WEB_FUNC_PG = 1
    AND NUM_WEB_PG_ID = 0)
    Record returned from SQL*Plus:
    ID_WEB_FRM ID_WEB_SIT CDE CDE NUM_WEB_FUNC_PG NUM_WEB_PG_ID
    NfRRmc5XZu test u2T 1 0
    Both in the data returned and the query, there are no blanks, but they are a single space instead (hard to see in message here).
    Java code:
    int count = 1;
    findDBNameStatement.setString(count++," ");
    findDBNameStatement.setString(count++,form.getSiteID());
    findDBNameStatement.setString(count++," ");
    findDBNameStatement.setString(count++, form.getFunctionID());
    findDBNameStatement.setInt(count++,form.getPageNumber());
    findDBNameStatement.setInt(count++,form.getSectionNumber());
    ResultSet resultSet = findDBNameStatement.executeQuery();
    ResultSetMetaData metaData = resultSet.getMetaData();
    resultSet.next() returns false
    DB table:
    CREATE TABLE web_frm (
    ID_WEB_FRM varchar2(10) NOT NULL,
    ID_WEB_SIT varchar2(20) NOT NULL,
    NAM_WEB_FRM varchar2(40),
    TXT_EMAIL_SUBJ varchar2(50),
    CDE_LVL_1_FUNC char(3),
    CDE_LVL_2_FUNC char(3) NOT NULL,
    NUM_WEB_FUNC_PG int NOT NULL,
    NUM_WEB_PG_ID smallint NOT NULL,
    DTE_WEB_FRM_EFF date NOT NULL,
    DTE_WEB_FRM_TRM date,
    CDE_VLDT_RUL char(3),
    DTE_LAST_EXPRT date,
    TXT_CNFRMN_MSG varchar2(4000),
    IND_UPDT_ALWD char(1) NOT NULL,
    TXT_RECAP_HDR varchar2(4000),
    TXT_RECAP_FTR varchar2(4000),
    CDE_WEB_OBJ char(3),
    NUM_MAX_FRM_WIDTH number(4,0),
    IND_RECAP_PG char(1) NOT NULL,
    IND_CNFRM_PG char(1) NOT NULL,
    IND_DSPL_CNFRM_NUM char(1) NOT NULL,
    CNT_SUBM_MAX int,
    TXT_CHCE_ADD_MSG varchar2(255),
    TXT_CHCE_MOD_MSG varchar2(255),
    TXT_WEB_HDR varchar2(4000),
    TXT_WEB_FTR varchar2(4000),
    TXT_WAIT_LIST_MSG varchar2(255),
    FORMOBJECTHEIGHT int NOT NULL,
    FORMOBJECTWIDTH int NOT NULL
    ALTER TABLE web_frm ADD ( CONSTRAINT PK_web_frm PRIMARY KEY (ID_WEB_FRM));
    ALTER TABLE web_frm ADD ( CONSTRAINT UK_web_frm UNIQUE (ID_WEB_SIT,CDE_LVL_1_FUNC,CDE_LVL_2_FUNC,NUM_WEB_FUNC_PG,NUM_WEB_PG_ID)) ;
    Thanks,
    Matt

    That's not quite right. From the javadocs:
    next
    public boolean next()
    throws SQLException
    Moves the cursor down one row from its current position. A ResultSet cursor is initially positioned before the first row; the first call to the method next makes the first row the current row; the second call makes the second row the current row, and so on.
    If an input stream is open for the current row, a call to the method next will implicitly close it. A ResultSet object's warning chain is cleared when a new row is read.
    Returns:
    true if the new current row is valid; false if there are no more rows
    Throws:
    SQLException - if a database access error occurs

  • Oracle 9i, 10g, 11g on same machine...11g not working....

    Hello All,
    I have a dilemma.
    I have a server that originally had 9i client installed.
    We installed 10g and ODP .Net to gain use of some new funcionality used in .Net and batch processing.
    Halfway through testing we realized that 10g's version of ODP.Net has a memory leak issue.
    11g was found to correct this issue so we installed it on the server as well and it solved the problem.
    Life was good.
    9i, 10g, 11g, and ODP.net were all working well.
    However, this was a test server. We now needed to go through the same installs for the production server.
    On the night of the software install someone made a mistake and installed 10g on the test server again for the second time, after 11g was already installed.
    So at this point the test server has:
    9i
    10g
    11g
    10g
    And now many of the applications on the server are not working correctly and no amount of config changes seemed to fix it.
    So we decided to uninstall 11g and then 10g and start over.
    At this point we have 9i and 10g installed and the applications are working correctly.
    We have tried to reinstall 11g and configure multiple times and 11g will simply not work.
    I am stumped at this point. The application that actually does use 11g and ODP.Net simply stops executing at the point it attempts to open a connection with NO ERRORS.
    An Exception does occur but there are no contents or error messages in the exception. I have never had this happen before. How do you fix an error you dont have?
    So at this point I am just reaching out to see if anyone might have a suggestion. The next step might be to perform a system restore to the point where life was good (before 10g was installed a 2nd time after 11g).
    Anyone?

    Thanks gdarling.
    I was hoping to just start the thread and go from there as sometimes information overload makes people pass on reading the whole post. I am glad you still read it:)
    To start off with here are the entries (unedited in my PATH variable):
    E:\oracle11\product\11.2.0\client_1\bin;E:\oracle102\product\10.2.0\client_1\bin;E:\oracle\product\10.2.0\client_1;E:\Orant9i\bin;
    I recently moved the 9i path back to the front in order to get the other applications on the server working again as some were erroring out with this when 11.2 was first:
    *"OCIEnvCreate failed with return code -1 but error message text was not available"*
    I searched for a long time as to the cause of this error but did not turn up much. Most of the posts just mention that the client was installed incorrectly.
    Policy files:
    I compared the assembly of the "working" server to the "bad" server and they appear identical as far as I can see.
    Directories
    -9i has one directory
    -As you can probably see from the path, it still looks like there are 2 installations of 10g on the server. As well as remnants of three directories that resemble 10g install directories.
    -11g has one directory
    Couple observed behaviors:
    1.
    running sqlplus from the 9i and 10g directories works.
    running sqlplus from the 11g directory results in the following error:
    E:\oracle11\product\11.2.0\client_1\bin>sqlplus.exe
    Error 6 initializing SQL*Plus
    SP2-0667: Message file sp1<lang>.msb not found
    SP2-0750: You may need to set ORACLE_HOME to your Oracle software directory
    2.
    Running tnsping works from the 9i and 10g directories
    Running tnsping from 11g results in this:
    TNS Ping Utility for 32-bit Windows: Version 11.2.0.1.0 - Production on 13-MAY-2
    010 09:32:32
    Copyright (c) 1997, 2010, Oracle. All rights reserved.
    Message 3511 not found; No message file for product=NETWORK, facility=TNSTNS-035
    05: Message 3505 not found; No message file for product=NETWORK, facility=TNS
    *(NOTE: THIS ERROR ALSO OCCURS ON THE "GOOD" SERVER)*
    Registry:
    There is a difference in the registry.
    The "good" server has this entry in the ORACLE area:
    KEY_OraClient10g_home1
    KEY_OraClient11g_home1
    where as the "bad" just has
    KEY_OraClient10g_home1
    Both servers have ODP.Net folder containing:
    2.112.1.0
    There are also other entires in this registry area but they are the same.
    It wasn't our original intention to have all three clients on the same machine. Halfway through our system testing of a new process we realized the 10g has a memory leak which was corrected in 11g.
    So we just installed 11g. These are supposed to be able to coexist right?
    It sounds like we could have just installed 11g...
    I am going to look into your suggestions.
    As far as sysinternals I am a novice. And I am assuming it would need to be loaded on the server...is that correct? Or should I be using it on my local machine with the application in question running?
    Getting more software (sysinternals) installed on the server might be a hurdle...
    Thanks again

  • Iphone 6 plus front camera not working in whatsapp

    iphone 6 plus 64GB iOS 8.1 front camera not working in whatsapp

    It seems the facetime camera does not work for whatsapp only it works normally.

  • Iphone 6 plus wifi connection not working

    I don't know what the deal is but, I'm getting notifications of emails, and messages but when I go to the app I have nothing there. The problem has expanded and now apps aren't connecting to any wifi. I thought it might have been 3rd party apps, but now even the app store cannot connect. I've tried my home wifi, and my work wifi. Using my data plan, I have no problems connecting to anything. I'm thinking this is an IOS8 issue that needs a patch. If somebody has any other suggestions, I'm all ears!

    Nore wrote:
    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.
    Are you a developer?  IF so try asking in the developer forum.

  • Iphone 6 plus slide bar not working

    My iphone 6 plus slide bar would not work.  I couldn't turn phone off, couldn't do anything except use Siri.  Used Siri to face time a friend to ask for help but for some reason once she answered my phone unlocked.  Have no idea why.  Hope this helps someone.

    Nore wrote:
    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.
    Are you a developer?  IF so try asking in the developer forum.

  • IPhone 6 Plus LED alert not working.

    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.

    Nore wrote:
    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.
    Are you a developer?  IF so try asking in the developer forum.

  • IPhone 6 Plus mic/earpiec not working.

    A tiny drop of water went down into my earpiece 2 weeks ago and i kept sucking out the water and i left it over night in a bag of rice. The next day the earpiece was working perfectly fine but the mic for the front facing camera, facetime, siri and voice dictation is not working. Every time i try to take a video using the front facing camera all what i hear is a muffling sound. Is this an earpiece issue? Should i change the earpiece? IS there a mic inside the earpiece?

    Nore wrote:
    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.
    Are you a developer?  IF so try asking in the developer forum.

  • Iphone 6 plus podcadt app not working

    TThe ios8 podcast app isn't working on my iPhone 6plus. It crashes continually and hangs on even one download.
    DO I NEED to find a 3rd party app to work?

    Nore wrote:
    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.
    Are you a developer?  IF so try asking in the developer forum.

  • Iphone 6 plus led light not working in 8.3

    I updated to 8.3 a few days ago and have just noticed that my led light does not work.
    I backed up the phone, reset it to factory settings and it's still not working. Ay ideas on what I can do next?

    Nore wrote:
    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.
    Are you a developer?  IF so try asking in the developer forum.

Maybe you are looking for

  • External drive refuses to work and the other is very slow

    I was not sure if I should put this in Lion or macbook pro section since thats what I am trying on (mid 2010) version. Hi, I purchased maybe 4-6 months ago a Toshiba E05A100SBU3EW_C STOR.E ART 4 1TB USB 3.0 2.5 inch Hard Drive - Black from amazon and

  • Getting an error message when trying to add book to iPod?

    Almost every time I try to add a book to my iPod touch from my computer, I get an error message that says "Attempting to copy to disk failed.  A duplicate file name was specified."  And then another pop up comes up that says "Itunes could not copy be

  • Menu size and button viewing

    I've been using FCS2 for quite awhile with no problem with DVDSP. I had to clean install my system, so decided to upgrade to the latest versions, which for DVDSP was 4.2.1. (OS 10.5.2 at the time) When I opened the new version of DVDSP for the first

  • Compare iPhone 5 Black and White

    I have just bought an iPhone 5 black. So now I have white and black one(both 5). I was looking at the black one, when I noticed something differant from the white 'other than the color'. First, there are three "wholes" on the white iPhone -as in the

  • Survey progress bar

    HI, Sharepoint 2013 survey with paging (page break questions) . I need a progress bar, I can see posts about using the task %complete field to generate a client side progress bar but ther's no such field in a Survey List. Whats my options ? Thanks