XMLTable: Manipulation of the optional nodes

create table t(id int,data xmltype);

insert into t values (1,xmltype('
<Results>
   <Envelope>
      <Summary  ResultCount="3">
         <Result Item="1">
            <Detail Item="1">1.1</Detail>
         </Result>
         <Result Item="2">
            <Detail Item="1">2.1</Detail>
            <Detail Item="2">2.2</Detail>
            <Detail Item="3">2.3</Detail>
         </Result>
         <Result Item="3">
            <Detail Item="1">3.1</Detail>
            <Detail Item="2">3.2</Detail>
         </Result>
      </Summary>
   </Envelope>
</Results>
'))

insert into t values (2,xmltype('
<Results>
   <Envelope>
      <Summary>No search results</Summary>
   </Envelope>
</Results>
'))

Query

select
id,
result_no,detail_no,detail_text,no_results
from t,
          XMLTable('//Summary' passing t.data
            COLUMNS no_results  PATH 'text()'                   
          ) xtab1
,          XMLTable('//Result' passing t.data
            COLUMNS result_no  PATH '@Item',detail xmltype path 'Detail'                  
          ) xtab2
,             
          XMLTable('/Detail' passing xtab2.detail
            COLUMNS  
              detail_no    PATH '@Item',                     
              detail_text PATH 'text()'           
          ) xtab3

The query works fine for id = 1 but when there is no search results (id = 2), it removes the entire row instead of display the contents of the node summary text().

How the query can be modified to display all records in the table? If there are results serach, result_no/detail_no/detail_text columns will fill up, if not, the column no_results will fill up.

Help? Thank you

Outer joins...

SQL > select id, result_no, detail_no, detail_text, no_results

2 t

3, XMLTable ('/ results/envelope ' in passing t.data)

4 COLUMNS no_results varchar2 (30) path "Summary / text ().

5 road of xmltype results ' summary/result '.

(6) (+) xtab1

7, XMLTable ("' / result" in passing xtab1.results)

8 COLUMNS result_no whole path '@Item '.

9 road of xmltype details 'Detail '.

(10) (+) xtab2

11, XMLTable ('/ Detail' in passing xtab2.details)

12 COLUMNS detail_no whole path '@Item '.

13, path of varchar2 (10) of detail_text '.'

(14) (+) xtab3

15;

ID RESULT_NO DETAIL_NO DETAIL_TEXT NO_RESULTS

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

1           1           1 1.1

1           2           1 2.1

1           2           2 2.2

1           2           3 2.3

1           3           1 3.1

1           3           2 3.2

2 no search results

7 selected lines

(also works with the ANSI outer joins)

Tags: Database

Similar Questions

  • Is the secondary node of data direct mandatory or optional?

    Can live given VM for UCCE 11.x settle as a head node (i.e., stand-alone node, no HA) or is a secondary node required for deployment?

    Thanx, Neil

    The requirement for a secondary server to Live Data is optional and not mandatory. Please make sure that you install the main node of live data on its separate VM and living not with cuic on a single virtual machine

    Concerning

    Deepak

  • Retrieve the value of the XML node in XMLTable

    Hello, hope that it is something simple and I went beside her, but consider this example:
     with et as(
         SELECT 
               xmlType('<Invoice>
        <InvoiceInformation>
            <Number>123456</Number>
        </InvoiceInformation>
        <InvoiceLines>
            <InvoiceLine>
                <Detail>
                    <Amount>100</Amount>
                    <Line>1</Line>
                </Detail>
                <Type>
                    <CheesyPotato>
                        <Instructions>
                            <CookTime>120</CookTime>
                            <CookTimeUnits>Minutes</CookTimeUnits>
                            <CookTemperature>450</CookTemperature>
                        </Instructions>
                    </CheesyPotato>
                </Type>
            </InvoiceLine>
            <InvoiceLine>
                <Detail>
                    <Amount>10000</Amount>
                    <Line>2</Line>
                </Detail>
                <Type>
                    <DeathStar>
                        <Instructions>
                            <CookTime>4</CookTime>
                            <CookTimeUnits>5 "parsecs"</CookTimeUnits>
                            <CookTemperature>1000000</CookTemperature>
                        </Instructions>
                    </DeathStar>
                </Type>
            </InvoiceLine>  
            <InvoiceLine>
                <Detail>
                    <Amount>250</Amount>
                    <Line>3</Line>
                </Detail>
                <Type>
                    <Quiche>
                        <Instructions>
                            <CookTime>75</CookTime>
                            <CookTimeUnits>Minutes</CookTimeUnits>
                            <CookTemperature>350</CookTemperature>
                        </Instructions>
                    </Quiche>
                </Type>      
            </InvoiceLine>    
        </InvoiceLines>  
    </Invoice>  
     ') xt
          from dual
           ) 
            SELECT     
                ext.*
               FROM
               et,
               XMLTABLE(
               'for $Invoice in $INV/Invoice
                    for $InvoiceItem in $Invoice/InvoiceLines/InvoiceLine
                      return <row> 
                      {
                        $Invoice
                        ,$InvoiceItem
                      } 
                      </row>'           
                  PASSING et.xt as INV
                        COLUMNS
                   INVOICENUMBER                   VARCHAR2  (6)       PATH 'Invoice/InvoiceInformation/Number'                    
                  ,InvoiceLineNumber               VARCHAR2  (5)       PATH 'InvoiceLine/Detail/Line'
                  ,Amount                          VARCHAR2  (5)       PATH 'InvoiceLine/Detail/Amount'
                  ,CookTime                        VARCHAR2  (5)       PATH 'InvoiceLine/Type//Instructions/CookTime'
                  ,CookTimeUnits                   VARCHAR2  (15)       PATH 'InvoiceLine/Type//Instructions/CookTimeUnits'
                  ,CookTemperature                 VARCHAR2  (10)       PATH 'InvoiceLine/Type//Instructions/CookTemperature'
                ) ext
    /            
                  
                  
        INVOICENUMBER INVOICELINENUMBER AMOUNT COOKTIME COOKTIMEUNITS   COOKTEMPERATURE 
    ------------- ----------------- ------ -------- --------------- --------------- 
    123456        1                 100    120      Minutes         450             
    123456        2                 10000  4        5 "parsecs"     1000000         
    123456        3                 250    75       Minutes         350   
    How the child node of the 'name' Type?
    TypeChild       INVOICENUMBER INVOICELINENUMBER AMOUNT COOKTIME COOKTIMEUNITS   COOKTEMPERATURE 
    ------------------- ------------- ----------------- ------ -------- --------------- --------------- 
    CheesyPotato 123456        1                 100    120      Minutes         450             
    DeathStar      123456        2                 10000  4        5 "parsecs"     1000000         
    Quiche          123456        3                 250    75       Minutes         350 
    I have tried different methods; along the lines of ', $InvoiceItem, Type, child, name ' does not, any help would be appreciated, thanks

    Hello

    You can use the name() function in the COLUMNS clause:

    SQL> WITH et AS(
      2    SELECT XMLType('
      3      
      4          123456
      5      
      6      
      7          
      8              
      9                  100
     10                  1
     11              
     12              
     13                  
     14                      
     15                          120
     16                          Minutes
     17                          450
     18                      
     19                  
     20              
     21          
     22          
     23              
     24                  10000
     25                  2
     26              
     27              
     28                  
     29                      
     30                          4
     31                          5 "parsecs"
     32                          1000000
     33                      
     34                  
     35              
     36          
     37          
     38              
     39                  250
     40                  3
     41              
     42              
     43                  
     44                      
     45                          75
     46                          Minutes
     47                          350
     48                      
     49                  
     50              
     51          
     52      
     53  ') xt
     54    FROM dual
     55  )
     56  SELECT ext.*
     57  FROM et
     58     , XMLTable(
     59         'for $Invoice in $INV/Invoice
     60            for $InvoiceItem in $Invoice/InvoiceLines/InvoiceLine
     61            return 
     62            {
     63              $Invoice/InvoiceInformation
     64            , $InvoiceItem
     65            }
     66            '
     67         PASSING et.xt as INV
     68         COLUMNS
     69           typechild          VARCHAR2(30)  PATH 'name(InvoiceLine/Type/*)'
     70         , INVOICENUMBER      VARCHAR2(6)   PATH 'InvoiceInformation/Number'
     71         , InvoiceLineNumber  VARCHAR2(5)   PATH 'InvoiceLine/Detail/Line'
     72         , Amount             VARCHAR2(5)   PATH 'InvoiceLine/Detail/Amount'
     73         , CookTime           VARCHAR2(5)   PATH 'InvoiceLine/Type/*/Instructions/CookTime'
     74         , CookTimeUnits      VARCHAR2(15)  PATH 'InvoiceLine/Type/*/Instructions/CookTimeUnits'
     75         , CookTemperature    VARCHAR2(10)  PATH 'InvoiceLine/Type/*/Instructions/CookTemperature'
     76       ) ext
     77  ;
    
    TYPECHILD                      INVOICENUMBER INVOICELINENUMBER AMOUNT COOKTIME COOKTIMEUNITS   COOKTEMPERATURE
    ------------------------------ ------------- ----------------- ------ -------- --------------- ---------------
    CheesyPotato                   123456        1                 100    120      Minutes         450
    DeathStar                      123456        2                 10000  4        5 "parsecs"     1000000
    Quiche                         123456        3                 250    75       Minutes         350
     
    

    If this does not work for your version (pre 11g), you will need to push the expression in the main XQuery expression:

    ...
       , XMLTable(
           'for $Invoice in $INV/Invoice
              for $InvoiceItem in $Invoice/InvoiceLines/InvoiceLine
              return 
              {
                element TypeChild {name($InvoiceItem/Type/*)}
              , $Invoice/InvoiceInformation
              , $InvoiceItem
              }
              '
           PASSING et.xt as INV
           COLUMNS
             typechild          VARCHAR2(30)  PATH 'TypeChild'
           , INVOICENUMBER      VARCHAR2(6)   PATH 'InvoiceInformation/Number'
    ...
    
  • Why can not find the option "Transfer of data and memory" in the channel property node?

    Hi all

    I'll try to find some properties such as "data transfer and memory" in my node property 'DAQmx' Channel, as below ".

    But in my Labview 8.5, I can't. I reinstalled the NOR-DAQmx driver, but it didn't work. What I get is

    I missed something? Thank you.

    Kind regards

    Bo

    Hi Bo,

    Take at look at this knowledge base article.

    3ESBHEL2 Ko AE: lack of properties in the DAQmx nodes property

    Let me know if this solves your problem.

    Concerning

    John P

    Technical sales engineer

    National Instruments

  • Is this OK to run the utility on the active node TimesTen ttMigrate?

    Hello

    I heard that it is not a good idea to run the utility on the active node TimesTen ttMigrate but I saw no logical technical or a document explaining why?

    When you get a chance, please let me know.

    Thank you

    Sunil

    I guess you're referring to the execution of ttMigrate - a or c - to export one or more tables in an external file?

    The active node is usually much more heavily loaded than the day before and more sensitive to disturbance by activities such as an unloading of big data. In addition, according to the options that you use (or not use) with ttMigrate you will lock entire tables or hierarchies table whole even while the ttMigrate works and this could be very disruptive to applications running on the back-end database and could lead to timeout lock etc. Replication takes his retirement automatically for this kind of error if you run the ttMigrate on the starting node you will not impact on applications and you'll have only a relatively small impact on replication.

    If you do not want the sensation exported 100% transactional consistency (assuming that there are DML activity going on against the exported table) then you can use instead

    ttBulkCp o with the option - noForceSerializable to avoid any impact on the application to access the table.

    Chris

  • Get the value of the tree node


    Hello

    I use the hierarchy tree to build a menu (in oracle 11 gform).

    I need to retrieve the value of the selected node (child_id), and when I write what follows, I get an error: frm-47307: could not get the properties of the tree root node .

    the statement is:

    l_node_value: = Ftree.Get_Tree_Node_Property (htree,: SYSTEM.) TRIGGER_NODE, Ftree.NODE_VALUE);

    I use this query to populate the tree (and it works fine...):

    Select the case sensitive option

    When connect_by_isleaf = 1 then

    0

    When level = 1 then

    1

    on the other

    -1

    end as status

    level

    name as title

    null as an icon

    CHAILD_ID as value

    Of

    (

    SELECT TO_CHAR (CUO. OBJECT_ID) CHAILD_ID,.

    PARENT_ID TO_CHAR (NULL).

    CUO. OBJECT_PROMPT NAME,

    OBJECT_TYPE 'G '.

    OF CRDX_USER_OBJECT COU

    WHERE GROUP_ID = - 1

    UNION

    SELECT TO_CHAR (CGO. OBJECT_ID) CHAILD_ID,.

    TO_CHAR (CGO. PARENT_ID FOLDER_ID),

    CGO. OBJECT_PROMPT NAME,

    OBJECT_TYPE

    OF OGS CRDX_GROUP_OBJECT

    )

    Start by parent_id is null

    connect by parent_id = prior CASE OBJECT_TYPE WHEN 'G' THEN CHAILD_ID END

    Can someone help me?

    Thanks in advance,

    Elad

    : SYSTEM. TRIGGER_NODE is valid for one of the WHEN-TREE-NODE-xxx-triggers.

    If you want to get the value of the node selected in any other place, you need the integrated Ftree.GET_TREE_SELECTION

  • Options of mutually exclusive in a function of the Option

    Hello

    I have an obligation to implement a mutually excluding option feature - for example: there are 10 options depending on the option. The last one is 'None of the above '. In this case, when the user selects 'None of the above', all other options selected must be unselected and vice versa. I can create a logic rule (exclude or deny) to implement, but we do not want the rule violation message. In this case, the only option is a CX rule, I guess. All those put in place this type of requirements using CX? If so, could guide you. Thanks in advance.

    Biju-

    The postValueChange event has an event called changedNode parameter. If your CX is related to the function of the Option and its scope is a subtree of nodes of Base, from the changedNode to your method CX will tell us which Option has been selected (or deselected; your CX should explain deselection as a possible "ValueChange").

    Mathgamain

  • CREATE the COUPLE of INTELLIGENCE ASSETS needs to be run only on one of the MASTER nodes.

    Hello world

    I'm trying to perform an active replication and standby on my solaris machine.

    I get the error message

    Command > create the pair of Eve active dts_ttdb on "cc-qa-dts", rep_test_ttdb "ESN-t2000-4;
    8130: CREATE EVE COUPLE ASSETS should only be run on one of the MASTER nodes.
    The command failed.
    The following note, let me know if there is no worng I did...


    (1) I have created a dts_ttdb of datstore on my active node, which is 'cc-qa-dts' and also added the info on the satandby in the sys.odbc.ini file as shown below...

    [DTS_ttdb]
    Driver=/export/home/TimesTen/TimesTen/tt1121/lib/libtten.so
    Data store = / ttvl01/TIMESTEN/dts_ttdb/ds
    LogDir = / ttvl02/TimesTen/dts_ttdb/logs
    PermSize = 400
    TempSize = 320
    AutoCreate = 0
    MemoryLock = 4
    DatabaseCharacterSet = AL32UTF8

    ########################################################################
    # This examples of following definitions must be in the. odbc.ini file
    # which is used for the TimesTen customer 11.2.1.
    # The name of the server is defined in the TTC_SERVER attribute.
    # The Server DSN is defined in the TTC_SERVER_DSN attribute.
    #########################################################################

    [rep_test_ttdb]
    TTC_SERVER = nse-t2000-4
    TTC_SERVER_DSN = rep_test_ttdb


    (2) the reference is also included in active sys.ttconnect.ini to the standby server and

    ###############################################################
    # This is a sample sys.ttconnect.ini file is used for the
    # TimesTen customer. It contains entries for each server.
    ###############################################################


    [ESN-t2000-4]
    Description = TimesTen Server
    Adresse_reseau = nse-t2000-4
    PORT_TCP = 53389


    (1) already created a user admin 'adm' with the active data store DTS_ttdb admin option

    loged as a user of ADMS to create the day before active as shown below...

    $ ttisql DSN = "dts_ttdb; UID = SMA; pwd = adm"

    Copyright (c) 1996-2011, Oracle. All rights reserved.
    Type? or 'aid' help, type "exit" to leave the ttIsql.



    Connect "DSN = dts_ttdb; UID = SMA; pwd = SMA';
    Successful login: DSN = DTS_ttdb; UID = SMA; DataStore = / ttvl01/dts_ttdb/TIMESTEN/ds; DatabaseCharacterSet = AL32UTF8; ConnectionCharacterSet = US7ASCII; AutoCreate=0;DRIVER=/export/home/timesten/TimesTen/tt1121/lib/libtten.so; MemoryLock = 4; LogDir = / ttvl02/TimesTen/dts_ttdb/logs; PermSize = 400; TempSize = 320; TypeMode = 0;
    (Default AutoCommit = 1).
    Command > create the pair of Eve active dts_ttdb on "cc - qa - dts.central.sun.com ', rep_test_ttdb 'nse-t2000-4;
    8130: CREATE EVE COUPLE ASSETS should only be run on one of the MASTER nodes.
    The command failed.
    Command >

    I get this error...

    Please guid me if I left the whole procedure, also the "rep_test_ttdb" is the data store created on the side of Eve...
    I am able to ping both machines to each of these respective servers...

    Can somone help me solve this problem of replication...

    Thank you
    FIFA

    You need not enter the sys.ttconnect.ini or the DSN entry (client) standby in replciation in the sys.oidbc/.ini file to activate it. These definitions shall apply client/server connectivity to the active machine to machine standby. replication uses its own separate communication mechanism for client/server connectivity.

    If you have run successfully CREATE the COUPLE of EVE education ASSETS on the data store active, then you have created the replciation defitinitions. However, several additional steps are required before replciation will be operational. Rather than try my hand at them all explain you here, please take the time to read this guide of TimesTen replciation and in particular the sections on active replication / standby pair where many key concepts is explained as well as detailed procedures for the implementation and administration of a replicated environment. This isn't something which can easily be covered in a form sufficiently detailed via a forum. If you still have the problem after that then we can address specific questions here in the forum.

    Kind regards

    Chris

  • XML E4X nodes select based on the attribute of the child node.

    Hey,.

    I'm making a selection on the following XML code.

    I want to retrieve the list of the variable node when its child nodes metadata attribute 'name' is not equal to "transitional". I have read the documentation, but have not been able to solve this problem, and it should be pretty simple. So far, I tried with something like.

    variable var: XMLList = classInfo.variable. (the metadata. (@name! = "transitoire")) ;

    variable var: XMLList = classInfo.variable. (metadata.@name! = "transitional");

    But he returns all the nodes variable.

    "< name =" type com.sca.dataModel::PresentationDataEntity"base =" com.sca.dataModel::BaseEntity "isDynamic ="false"isFinal ="false"isStatic ="false">
    < extendsClass type="com.sca.dataModel::BaseEntity"/ >
    < extendsClass type = 'Object' / >
    < variable name = "subtitle" type = "string" >
    < name of metadata = "__go_to_definition_help" >
    < arg key = 'file' value="/Users/jonas/projects/SCA-CMS/src/com/sca/dataModel/PresentationDataEntity.as"/ >
    < arg key = "pos" value = "128" / >
    < / metadata >
    < / variable >
    < variable name = "id" type = "Number" >
    < name of metadata = "__go_to_definition_help" >
    < arg key = 'file' value="/Users/jonas/projects/SCA-CMS/src/com/sca/dataModel/BaseEntity.as"/ >
    < arg key = "pos" value = "153" / >
    < / metadata >
    < / variable >
    < variable name = "tableName" type = "String" >
    < name of metadata = "transitional" / >
    < name of metadata = "__go_to_definition_help" >
    < arg key = 'file' value="/Users/jonas/projects/SCA-CMS/src/com/sca/dataModel/BaseEntity.as"/ >
    < arg key = 'pos' value = '118' / >
    < / metadata >
    < / variable >
    < variable name = "db_SortAsc" type = "Boolean" >
    < name of metadata = "transitional" / >
    < name of metadata = "__go_to_definition_help" >
    < arg key = 'file' value="/Users/jonas/projects/SCA-CMS/src/com/sca/dataModel/BaseEntity.as"/ >
    < arg key = "pos" value = "281" / >
    < / metadata >
    < / variable >
    < variable name = "title" type = "String" >
    < name of metadata = "__go_to_definition_help" >
    < arg key = 'file' value="/Users/jonas/projects/SCA-CMS/src/com/sca/dataModel/PresentationDataEntity.as"/ >
    < arg key = "pos" value = "100" / >
    < / metadata >
    < / variable >
    < method name = "setData" declaredBy = "com.sca.dataModel::BaseEntity" returnType ="*" > "
    < parameter index = '1' type = 'Object' optional = "false" / >
    < name of metadata = "__go_to_definition_help" >
    < arg key = 'file' value="/Users/jonas/projects/SCA-CMS/src/com/sca/dataModel/BaseEntity.as"/ >
    < arg key = "pos" value = "330" / >
    < / metadata >
    < / method >
    < name of metadata = "__go_to_ctor_definition_help" >
    < arg key = 'file' value="/Users/jonas/projects/SCA-CMS/src/com/sca/dataModel/PresentationDataEntity.as"/ >
    < arg key = "pos" value = "167" / >
    < / metadata >
    < name of metadata = "__go_to_definition_help" >
    < arg key = 'file' value="/Users/jonas/projects/SCA-CMS/src/com/sca/dataModel/PresentationDataEntity.as"/ >
    < arg key = "pos" value = "42" / >
    < / metadata >
    < / type >

    Try classInfo.variable. ([email protected] (.indexOf("transient')) is

    (- 1).

  • 11 GR 2 RAC - Database Control - agent system of is not the second node

    I have a new system of the RAC node 2 11 GR 2 RHEL5 64 bit - it's a testbed at the moment. I installed Database Control because at the moment I don't have a separate grid control server available for this configuration. After you run DBCA, control of the database has started very well, and I could connect to the console and see the two available nodes. On a subsequent restart of the two nodes, I can start the dbconsole leave the first node, but the agent does not start on the second node. My understanding is that spear the dbconsole of node 1 should start the agents on both nodes. Is this correct? I don't know why the agent is not running or implementation on the second node. How can I start it? GC, I could do emctl start the agent, but apparently for the control of the database, this isn't an option.

    Node1:
    [oracle@node1 db_1]$ emctl status dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2009 Oracle Corporation.  All rights reserved.
    https://node1.com:1158/em/console/aboutApplication
    Oracle Enterprise Manager 11g is running.
    ------------------------------------------------------------------
    Logs are generated in directory /u01/app/oracle/product/11.2.0/db_1/node1_saastexd/sysman/log
    
    [oracle@node1 db_1]$ emctl status agent
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2009 Oracle Corporation.  All rights reserved.
    ---------------------------------------------------------------
    Agent Version     : 10.2.0.4.2
    OMS Version       : 10.2.0.4.2
    Protocol Version  : 10.2.0.4.2
    Agent Home        : /u01/app/oracle/product/11.2.0/db_1/node1_clusterdb
    Agent binaries    : /u01/app/oracle/product/11.2.0/db_1
    Agent Process ID  : 18120
    Parent Process ID : 18073
    Agent URL         : https://node1.xxx.com:3938/emd/main
    Repository URL    : https://node1.xxx.com:1158/em/upload/
    Started at        : 2010-04-27 16:49:17
    Started by user   : oracle
    Last Reload       : 2010-04-27 16:59:28
    Last successful upload                       : 2010-04-27 17:04:34
    Total Megabytes of XML files uploaded so far :     2.54
    Number of XML files pending upload           :        0
    Size of XML files pending upload(MB)         :     0.00
    Available disk space on upload filesystem    :    58.40%
    Data channel upload directory                : /u01/app/oracle/product/11.2.0/db_1/node1_clusterdb/sysman/recv
    Last successful heartbeat to OMS             : 2010-04-27 17:04:35
    ---------------------------------------------------------------
    Agent is Running and Ready
    Node 2
    [oracle@node2 oracle]$ emctl status agent
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2009 Oracle Corporation.  All rights reserved.
    ---------------------------------------------------------------
    Agent is Not Running
    I can't see what follows from sysman/log/emagent_perl.trc on the first node:
    ties line no. 75
    maxRowCount.pl: Tue Apr 27 16:49:19 2010: ERROR:  Max Count Value not set properly in file /u01/app/oracle/product/11.2.0/db_1/sysman/config/esa/database.proper
    ties line no. 77
    I admit that I am more familiar with GC than DC, although not at all an expert. Any ideas?

    You must leave dbconsole time node. from the dbconsole will start the agent, there is no agent seprate for dbconsole

  • Where are the options of the trackpad in Sierra OS?  In El Capitan the trackpad there NO light tap (ENTER) and just one click HARD (ENTER) and could move the cursor.

    Where are the options of the trackpad in Sierra OS? In El Capitan the trackpad there NO light tap (ENTER) and just one click HARD (ENTER) and could move the cursor.

    System Preferences > Trackpad!

  • When I turn off the option "optimize the iphone storage" in iCloud photos, made my phone automatically re - download all my photos/videos in my phone again?

    I used the option "optimize the iphone storage" on my old phone to save space, but I hated waiting to load when I want to watch them. Now, I clicked on "Download and keep the originals", but I can't tell if my phone is re - download the original photos/videos to iCloud to my phone. What does automatically or are these pictures forever in the version "optimized" on my phone?

    Subsequently, it must download the originals. Synchronization is VERY slow, so it may take some time depending on how many photos you have.

  • I recently blocked my macbook pro using find my iphone app now, he continues to display in 'your computer is disabled. Try again in 60 minutes. I tried pressing the option key and also the R button at startup. same thing is happening.

    I recently blocked my macbook pro using find my iphone app now, he continues to display in 'your computer is disabled. Try again in 60 minutes. I tried pressing the option key and also the R button at startup. same thing is happening.

    Hi iambjan,

    I understand that your MacBook Pro has been lost by the intermediary of find my Mac mode. Fortunately, you can go to the off mode lost through the steps described below.

    You can disable the lost Mode by entering the password of the device, or by following the steps below. Alternatively, you can follow the steps below to change the details displayed on your lost device.

    Note: If your credit cards and debit to pay Apple have been suspended because you put your iPhone in lost Mode, when you disable lost Mode and reconnect to iCloud, you can continue using your cards.

    1. Go to find my iPhone on iCloud.com.

      If you don't find my iPhone on iCloud.com, your account has fair access to the web features only iCloud. To access find my iPhone and other iCloud features, set up on your device iOS or Mac iCloud.

    2. Click on all devices, and then select the device that is lost.

    3. Click on lost Mode, then change the information or lost the stop Mode.

    If you cannot use lost fashion as find my iPhone is not configured on your lost device, see the article by Apple Support If your iPhone, iPad or iPod touch is lost or stolen.

    SEE ALSO
    Remove credit and debit of the portfolio (or book) maps

    iCloud: use lost Mode
    https://support.Apple.com/kb/ph2700

    Kind regards.

  • macOS Sierra/iTunes 12.5.1 - where is the option to view 3-pane column?

    I just upgraded to macOS Sierra and iTunes 12.5.1.21. I'm trying to find where I can display my iTunes library in that 3-pane column see, but I can not find the option. It can be under the view menu in iTunes. Does anyone know where it was moved to?

    I have a library of 200 GB and more, with hundreds of albums under 20 kinds, so that column 3-pane view is view only option that really allows me to find and discover all my music quickly and easily. I hope that the display option has not been removed from iTunes in this new update, which would be catastrophic for me.

    Hello

    -What are you talking about?

    Jim

  • I don't have the option in my settings slide to unlock rather than use the button "home" since ios10

    Hi I have an iphone 5 and I changed to ios10, but I don't like just press the home button to unlock the phone because I was just used to drag the screen. But when I go into settings > general > accessibility > "home" button is not the option press on / do not press the button for unlock...

    This is how it works in iOS10.  There are a lot of discussions about it.  I've already gotten quite used to the reality, is that with each new version of iOS, there are new features and things change.  To answer your question, there is no setting for slide open.

Maybe you are looking for