What is the outbreak of shooting sequence in the following example?

Hai,

If we have a table with the name 'XXSample '.

Now let's write triggers on the table as follows

"before the table insert level".
"before the level of line insertion.
"after the table insert level".
'after insert row level.

What is the sequence of triggers... What trigger fires in the order means.

Its documented triggers

Execution is like that.

1. before the insert statement level

2. before the level of line insertion

3. after the level of line insertion

4. after the insert statement level

You could also just to test it.

SQL > create table t (not all)
2.

Table created.

SQL > create or replace trigger trig_1 before insert the t
2 start
3 dbms_output.put_line ("' before the insert statement");
4 end;
5.

Trigger created.

SQL > create or replace trigger trig_2 after insert on t
2 start
3 dbms_output.put_line ("' after insert statement");
4 end;
5.

Trigger created.

SQL > create or replace trigger trig_3 before insert the t for each line
2 start
3 dbms_output.put_line (' before inserting a line');
4 end;
5.

Trigger created.

SQL > create or replace trigger trig_4 after insert on t for each line
2 start
3 dbms_output.put_line ("' after the insert row");
4 end;
5.

Trigger created.

SQL > set serveroutput on

SQL > insert into values t (1);
Before the insert statement
Before inserting a line
After line insertion
After the insert statement

1 line of creation.

SQL >

Tags: Database

