Cannot use data

I just updated my iPhone iOS 10 6sPlus.   Now, I am unable to use the last 2.35 g of data on my phone.  My plan renewed this evening.  It turns off my cellular data button.  There must be a way to disable this function, but I can't.

HI Salem,

I understand that after update your iPhone to iOS 10, you are more able to keep your mobile data introduced on the market. I know it's important to have a reliable data connection, so I'm happy to help you.

Read this article for troubleshooting your iPhone data connection:
If you cannot connect to a cellular network or cellular data - Apple Support

Thank you for using communities Support from Apple. See you soon!

Tags: iPhone

Similar Questions

  • RESTful service cannot insert data using PL/SQL.

    Hi all
    Spin: stand-alone 2.01 AL on OEL 4.8 in box a. VM
    Database Oracle 10.2.0.4 with Apex 4.2.0.00.27 on OEL4.8 in the VM B box.

    Measure of oracle.example.hr performed without problem Restful services.

    Cannot insert data using AL 2.0.1 but works on 1.1.4 AL.
    who uses the following table (under scheme: scott):
     
    create table json_demo ( title varchar2(20), description varchar2(1000) ); 
    grant all on json_demo to apex_public_user; 
    and procedure (scott diagram) below:
    CREATE OR REPLACE
    PROCEDURE post(
        p_url     IN VARCHAR2,
        p_message IN VARCHAR2,
        p_response OUT VARCHAR2)
    IS
      l_end_loop BOOLEAN := false;
      l_http_req utl_http.req;
      l_http_resp utl_http.resp;
      l_buffer CLOB;
      l_data       VARCHAR2(20000);  
      C_USER_AGENT CONSTANT VARCHAR2(4000) := 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)';
    BEGIN
      -- source: http://awads.net/wp/2005/11/30/http-post-from-inside-oracle/
      -- Ask UTL_HTTP not to raise an exception for 4xx and 5xx status codes,
      -- rather than just returning the text of the error page.
      utl_http.set_response_error_check(false);
      -- Begin the post request
      l_http_req := utl_http.begin_request (p_url, 'POST', utl_http.HTTP_VERSION_1_1);
      -- Set the HTTP request headers
      utl_http.set_header(l_http_req, 'User-Agent', C_USER_AGENT);
      utl_http.set_header(l_http_req, 'content-type', 'application/json;charset=UTF-8');
      utl_http.set_header(l_http_req, 'content-length', LENGTH(p_message));
      -- Write the data to the body of the HTTP request
      utl_http.write_text(l_http_req, p_message);
      -- Process the request and get the response.
      l_http_resp := utl_http.get_response (l_http_req);
      dbms_output.put_line ('status code: ' || l_http_resp.status_code);
      dbms_output.put_line ('reason phrase: ' || l_http_resp.reason_phrase);
      LOOP
        EXIT
      WHEN l_end_loop;
        BEGIN
          utl_http.read_line(l_http_resp, l_buffer, true);
          IF(l_buffer IS NOT NULL AND (LENGTH(l_buffer)>0)) THEN
            l_data    := l_data||l_buffer;
          END IF;
        EXCEPTION
        WHEN utl_http.end_of_body THEN
          l_end_loop := true;
        END;
      END LOOP;
      dbms_output.put_line(l_data);
      p_response:= l_data;
      -- Look for client-side error and report it.
      IF (l_http_resp.status_code >= 400) AND (l_http_resp.status_code <= 499) THEN
        dbms_output.put_line('Check the URL.');
        utl_http.end_response(l_http_resp);
        -- Look for server-side error and report it.
      elsif (l_http_resp.status_code >= 500) AND (l_http_resp.status_code <= 599) THEN
        dbms_output.put_line('Check if the Web site is up.');
        utl_http.end_response(l_http_resp);
        RETURN;
      END IF;
      utl_http.end_response (l_http_resp);
    EXCEPTION
    WHEN OTHERS THEN
      dbms_output.put_line (sqlerrm);
      raise;
    END;
    and execution in sqldeveloper 3.2.20.09 when it connects directly to box B as scott:
     
    SET serveroutput ON
    DECLARE
      l_url      VARCHAR2(200)   :='http://MY_IP:8585/apex/demo';
      l_json     VARCHAR2(20000) := '{"title":"thetitle","description":"thedescription"}';
      l_response VARCHAR2(30000);
    BEGIN
      post( p_url => l_url, p_message =>l_json, p_response => l_response);
    END;
    leading to:
     
    anonymous block completed 
    status code: 200
    reason phrase: OK 
    with data inserted. 
    Installation using 2.0.1
       Workspace : wsdemo
     RESTful Service Module:  demo/
              URI Template:      test
                    Method:  POST
               Source Type:  PL/SQL
    and execution in sqldeveloper 3.2.20.09 when it connects directly to box B as scott:
     
    SET serveroutput ON
    DECLARE
      l_url      VARCHAR2(200)   :='http://MY_IP:8585//apex/wsdemo/demo/test';
      l_json     VARCHAR2(20000) := '{"title":"thetitle","description":"thedescription"}';
      l_response VARCHAR2(30000);
    BEGIN
      post( p_url => l_url, p_message =>l_json, p_response => l_response);
    END;
    leading to:
     
    status code: 500 
    reason phrase: Internal Server Error 
    
    Listener's log: 
    Request Path passes syntax validation
    Mapping request to database pool: PoolMap [_poolName=apex, _regex=null, _workspaceIdentifier=WSDEMO, _failed=false, _lastUpdate=1364313600000, _template=/wsdemo/, _type=BASE_PATH]
    Applied database connection info
    Attempting to process with PL/SQL Gateway
    Not processed as PL/SQL Gateway request
    Attempting to process as a RESTful Service
    demo/test matches: demo/test score: 0
    Choosing: oracle.dbtools.rt.resource.templates.jdbc.JDBCResourceTemplateDispatcher as current candidate with score: Score [handle=JDBCURITemplate [scopeId=null, templateId=2648625079503782|2797815111031405, uriTemplate=demo/test], score=0, scope=SecurityConfig [constraint=none, realm=NONE, logonConfig=LogonConfig [logonForm=null, logonFailed=null]], originsAllowed=[], corsEnabled=true]
    Determining if request can be dispatched as a Tenanted RESTful Service
    Request path has one path segment, continuing processing
    Tenant Principal already established, cannot dispatch
    Chose oracle.dbtools.rt.resource.templates.jdbc.JDBCResourceTemplateDispatcher as the final candidate with score: Score [handle=JDBCURITemplate [scopeId=null, templateId=2648625079503782|2797815111031405, uriTemplate=demo/test], score=0, scope=SecurityConfig [constraint=none, realm=NONE, logonConfig=LogonConfig [logonForm=null, logonFailed=null]], originsAllowed=[], corsEnabled=true] for: POST demo/test
    demo/test is a public resource
    Using generator: oracle.dbtools.rt.plsql.AnonymousBlockGenerator
    Performing JDBC request as: SCOTT
    Mar 28, 2013 1:29:28 PM oracle.dbtools.common.jdbc.JDBCCallImpl execute
    INFO: Error occurred during execution of: [CALL, begin
     insert into scott.json_demo values(/*in:title*/?,/*in:description*/?);
    end;, [title, in, class oracle.dbtools.common.stmt.UnknownParameterType], [description, in, class oracle.dbtools.common.stmt.UnknownParameterType]]with values: [thetitle, thedescription]
    Mar 28, 2013 1:29:28 PM oracle.dbtools.common.jdbc.JDBCCallImpl execute
    INFO: ORA-06550: line 1, column 6:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare exit for goto if loop mod null pragma
       raise return select update while with <an identifier>
       <a double-quoted delimited-identifier> <a bind variable> <<
       close current delete fetch lock insert open rollback
       savepoint set sql execute commit forall merge pipe
    The symbol "" was ignored.
    ORA-06550: line 2, column 74:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare end exception exit for goto if loop mod
       null pragma raise return select update while with
       <an identifier> <a double-quoted delimited-id
    
    java.sql.SQLException: ORA-06550: line 1, column 6:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare exit for goto if loop mod null pragma
       raise return select update while with <an identifier>
       <a double-quoted delimited-identifier> <a bind variable> <<
       close current delete fetch lock insert open rollback
       savepoint set sql execute commit forall merge pipe
    The symbol "" was ignored.
    ORA-06550: line 2, column 74:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare end exception exit for goto if loop mod
       null pragma raise return select update while with
       <an identifier> <a double-quoted delimited-id
    
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:447)
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:396)
            at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:879)
            at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:505)
            at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:223)
            at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:531)
            at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:205)
            at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1043)
            at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1336)
            at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3612)
            at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3713)
            at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4755)
            at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1378)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at oracle.ucp.jdbc.proxy.StatementProxyFactory.invoke(StatementProxyFactory.java:242)
            at oracle.ucp.jdbc.proxy.PreparedStatementProxyFactory.invoke(PreparedStatementProxyFactory.java:124)
            at oracle.ucp.jdbc.proxy.CallableStatementProxyFactory.invoke(CallableStatementProxyFactory.java:101)
            at $Proxy46.execute(Unknown Source)
            at oracle.dbtools.common.jdbc.JDBCCallImpl.execute(JDBCCallImpl.java:44)
            at oracle.dbtools.rt.plsql.AnonymousBlockGenerator.generate(AnonymousBlockGenerator.java:176)
            at oracle.dbtools.rt.resource.templates.v2.ResourceTemplatesDispatcher$HttpResourceGenerator.response(ResourceTemplatesDispatcher.java:309)
            at oracle.dbtools.rt.web.RequestDispatchers.dispatch(RequestDispatchers.java:88)
            at oracle.dbtools.rt.web.HttpEndpointBase.restfulServices(HttpEndpointBase.java:412)
            at oracle.dbtools.rt.web.HttpEndpointBase.service(HttpEndpointBase.java:162)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
            at com.sun.grizzly.http.servlet.ServletAdapter$FilterChainImpl.doFilter(ServletAdapter.java:1059)
            at com.sun.grizzly.http.servlet.ServletAdapter$FilterChainImpl.invokeFilterChain(ServletAdapter.java:999)
            at com.sun.grizzly.http.servlet.ServletAdapter.doService(ServletAdapter.java:434)
            at oracle.dbtools.standalone.SecureServletAdapter.doService(SecureServletAdapter.java:65)
            at com.sun.grizzly.http.servlet.ServletAdapter.service(ServletAdapter.java:379)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:179)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapterChain.service(GrizzlyAdapterChain.java:196)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:179)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:849)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:746)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1045)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:228)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
            at java.lang.Thread.run(Thread.java:662)
    Error during evaluation of resource template: ORA-06550: line 1, column 6:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare exit for goto if loop mod null pragma
       raise return select update while with <an identifier>
       <a double-quoted delimited-identifier> <a bind variable> <<
       close current delete fetch lock insert open rollback
       savepoint set sql execute commit forall merge pipe
    The symbol "" was ignored.
    ORA-06550: line 2, column 74:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare end exception exit for goto if loop mod
       null pragma raise return select update while with
       <an identifier> <a double-quoted delimited-id
    Please notify.
    Concerning
    Zack

    Zack.L wrote:
    Hi Andy,.

    Sorry, I forgot to post the Source that is used by the AL1.1.4 and the AL2.0.1.

    Source

    begin
    insert into scott.json_demo values(:title,:description);
    end;
    

    It is a failure during insertion?
    Yes, he failed in the insert using AL2.0.1.

    If the above statement produces the following error message:

    The symbol "" was ignored.
    ORA-06550: line 2, column 74:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
    begin case declare end exception exit for goto if loop mod
    null pragma raise return select update while with
     
    

    That gives me to think that a character is not printable (notice how there is anything between the quotation marks - "") worked his way in your PL/SQL Manager. Note how the error is reported to correspond to a column 74 on line 2, line 2 of the block above has 58 characters, so a pure assumption somehow, there is extra space on line 2, which confuses the PL/SQL compiler, I suggest retype PL/SQL Manager manually and see if that solves the problem.

  • Cannot use or restore Vista after SP1 uninstall

    original title: cannot use or restore after uninstalling SP1 Vista - please help.

    In order to perform an upgrade of Vista installation to repair the damage caused by a virus recently, I uninstalled Service Pack 1 (because installation upgrade will not work with SP1). I know there are other things I should have done (a sfc/scannow in theCommandPrompt) or SP1 slipstreamed DVD, but I did not know them at the time, nor did I think there will be problems as a result of an uninstallation of SP1. As the title suggests, I got kind of wrong.

    It all started after uninstallation, which seemed successful. I rebooted, and instead to get Vista without SP1, I get an error code of the variety of the command prompt (just the black screen with white writing). This continues for a couple of times, and after a few remedies attempts that fail miserably, I decide to systemrestore(using the Vista CD, of course) at a point before uninstalling SP1. I think it will work, but the first time, as it gets to the "development of restoration" and how he hung for three hours before, I decided to turn off the computer because he was of course not moveable anywhere. I restart and let the boot from HARD drive upwards to see if maybe something worked, and I get to the login screen of Vista, how I notice none of my devices work. The mouse or the keyboard responds (both are USB) and the attempts with the PS/2 versions don't either. I thought maybe it was a driver problem, so I reinstalled the driver chipset at the disk using my laptop (took thedesktopHARD drive, put in a box outside, then executed the installer of the chipset on my laptop and said to install outside driver), but it could not solve the problem. I also tried other restorations, but invariably they fail after a certain point, which gives me an error message:

    "System restore failed due to an unspecified error. The file could not be opened from a transactional point of view, because its identity depends on the result of a unresolved transaction. (0x80071AA7).

    I googled errormessageand see that most people encounter it while trying to install a service pack, I thought it was a problem with restoring Vista without SP1 to Vista SP1. Thusly, I used the command from theVistaCD command-line option to read my Windows Update log and got the following:

    "2010-07-09 04:44:32:593 664 29 c Misc = logging initialized (build: 6.0.6000.16386, tz:-0800) =".
    2010-07-09 04:44:32:593 664 29 c Misc = process: X:\windows\system32\Rstrui.exe
    2010-07-09 04:44:32:593 664 29 c Misc = Module: X:\Windows\system32\wuapi.dll
    2010-07-09 04:44:32:593 664 29 c COMAPI FATAL: unable to connect to service (hr = 80040154)
    2010-07-09 04:44:34:605 664 29 c COMAPI FATAL: unable to connect to service (hr = 80040154)
    2010-07-09 04:44:36:617 664 29 c COMAPI FATAL: unable to connect to service (hr = 80040154)
    2010-07-09 04:44:38:630 664 29 c COMAPI FATAL: unable to connect to service (hr = 80040154)
    2010-07-09 04:44:38:630 664 29 ch. COMAPI WARNING: failed to connect to the service. (hr = 80040154)
    2010-07-09 15:26:30:160 216 12 c Misc = logging initialized (build: 6.0.6000.16386, tz:-0800) =.
    2010-07-09 15:26:30:160 216 12 c Misc = process: X:\windows\system32\Rstrui.exe
    2010-07-09 15:26:30:160 216 12 c Misc = Module: X:\Windows\system32\wuapi.dll
    2010-07-09 15:26:30:160 216 12 c COMAPI FATAL: unable to connect to service (hr = 80040154)
    2010-07-09 15:26:32:172 216 12 c COMAPI FATAL: unable to connect to service (hr = 80040154)
    2010-07-09 15:26:34:185 216 12 c COMAPI FATAL: unable to connect to service (hr = 80040154)
    2010-07-09 15:26:36:197 216 12 c COMAPI FATAL: unable to connect to service (hr = 80040154)
    2010-07-09 15:26:36:197 216 12 ch. COMAPI WARNING: failed to connect to the service. (hr = 80040154)
    2010-07-09 16:04:19:912 356 Misc 3 b 0 = logging initialized (build: 6.0.6000.16386, tz:-0800) =.
    2010-07-09 16:04:19:912 b 356 3-0 Misc = process: X:\windows\system32\Rstrui.exe
    2010-07-09 16:04:19:912 b 356 3-0 Misc = Module: X:\windows\system32\wuapi.dll
    2010-07-09 16:04:19:912 b 356 3-0 COMAPI FATALE: unable to connect to service (hr = 80080005)
    2010-07-09 16:04:19:912 b 356 3-0 COMAPI WARNING: failed to connect to the service. (hr = 80080005)
    2010-07-09 16:18:08:745 532 248 Misc = logging initialized (build: 6.0.6000.16386, tz:-0800) =.
    2010-07-09 16:18:08:745 532 248 Misc = process: X:\windows\system32\Rstrui.exe
    2010-07-09 16:18:08:745 532 248 Misc = Module: X:\windows\system32\wuapi.dll
    2010-07-09 16:18:08:745 532 248 COMAPI FATALE: unable to connect to service (hr = 80080005)
    2010-07-09 16:18:08:745 532 248 COMAPI WARNING: failed to connect to the service. (hr = 80080005)
    2010-07-09 16:25:53:894 976 244 Misc = logging initialized (build: 7.4.7600.226, tz:-0800) =.
    2010-07-09 16:25:53:894 976 244 Misc = process: X:\windows\system32\Rstrui.exe
    2010-07-09 16:25:53:894 976 244 Misc = Module: X:\windows\system32\wuapi.dll
    2010-07-09 16:25:53:894 976 244 COMAPI FATALE: unable to connect to service (hr = 80080005)
    2010-07-09 16:25:53:894 976 244 COMAPI WARNING: failed to connect to the service. (HR = 80080005) »

    I can't interpret it, although it seems to confirm my suspicions the transition from other than the SP1 and SP1 is causing issues. If someone else could interpret this?

    Basically I have a non-functional operating system, I can not restore it to a State of operation, nor access the input devices because it does not work on the login screen. Anyone all proposed solutions to the problem, short of a clean install of Vista? I don't want to reformat unless absolutely necessary.

    This is the forum Vista install.

    http://social.answers.Microsoft.com/forums/en-us/vistarepair/threads

    You can try the repair Forum.

    Vista recovery media obtain and/or use the Partition Recovery Vista on your computer to the factory settings .

    There is no Vista free download legal available.

    Contact your computer manufacturer and ask them to send a recovery disk/s Vista set.

    Normally, they do this for a cost of $ small.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    In addition, ask them if you have a recovery Partition on your computer/laptop to restore it to factory settings.

    See if a manual provided with the computer or go to the manufacturer's website, email or you can call for information on how to make a recovery.

    Normally, you have to press F10 or F11 at startup to start the recovery process...

    Another way I've seen on some models is press F8 and go to a list of startup options, and launch a recovery of standards of plant with it, by selecting the repair option.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Also ask them if it is possible to do the recovery disk/s for the recovery Partition in case of a system Crash or hard drive failure.

    They will tell you how to do this.

    Every computer manufacturer has their own way of making recovery disk/s.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Or borrow a good Microsoft Vista DVD (not Dell, HP, Acer, recovery disk/s etc).
    A good Vista DVD contains all versions of Vista.
    The product key determines which version of Vista is installed.

    There are 2 disks of Vista: one for 32-bit operating system, and one for 64-bit operating system.

    If install a cleaning is required with a good DVD of Vista (not HP, Dell recovery disks):

    At the startup/power on you should see at the bottom of the screen either F2 or DELETE, go to Setup/Bios or F12 for the Boot Menu

    Go to your Bios/Setup, or the Boot Menu at startup and change the Boot order to make the DVD/CD drive 1st in the boot order, then reboot with the disk in the drive.

    http://support.Microsoft.com/default.aspx/KB/918884

    MS advice on the conduct of clean install.

    http://www.theeldergeekvista.com/vista_clean_installation.htm

    A tutorial on the use of a clean install

    http://www.winsupersite.com/showcase/winvista_install_03.asp

    Super Guide Windows Vista Installation

    After installation > go to the website of the manufacturer of your computer/notebook > drivers and downloads Section > key in your model number > get latest Vista drivers for it > download/install them.

    Save all data, because it will be lost during a clean installation.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://support.Microsoft.com/default.aspx/KB/326246

    'How to replace Microsoft software or hardware, order service packs and upgrades, and replace product manuals'

    See you soon.

    Mick Murphy - Microsoft partner

  • Cannot specify data sub to the header title

    Hello

    It seems that the title of the header cannot use the sub element as in the example below. Article is first on the list of sorting.

    Someone at - there a work around?

    Thank you!

    {ListItemComponent}
    type: "header.
    {To header
    Title: ListItemData.group
    }
    }

    I think that this is normal.  Note in the docs of GroupDataModel, where it says "for headers, GroupDataModel::data() returns a QVariant containing the value that all the children in this header have in common. In the illustration below, GroupDataModel::data() is returned a QVariant containing the QString 'A' to the first heading, 'B' for the second header and so on. »

  • Cannot use maps of blackBerry Smartphones

    Why my blackberry pearl 9105 cannot use maps or GPS system...? Please help me...

    Hi and welcome to the forums!

    Do you have a data plan with your carrier? A WI - FI connection is not sufficient.

    Thank you

    Bifocals

  • Why my PC cannot use all of the available memory?

    Hello

    I have windows ultimate 64 bit and the 6 GB of ram (laptop)

    http://img03.arabsh.com/uploads/image/2012/09/19/0d36454a60fa0d.PNG

    As shown in the photo, there is a free memory and available memory

    Total: 6058
    caching: 2713
    available: 2552
    free: 1

    Why windows cannot use the available memory, although there is no such thing as free storage space!

    What you see is normal.

    Windows 7 do not free memory. He's trying to preload it with applications that she believes, based on experience, that you may need.

    If you have plenty of RAM, you can see more free memory if Windows doesn't find anything to him with preload.

    Available memory is not actively used by all processes memory but it is preloaded with applications, is of the opinion, based on experience, that you might need as I said above. If it is required by another process, it is available to be used and the preloaded data are deleted.

    I hope this helps you.

  • RMAN-04014: failed to start: ORA-16019: cannot use LOG_ARCHIVE_DEST_1

    Hello

    I am facing a problem during the cloning of production TEST environment.

    Please see the below given error:

    ' RMAN-04014: failed to start: ORA-16019: cannot use LOG_ARCHIVE_DEST_1 with LOG_ARCHIVE_DEST or LOG_ARCHIVE_DUPLEX_DEST.

    And I used the following script to retrieve.

    ==========================================================================================

    ------------------------------------------------------------------

    VI initTEST.ora

    * .db_name = 'TEST '.

    * .db_unique_name = 'TEST '.

    SQL > startup nomount

    =============================

    Auxiliary RMAN.

    run

    {

    allocate auxiliary CHANNEL c1 device type disk;

    allocate auxiliary CHANNEL c2 device type disk;

    allocate auxiliary CHANNEL c3 device type disk;

    allocate auxiliary CHANNEL c4 device type disk;

    the value of newname for tempfile 1 to ' / testdata/R12/TEST/datafile/temp01.dbf';

    the value of newname for tempfile 2 to ' / testdata/R12/TEST/datafile/temp02.dbf';

    the value of newname for tempfile 3 to ' / testdata/R12/TEST/datafile/temp03.dbf';

    the value of newname for tempfile 4 to ' / testdata/R12/TEST/datafile/temp04.dbf';

    the value of newname for tempfile 5 to ' / testdata/R12/TEST/datafile/temp05.dbf';

    data duplicated in the 'TEST' backup location ' / backup/PROD_BKP_01_Nov_15 / '.

    SPFILE

    Define db_name = 'TEST '.

    Set db_unique_name = 'TEST '.

    Set cluster_database = "false".

    Set use_large_pages = 'false '.

    Set remote_listener = "

    Set local_listener = "

    Set listener_networks = "

    Set control_files='/testdata/R12/TEST/controlfile_TEST.ctl"

    Set diagnostic_dest ='/ oracle/app /'

    Set log_archive_dest = "/ testdata/R12/archive.

    Set audit_file_dest='/oracle/app/product/11.1.0/db_1/rdbms/audit/"

    Db_file_name_convert '+ DATA_P/PROD/DATAFILE', set ' / testdata/R12/TEST/datafile.

    Set log_file_name_convert '+ DATA_P/PROD/ONLINELOG', ' / testdata/R12/TEST/datafile ', '+ RECO_P/PROD/ONLINELOG', ' / testdata/R12/TEST/datafile;

    switch tempfile;

    }

    -----------------------------------------------------------------

    Then please suggest a solution?

    With thanks and greetings

    Ngoyi

    ------------

    This is what Oracle says:

    ORA-16019: can't use string with LOG_ARCHIVE_DEST or LOG_ARCHIVE_DUPLEX_DEST

    Cause: One of the following events caused a mismatch:

    (1) setting LOG_ARCHIVE_DEST or LOG_ARCHIVE_DUPLEX_DEST was in use when the LOG_ARCHIVE_DEST_n specified (n = 1.. 31) or parameter DB_RECOVERY_FILE_DEST occurred during extraction of initialization parameters.

    (2) LOG_ARCHIVE_DUPLEX_DEST or LOG_ARCHIVE_DEST parameter was used when an attempt is made to use an ALTER SYSTEM or ALTER SESSION command to set a value for the specified parameter LOG_ARCHIVE_DEST_n or DB_RECOVERY_FILE_DEST.

    (3) a command ALTER SYSTEM ARCHIVE LOG START FOR was in effect when the specified parameter LOG_ARCHIVE_DEST_n met during extraction of initialization parameters.

    (4) an ALTER SYSTEM ARCHIVE LOG START FOR order was in effect when an attempt is made to a command ALTER SYSTEM or ALTER SESSION allows you to set a value for the specified parameter LOG_ARCHIVE_DEST_n.

    Action: Eliminate all inconsistent parameter definitions.

  • Cannot use Premiere Pro CS6 on my laptop, after I installed windows 10.

    Recently I have bougth a CC team. I use Illustrator, Photoshop. But when I install the first, even if it is said up to date, and Intalled in my creative cloud application, I can't find it on my computer and cannot use it.

    I have uninstalled, reinstalled, deleted ombp file but nothing seems to work. What can I do if I can work in first? (Whatever version is)

    My system is HP ProBook 450 G2

    Before installing windows 10 that I could use first. After installing it, I have this problem. Please, please, please, help me!

    Hi cristianas,

    Is your operating system 32-bit or 64-bit?

    FYI, Premiere Pro is a 64-bit application and does not work on a 32-bit computer.

    How to find if my computer is 32-bit or 64-bit Windows

    Thank you

    Regalo

  • Cannot use mouse on Ubuntu hosted on vmware Fusion on a mac

    Hello world

    I'm running into a problem that I can't seem to understand-

    I can't get the mouse running x on Ubuntu hosted on a mac. I keep seeing these errors in the console:

    [85.137467] init: before the start of plymouth-stop status 1 last updated (1769)

    [94.768947] psmouse serio1: vmmouse: impossible to extract the data of State

    [94.769646] psmouse serio1: VMMouse to isa0060/serio1/input0 lost synchronization at byte 3

    [94.786399] psmouse serio1: vmmouse: impossible to extract the data of State

    [94.786895] psmouse serio1: VMMouse to isa0060/serio1/input0 lost synchronization at byte 3

    [94.803792] psmouse serio1: vmmouse: impossible to extract the data of State

    [94.804212] psmouse serio1: VMMouse to isa0060/serio1/input0 lost synchronization at byte 3

    [94.821407] psmouse serio1: vmmouse: impossible to extract the data of State

    [94.821913] psmouse serio1: VMMouse to isa0060/serio1/input0 lost synchronization at byte 3

    [94.838185] psmouse serio1: vmmouse: impossible to extract the data of State

    [94.838593] psmouse serio1: VMMouse to isa0060/serio1/input0 lost synchronization at byte 3

    [94.838594] psmouse serio1: show reconnect request

    and I can't tell if it's a configuration issue with vmware or a configuration problem in Ubuntu (or more likely, both).

    The mouse worked - but when I installed a window manager and improved, it seems to stop working.

    Any suggestions or points on how solve/debugging/troubleshooting this would be greatly appreciated.

    I googled around and installed xserver-synaptic modules and tried different 50 - synaptics.conf file.

    My/proc/bus/input/devices looks like this:

    Bus I: = 0019 Vendor = 0000 product = 0001 Version = 0000

    N: name = "button".

    P: Phys = LNXPWRBN/button/input0

    S: Sysfs = / devices / LNXSYSTM:00 / LNXPWRBN:00/input/input0

    SUP: Uniq =

    H: managers = event0 kbd

    B: PROP = 0

    B: EV = 3

    B: KEY = 10000000000000 0

    I: bus = 0011 Vendor = 0001 product = 0001 Version = ab41

    N: name = "keyboard at translated Set 2.

    P: Phys = isa0060/serio0/input0

    S: Sysfs = / devices/platform/i8042/serio0/entry/entry 1

    SUP: Uniq =

    H: managers = sysrq kbd event1 leds

    B: PROP = 0

    B: EV = 120013

    B: KEY = 402000000 3803078f800d001 feffffdfffefffff fffffffffffffffe

    B: MSC = 10

    B: LED = 7

    Bus I: = 0011 Vendor = 0002 product = 0013 Version = 0006

    N: name = "VirtualPS/2 VMware VMMouse.

    P: Phys = isa0060/serio1/input1

    S: Sysfs = / devices/platform/i8042/serio1/input/4

    SUP: Uniq =

    H: managers = mouse0 event2

    B: PROP = 0

    B: EV = b

    B: KEY = 70000 0 0 0 0

    B: ABS = 3

    Bus I: = 0011 Vendor = 0002 product = 0013 Version = 0006

    N: name = "VirtualPS/2 VMware VMMouse.

    P: Phys = isa0060/serio1/input0

    S: Sysfs = / devices/platform/i8042/serio1/entry/input3

    SUP: Uniq =

    H: managers = mouse1 event3

    B: PROP = 1

    B: EV = 7

    B: KEY = 30000 0 0 0 0

    B: REL = 103

    Bus I: = 0003 vendor = 0e0f product = 0003 Version = 0110

    N: name = "VMware VMware Virtual USB Mouse"

    P: Phys = usb - 0000:02:00.0 - 1/input0

    S: Sysfs=/devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-1/2-1:1.0/0003:0E0F:0003.0001/input/input5

    SUP: Uniq =

    H: managers = mouse2 event4 js0

    B: PROP = 0

    B: EV = 1f

    B: KEY = ffff0000 0 0 0 0

    B: REL = 140

    B: ABS = 3

    B: MSC = 10

    Bus I: = 0003 vendor = 0e0f product = 0003 Version = 0110

    N: name = "VMware VMware Virtual USB Mouse"

    P: Phys = usb - 0000:02:00.0 - 1/input1

    S: Sysfs=/devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-1/2-1:1.1/0003:0E0F:0003.0002/input/input6

    SUP: Uniq =

    H: managers = mouse3 event5

    B: PROP = 0

    B: EV = 17

    B: KEY = ffff0000 0 0 0 0

    B: REL = 143

    B: MSC = 10

    I found this thread and it helped: cannot use the mouse in the Ubuntu VM

    However, the solution for me was the opposite. I needed to activate "Auto-detect of mouse for games.

  • ORA-01552: cannot use tablespac system system rollback segment

    Hi all

    Environment: database Production: Source

    Database dev: target

    11203 Version database.

    Golden gate Version 11.1

    Scheme of the Golden Gate: GGATE

    Method of replication. DDL replication is ACTIVE

    In my production database my Undo tablespace is corrupted. I changed the management to cancel the manual setting and rebounded from the DB and open editing mode. Then I deleted the undo tablespace data file using in offline mode. Then I opened the database.

    SQL > alter database datafile ' / u01/app/oracle/oradata/db1/undotbs01.dbf' drop offline;

    Database altered.

    Issue.

    Now, if I try to let drop the tablespace UNDOTBS1 undo or to create the new database of the undo tablespace throws me error as below:

    SQL > drop tablespace undotbs1;

    Drop tablespace undotbs1

    *

    ERROR on line 1:

    ORA-00604: an error has occurred at the SQL level 1 recursive

    ORA-01552: cannot use system for non-system tablespace «GGATE» rollback segment

    ORA-06512: at the level of the line 993

    ORA-01552: cannot use system for non-system tablespace «GGATE» rollback segment

    Here is the status of rollback segment.

    SQL > select nom_segment, dba_rollback_segs State;

    NOM_SEGMENT STATUS

    ------------------------------ ----------------

    ONLINE SYSTEM

    _SYSSMU10_2490256178$ IN OFFLINE MODE

    _SYSSMU9_3593450615$ IN OFFLINE MODE

    _SYSSMU8_1909280886$ IN OFFLINE MODE

    _SYSSMU7_1924883037$ IN OFFLINE MODE

    _SYSSMU6_2460248069$ IN OFFLINE MODE

    _SYSSMU5_3787622316$ IN OFFLINE MODE

    _SYSSMU4_1455318006$ IN OFFLINE MODE

    _SYSSMU3_2210742642$ IN OFFLINE MODE

    _SYSSMU2_4228238222$ IN OFFLINE MODE

    _SYSSMU1_3138885392$ IN OFFLINE MODE

    11 selected lines.

    SQL > show Cancel parameter

    VALUE OF TYPE NAME

    ------------------------------------ ----------- ------------------------------

    UNDO_MANAGEMENT string MANUAL

    UNDO_RETENTION integer 900

    undo_tablespace string UNDOTBS1

    Please anyone suggest me how to manage this problem.

    Kind regards

    Rohit

    Try this:

    Conn / as sysdba

    SQL > alter system set _system_trig_enabled = false;

    SQL > alter trigger sys.cdc_alter_ctable_before DISABLE.

    SQL > alter trigger sys.cdc_create_ctable_after DISABLE.

    SQL > alter trigger sys.cdc_create_ctable_before DISABLE.

    SQL > alter trigger sys.cdc_drop_ctable_before DISABLE.

    create undo tablespace, you could do now:

    SQL > create undo tablespace undotbs2 datafile 'XX/xX/XXX/XXX/undotbs2.dbf' size XM autoextend on;

    SQL > alter system set undo_tablespace = undotbs2 scope = both;

    allow them once again:

    SQL > alter trigger sys.cdc_alter_ctable_before ENABLE;

    SQL > alter trigger sys.cdc_create_ctable_after ENABLE;

    SQL > alter trigger sys.cdc_create_ctable_before ENABLE;

    SQL > alter trigger sys.cdc_drop_ctable_before ENABLE;

    SQL > alter system set _system_trig_enabled = TRUE;

    Restart the system.

  • Cannot use 'lab1' host because the host CPU is not compatible with the judgment of the virtual machine suspend state.

    I see that this error was mailed here, but can't seem to find a position with a resolution.

    We use Lab Manager 4.0.4 and just upgraded the hosts in our laboratory.  Before updating to ESXi 4.1 ESX 4.0 u1, we cancelled all VMs in all configurations.  There is none who were suspended, they were all turned off.  We have improved vcenter 4.0 to 4.1 as well.  We moved from a dell poweredge 1950 with two quad core intel L5410 to a r610 with two quad core intel processor E5506.

    When I try to turn on some of the lab configurations (our VM models all work fine), I get this error:

    • Cannot use 'lab1' host because the host CPU is not compatible with the judgment of the virtual machine suspend state.

    I threw the State for the lab configuration (even if it was turned off and cancelled) and still get this message.  I guess the processor architecture of these chips is quite similar, and both are Intel.

    If I go into this directory of Manager of laboratory inside the data store for one of these virtual machines that does not light and add to the inventory, he turned and starts fine on my server esxi 4.1.  So how do Lab Manager to get account it's well deploy and start it?

    Hey billk.

    Although not supported completely, you can solve it by going to the SQL of Lab Manager database.  Make sure that you back up your database before you do anything like that.

    Open the table "fsdir" and corresponds to the dir_id with the id Lab Manager VM.  Once you find the relevant line, change suspend_proctype_id to null (Zero-Ctrl).  You can do this while Lab Manager is still running.

    The results can be unstable (i.e. Windows can crash if it was a drastic change of CPU), but at least you look at a hard reset.  The bat reset certainly not being able to return to the previous state.

    Also note that while Lab Manager does not include CVS, if you activated, your virtual machines still work in CVS mode.  If you have a mixture of heterogenious of hosts in a cluster for Lab Manager, you can see this question pop up a lot.  There is absolutely nothing wrong with take back the virtual machine because of the VCA, but Lab Manager thinks otherwise and prevents it.

  • Cannot merge data files in a spreadsheet on secure document

    I created a form in Acrobat X Pro. The form was guaranteed first with a password to restrict editing, allowing just Fill-in form fields. Then save file by activating features enabled and save the file. Everything works Ok: cannot change the shape and allows me to record, but when I use merge data files into spreadsheet to export data, the exported CSV file is empty. Cannot export data. So I tried to remove the protection by password but received the following message:

    You cannot change the security on this document because the document is signed or certified.

    Can I do to solve this problem? No more was able to export the data or the deletion of protection.

    Thank you.

    The next time you add security, select the option 'Enable copying of text, images and other content' If you want to be able to export the form data.

    As is the case, you should be able to "file > save a copy" and then remove the security.

  • cannot use ASM for database storage.

    Hi all

    I use oracle linux 5.4
    and 11g R2 grid

    But while using DBCA to configure the database
    but when I select the type of Storage Management (ASM) of automatic storage

    while I can remember disk group has been given
    When I use data then he gave me the following error.
    cannot use ASM for storage of the database for the following reason
    No found DISKGROUP.

    Please help me thanks in advance.

    See the link: -.
    DBCA could not detect diskgroup
    Thread: DBCA could not detect diskgroup

  • ORA-22992: cannot use LOB Locators selected from the remote tables...

    Oracle 10.2.1.0.4
    Solaris 10

    We try to access a table in another database via a db_link.

    The table we are trying to access has a LOB.

    We get the following error: ora-22992: cannot use LOB Locators selected from the remote tables.

    Is there a way to get around this? We need the data in the BLOB field.

    Thank you.

    See on metalink:

    ORA-22992 has a workaround solution in 10 gr 2
    DOC - ID: 436707.1

    Werner

  • cannot use three finger view Preview

    cannot use three finger check to open in the preview pdf

    If you mean that you can't have three fingers tap the trackpad for Quick Look, a file, I got that too. One of the best features of Mac OS x, so I hope they fix very soon!

Maybe you are looking for

  • How do you create the recovery with Yoga 13 disc?

    With all the computers I bought, I had made or received recovery disks. I have read the forums here and found that I can make a windows image (what I did) and how to use the OneKey to make a backup. My concern is after I am out of warranty and the ha

  • Need to create useful reports from the results of TestStand (.mdb) database

    Any help is greatly appreciated! We need create reports from the results of TestStand (.mdb) database.  I was not able to find much online. Details: In 2014 TestStand, we have configured to use Access database management system.  Otherwise, the datab

  • HP RX1950 POCKET PC

    I recently bought a RX1950 Pocket PC. It synchronizes to my pc Windows 7 OK, but it won't connect to the internet. The blue led lights up indicating that the WIFI is working. I have my server and enter the key, however, he must have been used on a ma

  • systemProtection virus :(

    my computer is infected with the SystemProtection, I'm completely unable to access the system restore, how to get back my computer? Help, please

  • Z10 blackBerry S/MIME certificate import error

    Hello I received an e-mail with 2 certificates of my company. I need them for S/MIME. I tried to import them directly from the email. After you have entered the password, I received the message that they were imported successfully. But I couldn't cho