Get Excactly day after 60 years of timeStamp data

Hi all
I want to find excact date after 60 years of timeStamp data how do I get the result?

For example
"Given TimeStamp = ' 1940 - 05 - 01 00:00:00.0"

Result =' 00:00:00:0 2000-05-10'
which is exactly the date after 60 years of data date .thank you

Please help me.

Hello
Use the following syntax

Select to_char (add_months (sysdate,(60*12)), "yyyy-mm-dd hh24:mi:ss") of the double;

Add_months is the arithmetic function of date. It accepts 2 parameters, 1st date, 2nd month u want add u date passed as parameter 1.

Concerning

UMI

Tags: Database

Similar Questions

  • calculate the day of the year using the date.

    Hi all
    Can calculate us the day of the year using the date form? Is this possible? Please help me thanks in advance
    Like this
    30/08/2009-30/08/2010 after calculation - 365


    Sarah

    Published by: SarahSarahSarah on August 30, 2009 12:49 AM

    Sarah.

    : ins1.noday must be a part of number!

    Create a function in forms like this:

    function get_nodays ( f_dtm_start in date,
                          f_dtm_end   in date ) return number is
    begin
    if
      f_dtm_start is null OR
      f_dtm_end is null
    then
      return ( null );
    end if;
    return ( trunc ( f_dtm_start ) - trunc ( f_dtm_end ) );
    exception when others
    then message ( sqlerrm || ' in function get_nodays occured.' );
    return ( null );
    end;
    

    Call this function in the when-validate-point triggers on ins1. INSPERIOD and: ins1.end love

    :ins1.noday := get_nodays ( :ins1.INSPERIOD, :ins1.end );
    

    It is redundant to have the: noday as a cause of part of database
    the value may by calculated every time using the values INSPERIOD and: end.

  • BlackBerry Smartphones after 5 different BBs, torch is my last BB Phone-cant you people get it right after 10 years?

    On the receiving side side with 8900 is much worse. Much slower acquisition of GPS. Whether it's hardware or soft is clear to me, but when I have no single "SOS" signal, displayed in the middle of London one must wonder what the «!» % $?

    Lates DM and sweet feature to the 18.12.2010 update.  PC sync blocks whenever I try to sync with outlook contacts. (was never a problem on the No-6 version)

    Multimedia wireless sync is a DISASTER. crashes whenever it tries to synchronize. (all soft has been updated/reloaded/cleaned/re-installed).

    ON BOARD, HOW HARD IS PEOPLE TO COPY MUSIC FILES ON A CONNECTED USB MEMORY CARD?

    I must say, I kept telling everyone that Apple is a company of lemmings, but RIM seems to be trying very hard to take this place

    There is no away the pure essence of positive statistics associated with recent data from the RIM. However, there is also little doubt in my mind that instances of material technology-oriented customers missteps to the RIM in the last say 5 years, far exceeds those of his most powerful rival, Apple. The implication is that while RIM will know the day deleterious financial or operational circumstances overnight, unless it addresses the issues inherent to the issues raised by the OP, at some point in the coming years, it will inevitably face showdown q in which these issues will be among the final test. And if it has not improved from here, he will lose this test.

  • split with day, month and year in a date

    Hi all

    I have this point of view

    with (id, dt) t (select 1, to_date('02/06/2010','MM/DD/YYYY') of all the double union)
    Select 2, to_date('11/29/2001','MM/DD/YYYY') of all the double union
    Select 3, to_date('02/06/2011','MM/DD/YYYY') of all the double union
    Select option 4, double to_date('10/10/2011','MM/DD/YYYY')
    )
    --
    -end of test data
    --
    SELECT id, dt
    floor (months_between(sysdate,dt)/12) years
    , floor (mod (months_between (sysdate, dt), 12)) months
    -The day is ambiguous because of the number of days in a different month
    -you could design your own algorithm to give the desired results, but it is a good approximation
    , floor (sysdate-(add_months (dt, floor (months_between (sysdate, dt))) as dys
    t
    /
    ID DT YEARS MONTHS DYS
    ---------- ----------- ---------- ---------- ----------
    1-6 FEBRUARY 2010 5 8 22
    2 29 NOVEMBER 2001 13 10 29
    3-6 FEBRUARY 2011 4 8 22
    4-10 OCTOBER 2011 4 0 18

    As a result, 26 years old, 26 months, 91 days.


    And subtract years, MONTHS and DYS as format

    erase years, from 1 to 12 months and the days of the 1 to 30 as

    91 days = 30 x 3 + 1 = > 1 day over 3 months

    26 months + 3 months = 29 months = > 24 months + 5 months = 2 years + 5 months

    and 26 years + 2 years = 28

    desire to result: 28 years, 5 months and 1 day.

    Is there a function that give me this result from the query above?

    Kind regards

    Gordan

    Hello Gordan,.

    I understand that you are the SUM of all the lines.

    Here are two ideas:

    -1 - using a date
    (a) SUM (TRUNC (sysdate) - dt)
    I would give you the total number of days.
    (b) adding the number of days to, for example, DATE ' 1900-01-01' would give another date...
    (c) simply subtract the years 1900 and it takes several years,
    subtract 1 from the month (1-12 from January to December) and you have the number of months
    subtract 1 from the day of the month (1-31) and you have the number of days.
    It is of course 'approximate' as the months do not have the same number of days...

    -2 - using only the number of days
    Maybe you want something else, for example: the total number of days divided by 365.25 for many years, the recall divided by 30 to get the number of months, the reminder being the number of days.

    (a) SUM (TRUNC (sysdate) - dt)

    I would give you the total number of days.

    (b) Division by 365.25 (le.25 is to take leap years into account, but you can choose for example "365")

    (c) number of reminder of days (total - years * 365.25): divided by 30 is the number of months

    (d) number reminder of days (total - years * 365.25 - months * 30): gives the number of days.

    The following two options with your test data (by chance, this gives the same result in this case)

    option 1:
    with (id, dt) t (select 1, to_date('02/06/2010','MM/DD/YYYY') of all the double union)
    Select 2, to_date('11/29/2001','MM/DD/YYYY') of all the double union
    Select 3, to_date('02/06/2011','MM/DD/YYYY') of all the double union
    Select option 4, double to_date('10/10/2011','MM/DD/YYYY')
    )
    target_date AS
    (SELECT DATE ' 1900-01-01' + SUM (TRUNC (sysdate) - t.dt) FROM t trgt)
    in_pieces AS
    (SELECT TO_NUMBER (TO_CHAR (td.trgt, 'YYYY')) - 1900 y
    , TO_NUMBER (TO_CHAR (td.trgt, 'MM')) - 1 m
    , TO_NUMBER (TO_CHAR (td.trgt, 'DD')) - 1 d
    Target_date TD
    )
    SELECT "result: ' |"
    TRIM (CASE WHEN ip.y = 0 THEN NULL
    WHEN ip.y = 1 THEN "1 year"
    Of OTHER TO_CHAR (ip.y) | "years".
    END |
    CASE WHEN ip.m = 0 THEN NULL
    WHEN ip.m = 1 THEN "1 month"
    Of OTHER TO_CHAR (ip.m) | 'months '.
    END |
    CASE WHEN ip.d = 0 THEN NULL
    WHEN ip.d = 1 THEN "1 day"
    Of OTHER TO_CHAR (ip.d) | 'days '.
    END
    )
    Of in_pieces ip
    ;
    result: 28 years, 4 months and 28 days

    option 2:

    with (id, dt) t (select 1, to_date('02/06/2010','MM/DD/YYYY') of all the double union)
    Select 2, to_date('11/29/2001','MM/DD/YYYY') of all the double union
    Select 3, to_date('02/06/2011','MM/DD/YYYY') of all the double union
    Select option 4, double to_date('10/10/2011','MM/DD/YYYY')
    )
    nb_days AS
    (SELECT SUM (TRUNC (sysdate) - t.dt) n t)
    , y AS
    (SELECT Nb.n, FLOOR (nb.n / 365.25) y nb_days n. b.)
    ym AS
    (SELECT y.n, y.y, FLOOR ((y.n-y.y * 365,25) / 30) FROM a)
    ymd AS
    (SELECT ym.y, ym.m, ym.n - ym.y * 365.25 - ym.m * ym FROM 30 d)
    SELECT "result: ' |"
    TRIM (CASE WHEN ymd.y = 0 THEN NULL
    WHEN ymd.y = 1 THEN "1 year"
    Of OTHER TO_CHAR (ymd.y) | "years".
    END |
    CASE WHEN ymd.m = 0 THEN NULL
    WHEN ymd.m = 1 THEN "1 month"
    Of OTHER TO_CHAR (ymd.m) | 'months '.
    END |
    CASE WHEN ymd.d = 0 THEN NULL
    WHEN ymd.d = 1 THEN "1 day"
    Of OTHER TO_CHAR (ymd.d) | 'days '.
    END
    )
    WAN
    ;
    result: 28 years, 4 months and 28 days

    Best regards

    Bruno Vroman.

  • Day after posting today on the Date/time field

    I have a field on a form such as date. I try to validate the entry date, must in fact be a date AND equal or after today, otherwise stay on the ground until it is corrected.

    Use FormCalc for this, it is easier to do date arithmetic in this language. Follow these steps on the exit event of the field (i.e. the way the user has already chosen a date). There is a function called (Date2Num) which will be the date that went and convert the number of days since a specific time (called at the time). So you would have to number of todays het can get the number of the date, the user chose, and do a simple test to see if today's number is higher than the current one. Something like this:

    get the number for the selected date

    var selectedNum = Date2Num ($.rawValue "YYYY-MM-DD")

    the Date() function returns the number of days in the time to the current date (date system)

    If (selectedNum<= date())="">

    his previous... Inform the user

    xfa.host.messageBox ("Please enter a date later than today's date!")

    Place the cursor in the Date selection field

    xfa.host.setFocus ("DateTimeField1")

    endif

    This assumes that your Date selection field is called DateTimeField1

    Paul

  • calculate the time in seconds, the day of the year and year

    I have a data file where they record three columns, the seconds elapsed since midnight, day of the year and the year.  I am creating a timestamp of LabVIEW from these three numbers.  Of seconds elapsed since midnight, I can create seconds, minutes and hours.  If I feed in a cluster of time with the day of the year and the year, the timestamp of output is 0.  Does not work.  Although an input of the day of the year element, the Date and time with seconds function apparently requires day for months and months to work.

    The only solution I can imagine at this stage is to calculate the month and the day of the day of the year, which would imply a choice of the month table and a check of the leap year.

    Smart solutions, I'm missing?

    DaveT

    Dave,

    I found a Julian Georgian so far.

  • After 4 years of use my computer without any problems at all, I get a message saying that my copy of Windows Vista is NOT activated.

    Original title: Vista Activation issue

    After 4 years of use my computer without any problems at all, I get a message saying that my copy of Windows Vista is NOT activated.

    Of course, he was and has been deleted now tile view! I made no changes to anything on the computer, so I did a little research

    and found that it could be a virus trying to get 'paid' for a new activation code. I did a complete reinstall of Vista to remove

    such viruses or errors and it still say my copy of Vista is not activated. When I try to follow the steps to activate Vista,

    I got nowhere! Everything I've read say s do the activation of the phone, but my computer doesn't give me the option of phone!

    It gives me only 3 options - "Buy a new online product key", "Enter a different product key", "Contact Hewllet Packard to help solve this problem."

    I called HP and of course my warranty has expired and they even want to talk to me about $100! I'm going crazy trying to figure this out! Help someone?

    Thanks for the reply, but I tried ALL the links you've posted over and over again until I've already posted my question here! The links you suggested sent me round in circles! They say all "choose the Activate by phone option" but I was not getting the phone option on my computer for some reason any.

    I have corrected the problem and HERE IS HOW - 1-800-Microsoft

    It was as simple as that! Now, if only they post this number somewhere here on the site it might save people hours or days of research! After calling the number, work your way through the automated system until you get a man! The guys at Microsoft that answered the phone was great and had activated me and up and running in minutes!

  • 2-3 days after the expiry of my warranty of one year, my computer turns off suddenly during use. I rebooted, but it stopped again.

    2-3 days after the expiry of my warranty of one year, my computer turns off suddenly during use.  I rebooted, but it stopped again.

    The model is that the computer runs for 15-30 minutes, then suddenly stops, the system reboots, runs for 2-3 minutes, stops, restarts, spans less than a minute, stops, restarts, stop after a few seconds, etc., and at that time there I give until the next day when I repeat the same cycle all over.    I have Windows Vista Home Premium 32 bit and it is a model of Dell Inspiron 518.  There is no error message but a beep at startup upward.  I ran Windows repair program 'Start' who did a restore without success.  The problem occurs even in Safe Mode.

    Does anyone have a guess as to what is the diagnosis?  Thank you.

    Hello

    Could be hardware or even heat and ventilation the related. Try using a small fan to increase ventilation. When a PC
    Remove ALL power and reinstall the memory, all cards and cables (do just not shake - remove and replace-)
    cables on both ends where possible).

    As it does in Mode safe so you probably need technical support in a real store of the computer - no Peeks/leeks at BestBuy or other large shopping areas. Very difficult to solve if it does not remain under tension.
    It remains under tension if you start from the disc of Vista?

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

    Look in the Event Viewer to see if something is reported on these reboots.

    http://www.computerperformance.co.UK/Vista/vista_event_viewer.htm

    -------------------------------------------------------------------------
    Also this, so you can see the probable bluescreens.

    Windows Vista restarts automatically if your computer encounters an error that requires him to plant.
    http://www.winvistatips.com/disable-automatic-restart-T84.html

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

    Here are a few ways to possibly fix the blue screen issue. If you could give the info from the blue screen that would be
    Help. Such as ITC and 4 others entered at the bottom left. And any other information such as STOP error
    codes and info like IRQL_NOT_LESS_OR_EQUAL or PAGE_FAULT_IN_NONPAGED_AREA and similar messages.

    As examples:

    BCCode: 116
    BCP1: 87BC9510
    BCP2: 8C013D80
    BCP3: 00000000
    BCP4: 00000002

    or in this format:

    Stop: 0 x 00000000 (oxoooooooo oxoooooooo oxoooooooo oxooooooooo)
    Tcpip.sys - address blocking 0 x 0 00000000 000000000 DateStamp 0 x 000000000

    It is an excellent tool for displaying the blue screen error information

    BlueScreenView scans all your minidump files created during 'blue screen of death' crashes, and displays the
    information on all accidents of a table - free
    http://www.NirSoft.NET/utils/blue_screen_view.html

    BlueScreens many are caused by old or damaged drivers, video drivers in particular, but there are other causes.

    You can follow these steps in the Safe Mode if necessary or the command prompt Vista DVD or Options of recovery if your
    system installed by the manufacturer.

    This tells you how to access the System Recovery Options and/or a Vista DVD
    http://windowshelp.Microsoft.com/Windows/en-us/help/326b756b-1601-435e-99D0-1585439470351033.mspx

    You can try a system restore to a point before the problem started when one exists.

    How to make a Vista system restore
    http://www.Vistax64.com/tutorials/76905-System-Restore-how.html

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

    Start - type this in the search box-> find COMMAND at the top and RIGHT CLICK – RUN AS ADMIN

    Enter this at the command prompt - sfc/scannow

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    The log can give you the answer if there is a corrupted driver. (Says not all possible driver problems).

    Also run CheckDisk, so we cannot exclude as much as possible of the corruption.
    How to run the check disk at startup in Vista
    http://www.Vistax64.com/tutorials/67612-check-disk-Chkdsk.html

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

    Often drivers up-to-date will help, usually video, sound, network card (NIC), WiFi, 3rd party keyboard and
    smile, as well as of other major device drivers.

    Look at the sites of the manufacturer for drivers - and the manufacturer of the device manually.
    http://pcsupport.about.com/od/driverssupport/HT/driverdlmfgr.htm

    How to install a device driver in Vista Device Manager
    http://www.Vistax64.com/tutorials/193584-Device-Manager-install-driver.html

    How to disable automatic driver Installation in Windows Vista - drivers
    http://www.AddictiveTips.com/Windows-Tips/how-to-disable-automatic-driver-installation-in-Windows-Vista/
    http://TechNet.Microsoft.com/en-us/library/cc730606 (WS.10) .aspx

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

    How to fix BlueScreen (STOP) errors that cause Windows Vista to shut down or restart unexpectedly
    http://support.Microsoft.com/kb/958233

    Troubleshooting, STOP error blue screen Vista
    http://www.chicagotech.NET/Vista/vistabluescreen.htm

    Understanding and decoding BSOD (blue screen of death) Messages
    http://www.Taranfx.com/blog/?p=692

    Windows - troubleshooting blue screen errors
    http://KB.wisc.edu/page.php?id=7033

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

    In some cases, it may be necessary.

    The Options or Vista recovery disk Startup Repair

    How to do a startup repair
    http://www.Vistax64.com/tutorials/91467-startup-repair.html

    This tells you how to access the System Recovery Options and/or a Vista DVD
    http://windowshelp.Microsoft.com/Windows/en-us/help/326b756b-1601-435e-99D0-1585439470351033.mspx

    I hope this helps.

    Rob - bicycle - Mark Twain said it is good.

  • Is it possible to get a trail of InDesign for 30 days after a subscription is exhausted?

    Is it possible to get a trail of InDesign for 30 days after a subscription is exhausted?

    There is no easy way on the same computer, but you can restart a try on a new (to cc) computer.

  • Why after a year Adobe CC that I pay for every month says that I have a trial even when I signed repeatedly in a day?

    Why after a year Adobe CC that I pay for every month says that I have a trial even when I signed repeatedly in a day?

    Hello

    Please check this Creative Cloud applications unexpectedly back in the test mode. CCM, CS6

    Let us know if this helps!

    Kind regards

    Sandrine

  • How to get the last day of the year

    Hi all

    Thanks in advance...

    How do I get the last day of the year that I'm passing date at run time.

    I can manage to get the first day of the year by
    SELECT TRUNC(SYSDATE,'YEAR') AS FDAY_YEAR
    of the double

    Thanks in advance

    Concerning
    Sachin
      1*  select ADD_MONTHS(trunc(sysdate,'yyyy'),12)-1 dd from dual
    SQL> /
    
    DD
    -----------
    31-DEC-2010
    
  • Firefox get low performance after runing 2 years as well

    Hi all
    in advence, I am happy to be one of the users of mozilla firefox.
    really, I think it's a stable browser.
    After two years using mozilla firefox Charleston, it became very very low return on
    Facebook and youtube and a few Web sites that use a lot of JS
    Please, I don't want to delete all the bookmarks or history of the internet
    waiting for answers

    concerning

    Firefox Reset records everything except some preferences and extensions.

  • touch screen does more than a few days after the release of Marshmallow.

    Hello.

    I ask for some advise the issue I'm having with my z3 compact.

    I was really happy, the phone never had problems, and I always have the software updates as soon as they are available.

    Now the phone has 3 days until the end of the warranty and a few days after that update Marshmallow, the screen stopped responding to touch, I couldn't turn off the phone or made a backup because the phone is locked.

    I was able to turn the phone off using the power button / stop and continuous volume upward, but after it restarted the problem with the screen.

    I decided to do the repair of software with sony's Companion (losing all my data), but even if the problem was not resolved.

    And had upward the retailer was bought the phone's NEW in New Zealand sold the company and the new owner doesn't care... sony told New Zealand that they can not do something, because it was in a parallel importer boght... but if the 1 year warranty is international they should not be able to help me?

    It's as if this update is programmed to damage the phones in order to decide to buy a new... do you really think that would happen? I'm already regretted that I bought a new sony action cam...

    Sorry for the long text.

    Any help is welcome

    See you soon.

    @samsun
    It could be a hardware problem unrelated to the updates then, and unfortunately we cannot help you here as users with maintenance problems. You will need to visit an authorized repair shop and get your phone diagnosed by a professional.

    PS: Guaranteed Sony is not international, it is local/regional.

  • Apps of cloud crash all the time to gel since the first day after a few minutes of use

    Apps of cloud crash all the time to gel since the first day after a few minutes of use.

    Without the help of Adobe I tried to use the AdobeCreativeCloudCleanerTool.

    In the user guide for AdobeCreativeCloudCleanerTool Adobe says contact us if there are errors in the log after you run this tool and guess what there are errors in the log file, but there is no way to contact the Support from Adobe and to get this other file for them. I've been a customer of creative cloud for months, and use that I got from her was ridiculously low all this lack of reliability. I really miss the days you installed only once a year and maybe fix something and then you were set for a year of cruise with your Adobe products. I am very disappointed, and unless Adobe can help I'll leave Adobe forever because there is no excuse to sell something that does not work and do not provide support at the same time. In a last-ditch attempt to get the resolution and since there is no other way for me to get this log file for Adobe I paste the contents of the log file of the AdobeCreativeCloudCleanerTool here in hope that some support and product engineer will do something about it. Here is the log:

    [Mon May 02 18:39:09 2016] -.

    [Mon May 02 18:39:09 2016] * = * = * = * = * = * = * = * = *: start Session: * = * = * = * = * = * = * = * = * = *.

    [Mon May 02 18:39:09 2016] -.

    [Mon May 02 18:39:09 2016] Win OS Version: 6.1

    [Mon May 02 18:39:09 2016] The cleaner tool version: 2.0.0.0

    [Mon May 02 18:39:09 2016] Source cleaning directory: C:\Program Files (x 86) \Common Files\Adobe\AdobeCreativeCloudCleanerTool

    [Mon May 02 18:39:09 2016] [AdobeProgramFiles]: C:\Program Files (x 86) \Adobe

    [Mon May 02 18:39:09 2016] [AdobeProgramFiles_x64]: C:\Program Files\Adobe

    [Mon May 02 18:39:09 2016] [AdobeCommon]: C:\Program Files (x 86) \Common Files\Adobe

    [Mon May 02 18:39:09 2016] [AdobeCommon_x64]: C:\Program Files\Common Files\Adobe

    [Mon May 02 18:39:09 2016] [UserRoamingAppData]: C:\Users\username\AppData\Roaming

    [Mon May 02 18:39:09 2016] [UserLocalAppData]: C:\Users\username\AppData\Local

    [Mon May 02 18:39:09 2016] [StartMenu]: C:\ProgramData\Microsoft\Windows\Start start\program

    [Mon May 02 18:39:09 2016] [System32Folder]: C:\Windows\system32

    [Mon May 02 18:39:09 2016] [SharedApplicationData]: C:\ProgramData

    [Mon May 02 18:39:12 2016] Language selected: English

    [Mon May 02 18:39:12 2016] View the Adobe end user license agreement

    License agreement

    By using software of Adobe Systems Incorporated or its subsidiaries ("Adobe"); You agree to the following terms and conditions. If you do not agree to these terms and conditions; do not use the software. The terms of an end-user license agreement accompanying a particular software file on the installation or downloading of the software take precedence over the below conditions.

    The export and re-export of software products are controlled by the United States Export Administration Regulations and such Adobe software may not be exported or re-exported to Cuba; The Iran; The Iraq; The Libya; The North Korea; Sudan; or Syria or any country to which the United States embargoes goods. In addition; Software Adobe may not be distributed to persons on the Table of Denial Orders; the list of entities; or the list of specially designated nationals.

    By downloading or using an Adobe software, you are certifying that you are not a national of Cuba; The Iran; The Iraq; The Libya; The North Korea; Sudan; or Syria or any country to which the United States embargoes goods and that you are not a person on the Table of Denial Orders; the list of entities; or the list of specially designated nationals.

    If the software is designed for use with an application (the "Host" Application) software product published by Adobe; Adobe grants you a non-exclusive license to use this software with the host Application only; provided you have a valid license from Adobe for the host Application. Except as described below; This software is allowed to you to the terms and conditions of the Adobe end user license agreement governing your use of the host Application.

    DISCLAIMER OF WARRANTY: YOU AGREE THAT ADOBE HAS MADE NO EXPRESS WARRANTY TO YOU REGARDING THE SOFTWARE AND THAT THE SOFTWARE IS SUPPLIED ' AS WHAT ' WITHOUT WARRANTY OF ANY KIND. ADOBE EXCLUDES ALL WARRANTIES RELATING TO THE SOFTWARE; EXPRESS OR IMPLIED; INCLUDING; WITHOUT LIMITATION; ANY WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE; MARKET VALUE; MERCHANTABILITY OR NON-VIOLATION OF THIRD PARTY RIGHTS. Some States or jurisdictions do not allow the exclusion of implied warranties; so the limitations above may not affect you.

    LIMIT OF LIABILITY: IN NO CASE ADOBE WILL BE HELD RESPONSIBLE TO YOU FOR ANY LOSS OF USE; BUSINESS INTERRUPTION; OR PHYSICAL DAMAGE; INDIRECT; SPECIAL; ACCESSORY; ACCESSORIES OR INDIRECT OF ANY KIND (INCLUDING LOST PROFITS) REGARDLESS OF THE FORM OF THE CONTRACT ACTION. TORT (INCLUDING NEGLIGENCE); PRODUCT OF STRICT LIABILITY OR OTHERWISE; EVEN IF ADOBE HAS BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. Some States or jurisdictions do not allow the exclusion or limitation of incidental or indirect damage; If limitation or exclusion above may not apply to you.

    [Mon May 02 18:39:12 2016] Please enter (y) for Yes or n for no.... > >

    [Mon May 02 18:39:14 2016] Choose one of the following options to clean:

    [Mon May 02 18:39:14 2016] 1 all

    [Mon May 02 18:39:14 2016] 2 adobe Flash Player 10.2

    [Mon May 02 18:39:14 2016] 3 creative Cloud 2015, 2014 creative cloud, cloud creative & CS6 products

    [Mon May 02 18:39:14 2016] 4 creative Cloud 2015 only

    [Mon May 02 18:39:14 2016] 5 creative Cloud 2014 only

    [Mon May 02 18:39:14 2016] 6 creative cloud only

    [Mon May 02 18:39:14 2016] 7 CS6 only

    [Mon May 02 18:39:14 2016] 8 CS5 - CS5.5 - CS6

    [Mon May 02 18:39:14 2016] 9 CS5 - CS5.5

    [Mon May 02 18:39:14 2016] 10. CS3, CS4

    [Mon May 02 18:39:14 2016] 11. Adobe Id credentials

    [Mon May 02 18:39:14 2016] 12. Fix file host

    [Mon May 02 18:39:14 2016] 13. Quit smoking

    [Mon May 02 18:39:14 2016] Choice: >

    [Mon May 02 18:39:55 2016] Selected by the user: all the

    [Mon May 02 18:39:55 2016] Open DB connection with path: C:\Program Files (x 86) \Common Files\Adobe\caps\pdb.db

    [Mon May 02 18:39:55 2016] DB does not exist in: C:\Program Files (x 86) \Common Files\Adobe\caps\Media_db.db

    [Mon May 02 18:39:55 2016] Open DB connection with path: C:\Program Files (x 86) \Common Files\Adobe\caps\caps.db

    [Mon May 02 18:39:55 2016] Open DB connection with path: C:\Program Files (x 86) \Common Files\Adobe\caps\hdpim.db

    [Mon May 02 18:39:55 2016] Orphaned session is deleted: adbeadbeadbeadbeadbeadbeadbeadb

    [Mon May 02 18:39:55 2016]...

    [Mon May 02 18:39:55 2016] Delete entries from the database of the installer

    [Mon May 02 18:39:55 2016] Update status tsInstalled to 0 for the removal of 2 for installation in the ribs_collection_paylaod for adbeadbeadbeadbeadbeadbeadbeadb of the session table

    [Mon May 02 18:39:55 2016] InstallState update

    [Mon May 02 18:39:55 2016] Delete the contents of the product: AdobeColorVideoProfilesCS CS4, Version: 2.0

    [Mon May 02 18:39:56 2016] ATTENTION: Payload with ID: {4F3CE025-D60B-4E6B-8D39-B04CD3769008} has no value InstallDir. Deleting the files from the patch (if applicable) cannot happen.

    [Mon May 02 18:39:56 2016] Removing the features: {4F3CE025-D60B-4E6B-8D39-B04CD3769008} the ribs_payload table and other tables of the payloads Associates

    [Mon May 02 18:39:56 2016] Delete the contents of the product: AdobeColorCommonSetRGB, Version: 2.0

    [Mon May 02 18:39:56 2016] ATTENTION: Payload with ID: {AB8E4534-C573-4CC9-BA6A-76DD14055510} has no value InstallDir. Deleting the files from the patch (if applicable) cannot happen.

    [Mon May 02 18:39:56 2016] Removing the features: {AB8E4534-C573-4CC9-BA6A-76DD14055510} the ribs_payload table and other tables of the payloads Associates

    [Sun May 02 18:39:56 2016] finished the update to installState

    [Mon May 02 18:39:56 2016] Deletion of session: adbeadbeadbeadbeadbeadbeadbeadb of ribs_collection and other associates of tables

    [Mon May 02 18:39:56 2016] Update schema pcd_meta to 2 caps if the previous version is less than 2

    [Mon May 02 18:39:56 2016]...

    [Mon May 02 18:39:56 2016] Entries in the database of the installer have been removed

    [Mon May 02 18:39:56 2016] Sessions folder will be deleted.

    [Mon May 02 18:39:56 2016] WARNING: Cannot delete the file, folder, try again

    [Mon May 02 18:39:56 2016] WARNING: Impossible again to delete the file, folder [error 2] the system cannot find the file specified: "C:\\Program Files (x 86) \\Common":

    [Mon May 02 18:39:56 2016] WARNING: Cannot delete the file, folder, try again

    [Mon May 02 18:39:56 2016] WARNING: Impossible again to delete the file, folder [error 2] the system cannot find the file specified: "C:\\Program Files (x 86) \\Common":

    [Mon May 02 18:39:56 2016]

    [Mon May 02 18:39:56 2016]

    [Mon May 02 18:39:56 2016] HD database session is valid

    [Mon May 02 18:39:56 2016] Inside the getHDProductIDsForWorkflow for CC15: 0

    [Mon May 02 18:39:56 2016] Inside the getProductListHD for CC15: 0

    [Mon May 02 18:39:56 2016] Returning from HD DB

    [Mon May 02 18:39:56 2016] List of products installed on this computer

    [Mon May 02 18:39:56 2016] List of products for cleaning:

    [Mon May 02 18:39:56 2016] Please enter the number of the option of the product to remove; Enter (q) to exit... > >

    [Mon May 02 18:40:28 2016] Are you sure you want to clean all the affected products and associated files?

    [Mon May 02 18:40:28 2016] Type (y) to confirm and delete or (n) to quit smoking... > >

    [Mon May 02 18:40:36 2016] Please wait for Adobe Creative Cloud tool cleaner finish...

    [Mon May 02 18:40:36 2016] Open DB connection with path: C:\Program Files (x 86) \Common Files\Adobe\OOBE\PDAPP\pim.db

    [Mon May 02 18:40:37 2016] AdobeApplicationManager (URIHandler) executable not found

    [Sun May 02 18:40:37 2016]: cleaning-up flying over inventories:

    [Mon May 02 18:40:37 2016] Inventory: ' AdobeApplicationManager-1, 0' Type: SelfUpdate, Action: NoDelete

    [Mon May 02 18:40:37 2016] Inventory: 'uninstallts', Type: SIDES, Action: delete

    [Mon May 02 18:40:37 2016] AAMref found: .aamref {AC76BA86-1033-FFFF-7760-0C0F074E4100}

    [Mon May 02 18:40:37 2016] At least one inventory Non-cotes: false, at least an AAMRef: True

    [Mon May 02 18:40:37 2016] Delete the contents of the product: CS5Installer, Version: CS5

    [Mon May 02 18:40:37 2016] Deleting file: C:\Program Files (x 86) \Common Files\Adobe\caps\pdb.db

    [Mon May 02 18:40:37 2016] There is no file: C:\Program Files (x 86) \Common Files\Adobe\caps\Media_db.db

    [Mon May 02 18:40:37 2016] WARNING: Cannot delete the file, folder, try again

    [Mon May 02 18:40:37 2016] WARNING: Impossible again to delete the file, folder [error 2] the system cannot find the specified file: u 'C:\\ProgramData\\Adobe\\SLStore_v1':

    [Mon May 02 18:40:37 2016] WARNING: Cannot delete the file, folder, try again

    [Mon May 02 18:40:37 2016] WARNING: Impossible again to delete the file, folder [error 2] the system cannot find the specified file: u 'C:\\ProgramData\\Adobe\\SLStore_v1':

    [Mon May 02 18:40:37 2016] SAVED LOG FILE: C:\Users\username\AppData\Local\Temp\Adobe Creative cloud cleanser Tool.log

    [Mon May 02 18:40:37 2016] Adobe Creative Cloud tool in cleaning completed successfully

    [Mon May 02 18:40:37 2016]

    [Mon May 02 18:40:37 2016] *-*-*-*-*-*-: START:-SUMMARY OF THE avertissements-*-*-*-*-*-*

    [Mon May 02 18:39:55 2016] DB does not exist in: C:\Program Files (x 86) \Common Files\Adobe\caps\Media_db.db

    [Mon May 02 18:39:56 2016] WARNING: Cannot delete the file, folder, try again

    [Mon May 02 18:39:56 2016] WARNING: Impossible again to delete the file, folder [error 2] the system cannot find the file specified: "C:\\Program Files (x 86) \\Common":

    [Mon May 02 18:39:56 2016] WARNING: Cannot delete the file, folder, try again

    [Mon May 02 18:39:56 2016] WARNING: Impossible again to delete the file, folder [error 2] the system cannot find the file specified: "C:\\Program Files (x 86) \\Common":

    [Mon May 02 18:40:37 2016] WARNING: Cannot delete the file, folder, try again

    [Mon May 02 18:40:37 2016] WARNING: Impossible again to delete the file, folder [error 2] the system cannot find the specified file: u 'C:\\ProgramData\\Adobe\\SLStore_v1':

    [Mon May 02 18:40:37 2016] WARNING: Cannot delete the file, folder, try again

    [Mon May 02 18:40:37 2016] WARNING: Impossible again to delete the file, folder [error 2] the system cannot find the specified file: u 'C:\\ProgramData\\Adobe\\SLStore_v1':

    [Mon May 02 18:40:37 2016] *-*-*-*-*-*-: END:-SUMMARY OF THE avertissements-*-*-*-*-*-*

    [Mon May 02 18:40:37 2016] -.

    [Mon May 02 18:40:37 2016] * = * = * = * = * = * = * = * = *: end of Session: * = * = * = * = * = * = * = * = * = * = *.

    [Mon May 02 18:40:37 2016] -.

    Hi Ludovic % 20Vignals,.

    Thanks for sharing of log files, we would like to know the name of the Adobe software that appear in the menu "programs and features" after using the cleaning tool.

    We would also like to know the version of the creative cloud that you try to install.

    This is the tool that you can use to uninstall Cloud Creative: CC help | Uninstall the creative desktop application Cloud.

    You get a message when creative cloud crashes? If so, please let us know of the possible screenshot.

    Waiting for your response.

    Thank you

  • MacBook Pro 9.2 breaks down after 2 years

    Hello

    I bought a Macbook Pro (13-inch, mid 2012) 9.2 on June 6, 2014. After almost two years, he froze one night. After restart, it showed a gray/white screen with an exclamation mark in a folder. After a visit to the store where I bought and a diagnosis of HARD drive, it appeared that the HARD drive was broken. So far so good.

    I replaced the HARD drive, but the problem persisted.

    That's how the problem was revealed: I managed to launch several times and it worked like a charm for several hours, then again: freeze (spinning beachball), the mouse will not move, the system is totally insensitive.

    Strange thing: the Apple Hardware Test showed no problems.

    Another strange thing: once, I was streaming music on the internet. He continued to play and he always did it for 30 minutes. Then, I held the power button for the shutdown of the system.

    After reboot, I had a gray screen with question mark or a sign of ban folder or the symbol of apple with a spinning wheel. After leaving "rest" for a few hours, it starts again. I performed this ritual for several days. So far: the laptop computer is unbootable. It seems it's broken for good.

    The real question is: If there is a hardware problem (motherboard or memory card), how was the system able to work several times for long hours. It may not be a software problem. With the new HARD drive, I reinstalled the system.

    I googled HARD drive cable might be vice and that this could be the source of the problem. As something bad connection. But how can you be sure? Everyone knows about similar problems with his Macbook pro 9.2 (13 inch, mid-2012)?

    I am very disappointed. It's the second Macbook Pro abandons him on me. The first one (15-inch Macbook Pro 4.1) broke after four years due to a faulty graphics unit.

    Thank you for your suggestions.

    To test a possible cable fault, remove the HARD drive, plug it into the MBP via USB and start the MBP with the OPTION key down.  The HARD drive icon should appear, click on it.  If it works normally, then that is an indicator that the SATA cable is defective or has a bad connection.

    Ciao.

Maybe you are looking for