Similar Questions

  • What is the best example of HTML5 that created by html5

    What is the best example of HTML5 that created by html5

    I'm not 'Best', but USA Today is a good example.

    http://appworld.BlackBerry.com/WebStore/content/22054315/

  • What do the following entries in the following configuration file?

    What do the following entries in the following configuration file?
    Thank you
    < include > coherence-pof - config.xml < / include >
    < allow-interfaces > true < / allow interfaces >
    true < subclasses allow > < / subclasses allow >
    <?xml version="1.0"?>
    <!DOCTYPE pof-config SYSTEM "pof-config.dtd">
    <pof-config>
    <user-type-list>
    <!-- coherence POF user types -->
    <include>coherence-pof-config.xml</include>
    <!-- com.tangosol.examples package -->
    ...
    <allow-interfaces>true</allow-interfaces>
    <allow-subclasses>true</allow-subclasses>
    </pof-config>

    -L' allow-interfaces to indicate if the class name of the type of user can specify types of Java interface in addition to the Java classes. Valid values are "true" or "false". Default value is false.

    -L' allow-sub-classes element indicates if the user-name of the class type can specify a type of Java class which is abstract, and whether subclasses of any type of user specified name of the class will be allowed during execution and automatically map to the super class specified for a serializer. Valid values are "true" or "false". Default value is false.

    -L' user-type-list element contains zero or more elements of type of consumer. Each type of user POF that is used must be included in the list-type-user. The item of list-type - the user can also contain zero or more include items. Each includes element is used to add items of type user defined in another pof-config file.

    The include element specifies the location of a pof-config file to load items of type user of. The value is a string of locator (URL or a valid path) that identifies the location of the target pof-config file.

    http://wiki.tangosol.com/display/COH35UG/user-type-list

    http://wiki.tangosol.com/display/COH35UG/POF-config

    Thank you

    Everett Williams
    Team coherence

  • What are the following wait events? Someone can it translate into the details?

    What are the following wait events? Someone can it translate into the details?
    PX Deq: Example table Q
    PX Deq Credit: send blkd
    PX Deq: Join AC
    PX Deq: Signal ACK
    PX Deq: Fragment of Msg
    direct path read
    PX qref latch
    SQL> select event,total_waits,time_waited,wait_class from v$system_event order by total_waits;
    EVENT                          TOTAL_WAITS TIME_WAITED WAIT_CLASS
    ------------------------------ ----------- ----------- --------------------
    db file scattered read             9333287     2471813 User I/O
    *PX Deq: Table Q Sample            11401065    43684227 Idle*
    *PX Deq Credit: send blkd          13798394    25448649 Other*
    SQL*Net message from client       20767011  1179217392 Idle
    SQL*Net message to client         20767019        2618 Network
    *PX Deq: Join ACK                  23735308     1022426 Idle*
    *PX Deq: Parse Reply               24882798     1278726 Idle*
    rdbms ipc message                 25223968  2147012652 Idle
    *PX Deq: Signal ACK                26615286    27873560 Other*
    cursor: mutex X                   26745289       52071 Concurrency
    *PX Deq: Msg Fragment              43670924    78219774 Idle*
    
    EVENT                          TOTAL_WAITS TIME_WAITED WAIT_CLASS
    ------------------------------ ----------- ----------- --------------------
    PX Idle Wait                      68927042  4364594403 Idle
    PX Deq: Execute Reply             88498025     4326377 Idle
    PX Deq: Execution Msg            823922687   792964190 Idle
    *direct path read                1274423531     7242769 User I/O*
    *PX qref latch                   2.3745E+11    49638018 Other*
    
    122 rows selected.

    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14237/waitevents.htm#i968375

  • What triggers the follow-up of health?

    I'm having a hard time to find out what is triggering the alert.

    vcenter alert.jpg

    First I thought that it was because one of my esxi has not shown his material status but I have corrected this error and still I get the alert.

    does anyone have an idea what might trigger the alert

    I found this in the log:

    Event ID 2527 - Configuration of the Directory Server Service account is not in a position

    Pourriez - me what the alert?

    I got the error because I installed a new vcenter but had no installed converter it gave an error

    When I installed the component issue has been resolved

    Thanks for you comments

  • What is the best way to approach writing a server that communicates with a wireless xbee on TCP?

    Hello all-

    I need to write a Labview program that communicates over TCP with a xbee: http://www.atmel.com/Images/doc42006.pdf

    Program LabView are going to order one of these: http://www.atmel.com/Images/doc8120.pdf

    The xbee will send packages "update" while the LabView program sends packets 'setup' and 'control' to the xbee.

    The LabView program will basically serve to control a robot by sending TCP packets.  The robot simply sends the updates to the LabView program on its current position.

    I searched through the following examples:

    1. how to set up the TCP header

    http://forums.NI.com/T5/LabVIEW/how-do-I-send-data-in-this-format-over-the-network/m-p/830019/highli...

    2. the data Client.vi and data Server.vi

    https://decibel.NI.com/content/docs/doc-9133/diff?secondVersionNumber=5

    3. how to analyze packets

    http://forums.NI.com/T5/LabVIEW/how-to-extract-individual-TCP-packet-values/m-p/1795840#M620097

    Is there an example that combines all of the above for example?

    I would appreciate if someone can point me to a sample program that communicates with another program labview with at least 2 different types of packages.

    How the rzusbstick does not appear on your system?  It is a resource of COM?  If so, you probably want to use the API of our VISA to write commands in the port.  These commands will be similar to what you are doing, although you will probably want to use integers instead of doubles.

    There are several examples of series in the Finder of LabVIEW example available in the Help menu in LabVIEW.

    Hope this helps,

  • What does the error message mean? TypeError: Error #1010: a term is undefined and has no properties.

    Please can you tell me what does the following error code and what should I do to fix it.

    TypeError: Error #1010: a term is undefined and has no properties.

    Thank you very much

    Hello

    • When you get this error?
    • How long you have been facing this problem?
    • What were the changes made before the problem occurred?

    Reply back with more information, helping us to better understand the issue.

    See also:

    http://support.Microsoft.com/kb/555375

  • What is the significance of the CURSOR WITH HOLD clause in a cursor declaration?

    What is the significance of the CURSOR WITH HOLD clause in a cursor declaration?

    A cursor that has been declared with the clause WITH HOLD, after the word CURSOR remains open after a COMMIT or a ROLLBACK. The following example shows how to use the following clause:

         EXEC SQL          DECLARE C1 CURSOR WITH HOLD          FOR SELECT ENAME FROM EMP          WHERE EMPNO BETWEEN 7600 AND 7700      END-EXEC.
    

    The cursor must not be declared for the UPDATE. The WITH HOLD clause is used in DB2 to override the default, which is to close all cursors on validation. Pro * COBOL provides this clause in order to facilitate the migration of applications to DB2 to Oracle. When MODE = ANSI, use Oracle DB2 default, but all host variables must be declared in a declare Section.

    Reference:

    Oracle documentation!
    http://docs.Oracle.com/CD/B10501_01/AppDev.920/a96109/pco03dbc.htm

  • urgent: Please tel me what is the procedure produection oaf page-move.

    Hi all

    I developed an OAF page.that page move into production.
    I already go to produection but its does not work very well.
    its throwing an error.

    Please tell me what is the follow-up of the steps when going to production.


    oracle.apps.fnd.framework.OAException: Application: DNF, Message name: FND_NO_REGION_DATA. Chips: BOUNDING is/wnsgs/oracle/apps/ap/agingbuckets/webui/AgingBucketsPG;.
    at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:529)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3719)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3452)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1005)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:508)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:429)
    to _html._OA._jspService(_OA.java:85) oa
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
    at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
    to _html._RF._jspService(_RF.java:102) oa
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:534)
    # # 0 in detail

    Exception:
    oracle.adf.mds.MetadataDefException: unable to find the component with an absolute reference = / wnsgs/oracle/apps/ap/agingbuckets/webui/AgingBucketsPG, XML Path = null. Please check that the reference is valid and the definition of the component on the file system or in the MDS repository.
    at oracle.adf.mds.internal.MetadataManagerBase.findElement(MetadataManagerBase.java:1350)
    at oracle.adf.mds.MElement.findElement(MElement.java:97)
    at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:503)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3719)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3452)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1005)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:508)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:429)
    to _html._OA._jspService(_OA.java:85) oa
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
    at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
    to _html._RF._jspService(_RF.java:102) oa
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:534)


    Exception:
    oracle.adf.mds.MetadataDefException: unable to find the component with an absolute reference = / wnsgs/oracle/apps/ap/agingbuckets/webui/AgingBucketsPG, XML Path = null. Please check that the reference is valid and the definition of the component on the file system or in the MDS repository.
    at oracle.adf.mds.internal.MetadataManagerBase.findElement(MetadataManagerBase.java:1350)
    at oracle.adf.mds.MElement.findElement(MElement.java:97)
    at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:503)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3719)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3452)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1005)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:508)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:429)
    to _html._OA._jspService(_OA.java:85) oa
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
    at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
    to _html._RF._jspService(_RF.java:102) oa
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:534)






    Thank you
    Sandrine.

    Published by: its urgent 8 February 2012 02:31

    Hello

    Drop the file (xml) definition under APPL_TOP
    and matching class Controller under JAVA_TOP

    Then use the below imoprt stmt

    Java applications oracle.jrad.tools.xml.importer.XMLImporter $APPL_TOP/cust/pos/12.0.0/mds/changeorder/webui/cuatpage1.xml - username username-password apps - dbconnection "(description = (address_list = (address = (protocol = TCP) (host =)(port=))) (connect_data = (sid =)))" rootdir - rootPackage - rootdir-rootPackage

  • What is the difference between associative arrays and nested tables?

    Hello
    What is the difference between associative arrays and nested tables?

    nested tables cannot be indexed by other than pls_integer and unlike nested tables table associative cananot be declared at the schema level.

    is there any other difference set apart from the diff above 2?

    user13710379 wrote:
    What is the difference between associative arrays and nested tables?

    Name-value pairs (associative) against a list of values (table standard/nested table).

    nested tables cannot be indexed by other than pls_integer

    They are not "indexed" the way in which an associative array is indexed. A standard table is referenced by the position of the cell in the table. This position is essentially the offset of the memory of the cell from the start address of the table.

    Can not solve a cell in an associative array directly via a memory offset index. You place a cell reference value it by his 'name' (a search in the linked list/hash table).

    The following example shows the difference between the pairs of name / value and a list of core values.

    SQL> declare
      2          --// associative arrays are NAME-VALUE pairs
      3          type TArr1 is table of varchar2(10) index by pls_integer;
      4          type TArr2 is table of varchar2(10) index by varchar2(10);
      5
      6          arr1    TArr1;
      7          arr2    TArr2;
      8  begin
      9          arr1(100) := '1st entry';
     10          arr1(1) := '2nd entry';
     11          arr1(5) := '3rd entry';
     12
     13          arr2('john') := 'New York';
     14          arr2('jane') := 'Paris';
     15          arr2('jack') := 'London';
     16
     17  end;
     18  /
    
    PL/SQL procedure successfully completed.
    
    SQL>
    SQL>
    SQL> declare
      2          --// standard arrays are lists
      3          type TArr3 is table of varchar2(10);
      4          type TArr4 is table of number;
      5
      6          arr3    TArr3;
      7          arr4    TArr4;
      8  begin
      9          arr3 := new TArr3( '1st entry', '2nd entry', '3rd entry' );
     10
     11          arr4 := new TArr4( 100, 1, 5 );
     12  end;
     13  /
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    
  • What is the parent resource ID in the Gantt resource chart?

    Hello everyone,

    Sorry if this question seems silly. I'm trying to create a Gantt chart of resource from a database table. I mentioned this page ' http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/bldapp_chrt.htm#BCEIJJID "for more information, but I see the following there:

    «The Gantt resource charts require a resource resource name, id of parent resource id, actual start date and the value of actual end date for each task.» To create a Gantt chart of the resource, create a Flash chart and provide a SQL query using the following syntax:

    SELECT the link, id_ressource, resource_name, resource_parent_id, actual_start_date, actual_end_date
    Of...
    "

    What is the parent resource ID? I can't find it. Is it also necessary? Can I create a Gantt chart without it?

    Thank you
    Mohamed

    Hi Mohamed,

    To answer your questions:

    Q: what is the parent resource ID?
    REP. : In your data, you can have certain tasks that are associated with another task i.e. parent child tasks to a task. This association must be held to a column in your database table, for example PARENT_ID. The value contained in the PARENT_ID column would be the ID of the parent task that is associated with the current task. For example, on this page - http://apex.oracle.com/pls/apex/f?p=36648:86 - you can see that the 2nd task, "Request for Update Wizard", is a child of the node parent 'Integration of graphics' and that association is based on the value stored in the column PARENT_ID of my sample table.

    Q: is it required? Can I create a Gantt chart without it?
    REP. : No, it is not required. However, the syntax of the query must include PARENT_ID, which you can of course set to NULL, as you can see in the following example:

    SELECT NULL LINK,
           RESOURCE_ID ID,
           TASK_NAME NAME,
           NULL PARENT_ID,
           START_DATE ACTUAL_START,
           END_DATE ACTUAL_END
    FROM   TASKS 
    

    Here is another example of query, where you can see that the PARENT_ID is set. In this case, we want to represent a hierarchical list of tasks

    SELECT 'f?p=4000:2:'||:APP_SESSION||':::P2_ID:'||ID LINK
           RESOURCE_ID ID,
           RESOURCE_NAME NAME,
           PARENT_ID PARENT_ID,
           START_DATE ACTUAL_START,
           END_DATE ACTUAL_END
    FROM   TASKS
    

    I hope this helps clarify things.

    Kind regards
    Hilary

  • What is the difference between the field blur and Gaussian blur?

    What is the difference between the field blur and Gaussian blur?

    The basic differences are that blur the line field the way a camera lens would be "fuzzy" your image (in fact, it puts a grey area), and the blur of the field has the tools to help to accentuate how the lens captures the reflective light. Gaussian Blur is more than a fuzzy set, or softening of all pixels.

    The following example illustrates the blur field making specular white areas and Gaussian blur, making all the pixels that are just as soft.

    I highly recommend to take a look at these links as well:

    (1) an overview of the new CS6 blur tools. VIDEO: Blur of the field is around 05:30 mark.

    2) a basic understanding of Gaussian blur

  • What is the value of creating a Custom UIComponnets like Comboboxes?

    Hello


    I have a query regarding the creation of custom components, I've seen a number of examples where sites
    leading by example how to create a custom Combobox.

    But can someone please let me know what would be the use of the creation of a custom as a Combobox component?

    Please share your ideas on this.

    Thanks in advance.

    Hi Kiran,

    Supplies of a Flex ComboBox control that you can use as part of a form that collects a customer address information. In the form, you can include a ComboBox control to let the user select the portion of the address of a list of the 50 States of United States State in an application that has multiple forms, where a user can enter an address, it would be tedious to create and initialize multiple ComboBox controls with the same information on each of the 50 States.

    Instead, you create a component MXML that contains a ComboBox with all 50 States defined in her breast. Then, whenever you need to add a State selector to your application, you use your custom MXML component. The following example shows a possible definition for a custom ComboBox control:



    http://www.Adobe.com/2006/mxml">
          
            AK
            AL
           
       

    The application main, or any other component MXML file, is reference to the StateComboBox component, as shown in the following example:



    "http://www.adobe.com/2006/MXML" xmlns:MyComp ="*" >


       

    Hope this will make things clear.

    If this post answers your question or assistance, please mark it as such.

    Thank you

    Jean Claude Chari

  • What is the diagram of the internal cache?

    What is the internal cache system ? What is the result of set as local schema in the following example?

    < internal-cache-system >
    * < local-scheme / > *.
    < / internal-cache-system >
    <distributed-scheme>
                <scheme-name>with-rw-bm</scheme-name>
                <service-name>unlimited-partitioned</service-name>
                <backing-map-scheme>
                    <read-write-backing-map-scheme>
                        <scheme-ref>base-rw-bm</scheme-ref>
                    </read-write-backing-map-scheme>
                </backing-map-scheme>
                <autostart>true</autostart>
            </distributed-scheme>
            <read-write-backing-map-scheme>
                <scheme-name>base-rw-bm</scheme-name>
                <class-name>ControllerBackingMap</class-name>
                <internal-cache-scheme>
                    <local-scheme/>
                </internal-cache-scheme>
            </read-write-backing-map-scheme>
    </distributed-scheme>
    Published by: qkc November 27, 2009 11:45

    I think that «internal-cache-system "refer to the use of a method non-vidages of persistence as background-schema store.» As the store continued as follows:

    * local-scheme
    * disk-system
    * external plan
    * paged-external-scheme
    * overflow-scheme
    * class-schema

    We will wait for the views of the other person.

  • What is the sequence to manage his photos on iPhone, iPad and Mac

    Ask for help to understand how to manage an iPhoto library.  What is the sequence for recording on a Mac, to eliminate duplicates on iPhone and iPad?

    Depends on undisclosed information

    You have posted the pictures to Mac forum but ask questions about iPhoto - who you? What operating system do you use?

    Assuming you have pictures where you posted what settings do you have for iCLoud in preferences Mac system, of Photos and your IOS devices preferences

    as duplicates there is no way for Apple to do except manually - there is third party including PowerPhotos packets, Duplicate Annihilator for Photos PhotoSweeper for the Photos help

    Regarding the management of the best way is to use iCloud photo library so any changes made on any device are made on all devices

    LN

Maybe you are looking for

  • export pictures from computer to phone

    are you able to export the photos of your comp. to your phone there are a few pictures that I want to use for the background on my phone

  • LV 2014: Frame actor stop Core.vi is damaged

    Hi, I tried to determine the cause of a problem, I saw where the frame actor stop Core.vi is damaged. The error message is in the picture as an attachment (actor_stop_error.png) as an image of the kernel Stop VI. I say "corrupt" because not only this

  • I can't update windows. I get error 0x8024D007

    I can't update windows.  Under XP.  He's trying to download updates but will not continue to the web page.  I get error 0x8024D007.  What can I do?

  • Impossible to connect incompatible devices. Please update all obsolete devices

    I recently got the trio kit with two DM100 and the wireless controller. Linksys Easy Link Advisor (LELA) does not install the controller, but it could be manually installed with most of the features.  (under windows xp 64) For the moment, I get the e

  • "Side by configuration errors side."

    My wife's cell phone will not work a lot of programs installed because of the 'side by side configuration mistakes'.  I tried all the "fixes" that I found on the web, but nothing has worked.  The laptop even totally ignors some intructions to adminis