Time is not saving with Date

I have a created a report and form. Now I am trying to populate one of the columns with a date and time. The column will store the date. However, it will not save the time. I am fairly certain that my process to set the field is correct as I am able to save the date/time in a string and the time stores correct.
The database column is of type Date.
The column is setup as follows:
Display As: Date Picker (YYYY-MM-DD HH24:MI)
Source Type: Database Column
Edit Mask: YYYY-MM-DD HH:MIPM
Any help would be appreciated.
Thanks,

OK. I was able to figure it out. I had to fully qualify the date format when making the assignment. i.e. TO_CHAR(v_today, 'YYYY-MM-DD HH24:MI').
Why is this?
Thanks,
Below is a subset of the code that I am using to assign the date field. My code is in the Process Point: On Submit - Before Computations and Validations
DECLARE
v_today estimate.row_updated%type;
BEGIN
select sysdate
into v_today
from dual;
-- Saves current date without time.
:P2_ROW_CREATED := v_today;
-- This works. Saves the date and the time.
:P2_ROW_UPDATED := TO_CHAR(v_today, 'YYYY-MM-DD HH24:MI');
END ;

Similar Messages

  • Keynote document saved in icloud not updating with data from Numbers? is icloud the problem

    keynote document saved in icloud not updating with data from Numbers? is icloud the problem.
    If both files are held locally on the computer it looks like there is no problem however if you try and do it though icloud (ie your docs are saved on icloud) you dont get the "source" oprion besides the graph etc. Is this a but or a broken function due to the new implementation of icloud.

    Hi sebnor31,
    This is Visual C# forum, but your question seems not related to Visual C# language itself. It most likely related to the bluetooth message transaction protocal or with the device itself.
    I'll move your question to [where is this forum for...] forum where the morderator may direct you to the correct forum.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Bulk save as psd file not saved with Maximize Compatibility selected in preference

    I want to do a "bulk save as" for psd files that were not saved with Maximize File Compatibility selected in Preferences. I'm trying to import those files into LR5 but I get an error message. Or is there a work around for resolving this issue? I have both PS CS6 and PS CC. Also Bridge for both. I've just subscribed to LR5.

    LR does not support Layers, PSD files may have layers so you may have a problem using LR to do what you want to do.
    Set your Photoshop Preferences to always save with Max Compatibility.
    Record a save action one step menu File>save.
    Then use Adobe Bridge menu Edit>Find to find all your PSD files.
    Then select all and use menu Tools>Photoshop>Batch  and if your lucky and don't catch an Adobe Bug Photoshop will start and the Batch dialog will open,  You can the set the Save Action Set and the Save Action  all the PSD selected in the Bridge should open and saved.
    I cancelled the search short here the search for all psd files could take a very long time and did not run the batch.
    You will have a better chance not catching an Adobe bug if Photoshop is not up and running when you use the here.  Bridge may try to start a different version of Photoshop then the one running when you use menu tools>Photoshop>Batch.  Bridge CC was updated to start CC 2014 there is no bridge CC 2014.
    This site scale image poorly you can scale them if you view them in a new tab or window.

  • Problem: EO based VO not saving VO data in database

    Hi Experts!
    For a shocker and contradiction to the concepts and theory of OAF, something strange and wierd i came across. I got an EO based VO, which got some data (i've confirmed this by debugging) is not saving the data to database on "apply". By apply i mean .. getTransaction().commit();
    This is something which violates completely with the theories, so i've no clues about it. Can anyone suggest something !!
    I mean, how to trace the functionality and resolve the issue?
    Regards
    Ari :)

    Hi sushant!
    Yeah sure!!
    Here it follows: It is an AM method..
    /**Custom public method to define default cost
    * allocation based on the pre-defined formula
    * for cost allocation keeping parity with the
    * corresponding delivery freight details
    public void DefineDefaultCosts(String StrOrgId,String StrTransportationId) {
    OAViewObject vo = (OAViewObject)getAmritTransportationCreateVO1()
    ,vo1 = (OAViewObject)getAmritTransportationPaymentsVO1()
    ,vo2 = (OAViewObject)getAmritTransportDeliveryLinesVO1();
    OADBTransaction txn = getOADBTransaction();
    ArrayList debugMessage = new ArrayList();
    HashMap PartySet = new HashMap();
    Boolean PartyEntryValid = null;
    String TransportationNum = (String)vo.getCurrentRow().getAttribute("TransportationNum")
    ,CurrencyCode = (String)vo.getCurrentRow().getAttribute("CurrencyCode")
    ,EventType = "TRNSP DELIVERED",PeriodName = null;
    Date AccountingDate = (Date)vo.getCurrentRow().getAttribute("DateDelivered");
    Number Amount = (Number)vo.getCurrentRow().getAttribute("Amount")
    ,Rate = (Number)vo.getCurrentRow().getAttribute("Rate")
    ,TripId = (Number)vo.getCurrentRow().getAttribute("TripId")
    ,OrgId = null,TransportationId = null,CodeCombinationId = new Number(576773);
    int DlvryRowCount = vo2.getRowCount(),CostDistRowCount = vo1.getRowCount();
    if (CostDistRowCount == 0) {
    try {
    OrgId = new Number(StrOrgId);
    TransportationId = new Number(StrTransportationId);
    }catch (Exception e) {}
    //debugMessage.add(new OAException("Inherited Values: "TransportationId" "TransportationNum" "CurrencyCode" "EventType" "AccountingDate" "Amount" "Rate" "+OrgId));
    try {
    Connection Conn = txn.getJdbcConnection();
    String v$Script = "Select gp.period_name period\n" +
    "From gl_periods gp\n" +
    "Where upper(gp.period_set_name) = 'AMRIT_CALENDAR'\n" +
    "And gp.adjustment_period_flag = 'N'\n" +
    "And trunc(:1) between nvl(gp.start_date,trunc(sysdate))\n" +
    " and nvl(gp.end_date,trunc(sysdate))\n";
    PreparedStatement PreExecuteQuery = Conn.prepareStatement(v$Script);
    PreExecuteQuery.setDate(1,new java.sql.Date(AccountingDate.dateValue().getTime()));
    for (ResultSet QryOutputRS = PreExecuteQuery.executeQuery();QryOutputRS.next();) {
    PeriodName = QryOutputRS.getString("period");
    v$Script = "Select attl.vendor_id vendorid\n" +
    " ,asp.vendor_name vendor \n" +
    "From apps.amrit_transport_trips att\n" +
    " ,apps.amrit_transport_trip_lines attl\n" +
    " ,ap.ap_suppliers asp\n" +
    "Where att.org_id = :1\n" +
    "And att.trip_id = :2\n" +
    "And att.enabled_flag = 'Y'\n" +
    "And trunc(sysdate) between nvl(att.start_date_active,trunc(sysdate))\n" +
    " and nvl(att.end_date_active,trunc(sysdate))\n" +
    "And attl.org_id = att.org_id\n" +
    "And attl.trip_id = att.trip_id\n" +
    "And attl.enabled_flag = 'Y'\n" +
    "And trunc(sysdate) between nvl(attl.start_date_active,trunc(sysdate))\n" +
    " and nvl(attl.end_date_active,trunc(sysdate))\n" +
    "And attl.location_type = 'HZ'\n" +
    "And asp.enabled_flag = 'Y'\n" +
    "And asp.vendor_id = attl.vendor_id\n" +
    "And trunc(sysdate) between nvl(asp.start_date_active,trunc(sysdate))\n" +
    " and nvl(asp.end_date_active,trunc(sysdate))\n";
    PreExecuteQuery = Conn.prepareStatement(v$Script);
    PreExecuteQuery.setInt(1,Integer.parseInt(OrgId.toString()));
    PreExecuteQuery.setInt(2,Integer.parseInt(TripId.toString()));
    for (ResultSet QryOutputRS = PreExecuteQuery.executeQuery();QryOutputRS.next();) {
    PartySet.put(QryOutputRS.getString("vendorid"),QryOutputRS.getString("vendor"));
    }catch (Exception e) {}
    /* vo2.first();
    for (int i = 1;i <= DlvryRowCount;i++) {
    if (vo2.getCurrentRow().getAttribute("CancelFlag").equals("N")) {
    PartyEntryValid = PartySet.add((Number)vo2.getCurrentRow().getAttribute("VendorId"));
    //debugMessage.add(new OAException("Set VendorId: "+vo2.getCurrentRow().getAttribute("VendorId")));
    vo2.next();
    //debugMessage.add(new OAException("PartySet: "+PartySet.entrySet()));
    for (Iterator iter = PartySet.entrySet().iterator();iter.hasNext();) {
    Map.Entry entry = (Map.Entry)iter.next();
    String VendorName = (String)entry.getValue();
    Number Cost = null;
    int PartyId = Integer.parseInt(entry.getKey().toString());
    float Qty = 0;
    try {
    vo2.first();
    for (int i = 1;i <= DlvryRowCount;i++) {
    //debugMessage.add(new OAException("VO VendorId: "vo2.getCurrentRow().getAttribute("VendorId")" Cancelled: "+vo2.getCurrentRow().getAttribute("CancelFlag")));
    if (vo2.getCurrentRow().getAttribute("CancelFlag").equals("N")) {
    int VendorId = Integer.parseInt(vo2.getCurrentRow().getAttribute("VendorId").toString());
    float Quantity = Integer.parseInt(vo2.getCurrentRow().getAttribute("Quantity").toString());
    if (PartyId == VendorId) {
    Qty+= Quantity;
    //debugMessage.add(new OAException("Quantities: "Quantity" "+Qty));
    vo2.next();
    Qty*= Float.parseFloat(Rate.toString());
    Float totalQty = new Float(Qty);
    Cost = new Number(totalQty);
    }catch (Exception e) {}
    //debugMessage.add(new OAException("PartyId: "PartyId" VendorName: "VendorName" Cost: "Cost" EntryKey: "entry.getKey()" EntryValue: "+entry.getValue()));
    Row row = vo1.createRow();
    row.setAttribute("OrgId",OrgId);
    row.setAttribute("TransportationId",TransportationId);
    row.setAttribute("TransportationNum",TransportationNum);
    row.setAttribute("EventType",EventType);
    row.setAttribute("AccountingDate",AccountingDate);
    row.setAttribute("PeriodName",PeriodName);
    row.setAttribute("CodeCombinationId",CodeCombinationId);
    row.setAttribute("PartyId",PartyId);
    row.setAttribute("VendorName",VendorName);
    row.setAttribute("CurrencyCode",CurrencyCode);
    row.setAttribute("Amount",Cost);
    row.setAttribute("TransportationAmount",Amount);
    vo1.last();
    vo1.next();
    vo1.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    vo1.first();
    vo2.first();
    OAException.raiseBundledOAException(debugMessage);
    Regards
    Ari :)

  • Why cannot up-to-date licenses be managed in VLM at the same time as not up-to-date licenses?

    Why cannot up-to-date licenses be managed in VLM at the same time as not up-to-date licenses?
    NI says that existing DIAdem licenses (not up-to-date, but legal) on VLM cannot be merged with new (up-to-date) LabVIEW licenses will not work on VLM. Why cannot two separate license files be installed? Or, what about the alternative of running two VLM installations on one server by using different ports? Do I really have to have two VLM installations, each on a different server??

    Please reference this discussion forum for more information.  Thanks!
    Matt S
    National Instruments
    Applications Engineer

  • Image Adjustments Not Saved with DNG?

    It appears that the adjustments (i.e. all of the work you do to "develop" your pictures) are not saved with the image file. They appear to be saved in the LR Library. So if anything happens to your library, your developing work is gone. I thought my adjustments were saved with the DNG, but this does not appear to be the case.
    So, to be sure that my work is saved with the image, it appears that the processed files must be saved to a different format like JPG, TIFF, or PSD. With JPG quality is lost, and your ability to edit is severely compromised. With PSD and TIFF, you have another copy of extremely large files to deal with.
    Is my understanding correct?
    What are your suggestions to deal with this?
    Thank you.

    Geoff and John,
    Thank you very much.
    You confirm the critical point that your work is saved in the Library, and the Library must be closely supervised and backed up.
    Beside my on-site backups, I set up a Stuffit schedule to back up a daily version of my library. My current library is 57.6MB and Stuffit compresses it to 8.7MB and automatically FTPs it to my web site for archiving.
    I found that my 2GB file of previews is unnecessary, since my computer creates new previews almost as quickly as it reads the preview file, at least on a folder basis. So, I removed my preview files, and I have them saved for only one day in prefrences.
    For my DNGs, beside my on-site backups, I create a DNG with the RAW (NEF) file embedded and back them up on my web site. Then I create DNGs with Adobe DNG converter, without embedded RAWs (LR embeds the RAWs)to use for my working files.
    One of the reasons I decided to use DNGs is to avoid having separate XMP files. However, it sounds like you can export the XMP to the DNG without creating separate XMPs. I'll look in to that. I assume that exporting the XMPs to the DNGs will allow me to open them directly in CS2 (not by exporting from LR) or other programs with my adjustments intact. This would solve the problem of losing adjustments if the Library becomes dysfunctional.
    Thanks again.
    Eric

  • Preview "this layered Photoshop file was not saved with a composite image" error message?

    hi, i get this message:
    in preview, when i try to open a .psd file by double-clicking it:
    "this layered Photoshop file was not saved with a composite image"
    is there any program that will open this file, that came with my new iMac?
    OS 10.9.5
    thanks!
    ps. when i clicked all through help on my Mac, it would not tell me what i needed to know.
    So, is this forum the best way to find actual useful info?

    Thank you Chris,for the correct  answer - Best, Bob

  • Form created with LiveCycle is not saving the data of a fillable form.

    I had posted this in another forum, which got moved over to this forum.  Forgive the double post, I wasn't sure if it was assumed that it was resolved.
    This document:  http://www.southark.edu/employment/application-v5.pdf  was created a couple of years ago in Acrobat and LiveCycle.
    I wanted visitors to have the ability to fill in the document and save their data.
    So, I opened it in Adobe Acrobat X and saved it using the Save As > Reader Extended PDF > Enable Additional Features.
    However, after filling in the document and saving, no data is saved.
    I was informed that since it was an XFA form created in LiveCycle Designer, that they have special considerations that don't apply to forms created in Acrobat.
    Still needing help in giving my visitors the ability to save their form data.
    Thanks,
    Charley

    Thanks so much for your reply.
    Employing your solution our website visitors can save the data using Acrobat Pro.
    They cannot save their data using Reader (most of them don't have Acrobat Pro).  See image below.
    Any other thoughts?
    Thanks very much for your time and interest. 
    Charley

  • Can Not Remove "with" Data from Calendar Event Details

    I currently have a Palm Tungsten|E2. For a short time I used to sync it with my work computer; this was before they replaced the computer (lease was up) with a new one where it was locked down and I could not reinstall the Palm desktop. Since then I have been syncing it with my home computer that runs MS Vista. Just recently I have noticed that when I create new Calendar events on my Palm, they all get a new "With:" data line (and a user from my old job) after sync'ing with my home computer. Selecting this "With:" entry brings me to a screen that allows me to select from a list of people I may "Done", "Reply", or "Reply All" to; although selecting either reply only causes a fatal error that requires a soft reset (button on back of machine). Looking at the event through the desktop software shows no data point so that it may be cleaned.
    I would like to know why my desktop software is adding this person to a "With:" data point to all new entires I create on the Palm hardware, how do I turn it off and keep it from doing it in the future.
    Steve
    Post relates to: Tungsten E2
    This question was solved.
    View Solution.

    Are you sync'ing the new device to the same username in Palm Desktop as an older device?
    If you are, this will cause problems on the new device. When you sync the device, it saves the device settings, 3rd party apps, preferences, etc. in the backup folder in the username folder on the PC. When you sync the new device it copies the contents of the backup folder for the old device to the new device. This will cause corruption in the settings for the new device thus causing erratic behavior of the new device.
    The best way to preserve your data is to export the data in each category in Palm Desktop to a seperate folder on your PC.
    Create a new folder on your PC somewhere that is convenient. Name it something like Palm Desktop Data. Click on the link below and follow the instructions on that page for the export procedure.
    http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=28734
    Make sure you select all for the range in the export window.
    With the data saved in the folder you created, make a copy of that folder and save to a flash drive, cd-rw or external hard drive.
    Anytime you make a change in Palm Desktop, export the data that was changed to that folder and save again to the external media.
    With this process you can always import the data back into Palm Desktop anytime you have a problem with the data in Palm Desktop or if your computer/hard drive/device crashes.
    Looks like you may need to hard reset your device and rename your backup folder. Go to http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=887 and follow the directions to do a hard reset. Next before you hotsync your data back over you will need to rename your backup folder, to do that go here;
    XP
    C:\program files\palm or palm one\[hotsync username]\ and rename your backup
    folder to backup.old
    Vista
    Start-->documents\Palm OS Desktop\[hotsync username]\ and rename your backup
    folder to backup.old
    Then hotsync to your current hotsync name and all your contacts, calendar,
    tasks, and memos will come back over.
    Show file extensions for XP or Vista
    XP
    If you can not view file extensions on your PC I would like you to open a
    folder go to Tools-->Folder Options--> View (tab) and under show hidden
    files and folders uncheck hide file extensions for known file types.
    Vista
    Open control Panel go to Folder Options--> View (tab) and under show hidden
    files and folders uncheck hide file extensions for known file types.
    Post relates to: Palm i705

  • Time Machine not working with Verbatim USB2TB External HDD

    MacBook Pro
    15-inch, Mid 2010
    8GB Ram
    OS 10.8.2
    No updates available ATT.
    Problem with Time Machine using Verbatim USB2TB (Verbatim # 96865) external hard drive in regular and safe boot. According to the Verbatim website, this external drive is compatiable with MAC OS 10+ and can be formatted to the specific Mac filesystems.
    The following list of events below happen irregardless of running in regular or safe boot, so I noted my last attempt at a backup while in Safe Boot.
    Before this last attempt, I successfully zeroed out the data on the drive in regular boot.
    As you will see below, the drive works just fine until Time Machine gets it grimy digits on it and kills it like South Park kills Kenny.
    ---- Begin ----
    Started in Safe Boot
    Connected and powered on the external drive.
    Erased the drive and formatted it to Extended Journaled. Partition was successfully created.
    Verifying partition map for “SAMSUNG HD203WI Media”
    Checking prerequisites
    Checking the partition list
    Checking for an EFI system partition
    Checking the EFI system partition’s size
    Checking the EFI system partition’s file system
    Checking all HFS data partition loader spaces
    Checking Core Storage Physical Volume partitions
    The partition map appears to be OK
    Verifying volume “Big2TB”
    Checking file systemChecking Journaled HFS Plus volume.
    Checking extents overflow file.
    Checking catalog file.
    Checking multi-linked files.
    Checking catalog hierarchy.
    Checking extended attributes file.
    Checking volume bitmap.
    Checking volume information.
    The volume Big2TB appears to be OK.
    Successfully copied over 2.8 GB of random data. (Screenshot)
    Deleted the data and then emptied the Trash.
    Started Time Machine backup.
    Time Machine Created a backup folder on the external drive.
    Time Machine started to transfer data then hung at 452.1 MB of 257.66 GB.
    Backup failed.
    --- Console ---
    1/13/13 11:57:59.988 AM com.apple.backupd[1558]: Starting manual backup
    1/13/13 11:58:04.581 AM com.apple.backupd[1558]: User continued after being warned of changed destination volume identity
    1/13/13 11:58:04.623 AM com.apple.backupd[1558]: Backing up to: /Volumes/Big2TB/Backups.backupdb
    1/13/13 11:58:04.628 AM com.apple.backupd[1558]: Ownership is disabled on the backup destination volume.  Enabling.
    1/13/13 11:58:05.156 AM mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    1/13/13 11:58:06.336 AM com.apple.backupd[1558]: Forcing deep traversal on source: "MainMan" (mount: '/' fsUUID: 8A3A5598-7C8B-3753-ABA8-D980E60299A3 eventDBUUID: 23107488-4BC9-49FB-818D-226AE695DE06)
    1/13/13 11:58:23.346 AM com.apple.backupd[1558]: Backup content size: 246.45 GB excluded items size: 12.21 GB for volume MainMan
    1/13/13 11:58:23.368 AM com.apple.backupd[1558]: Found 910640 files (234.23 GB) needing backup
    1/13/13 11:58:23.370 AM com.apple.backupd[1558]: 281.08 GB required (including padding), 2 TB available
    1/13/13 11:58:23.388 AM com.apple.backupd[1558]: Waiting for index to be ready (100)
    1/13/13 11:59:23.443 AM com.apple.backupd[1558]: Waiting for index to be ready (100)
    1/13/13 12:00:02.530 PM WindowServer[114]: CGXGetWindowInfo: Invalid window 1045
    1/13/13 12:00:02.530 PM Dock[259]: CGSBindWindow: Unable to obtain window information
    1/13/13 12:00:02.531 PM Dock[259]: CGSGetWindowTags: Invalid window 0x415
    1/13/13 12:00:02.531 PM Dock[259]: find_shared_window: WID 1044
    1/13/13 12:00:02.531 PM Dock[259]: CGSGetWindowTags: Invalid window 0x414
    1/13/13 12:00:02.532 PM Dock[259]: find_shared_window: WID 1043
    1/13/13 12:00:02.532 PM Dock[259]: CGSGetWindowTags: Invalid window 0x413
    1/13/13 12:00:04.481 PM WindowServer[114]: CGXGetWindowType: Invalid window 1066
    1/13/13 12:00:04.481 PM Dock[259]: find_shared_window: Invalid depth WindowID 0x42a
    1/13/13 12:00:04.481 PM Dock[259]: CGSGetWindowTags: Invalid window 0x42a
    1/13/13 12:00:04.482 PM Dock[259]: find_shared_window: WID 1065
    1/13/13 12:00:04.482 PM Dock[259]: CGSGetWindowTags: Invalid window 0x429
    1/13/13 12:00:04.482 PM Dock[259]: find_shared_window: WID 1064
    1/13/13 12:00:04.482 PM Dock[259]: CGSGetWindowTags: Invalid window 0x428
    1/13/13 12:00:23.497 PM com.apple.backupd[1558]: Waiting for index to be ready (100)
    1/13/13 12:01:23.549 PM com.apple.backupd[1558]: Waiting for index to be ready (100)
    1/13/13 12:01:44.830 PM com.apple.launchd[1]: (com.apple.xpcd.F5010000-0000-0000-0000-000000000000[1541]) Exited: Killed: 9
    1/13/13 12:01:44.000 PM kernel[0]: memorystatus_thread: idle exiting pid 1541 [xpcd]
    1/13/13 12:01:49.000 PM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    1/13/13 12:01:49.000 PM kernel[0]: macx_swapon SUCCESS
    1/13/13 12:02:15.000 PM kernel[0]: USBF:          7419.448          AppleUSBEHCI[0xffffff8008e26000]::Found a transaction past the completion deadline on bus 0xfd, timing out! (Addr: 5, EP: 2)
    1/13/13 12:02:21.000 PM kernel[0]: USBF:          7425.451          AppleUSBEHCI[0xffffff8008e26000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 5, EP: 0)
    1/13/13 12:02:27.000 PM kernel[0]: USBF:          7431.454          AppleUSBEHCI[0xffffff8008e26000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 5, EP: 0)
    1/13/13 12:02:58.000 PM kernel[0]: USBF:          7462.473          AppleUSBEHCI[0xffffff8008e26000]::Found a transaction past the completion deadline on bus 0xfd, timing out! (Addr: 5, EP: 2)
    1/13/13 12:05:37.068 PM WindowServer[114]: CGXGetWindowInfo: Invalid window 1196
    1/13/13 12:05:37.068 PM Dock[259]: CGSBindWindow: Unable to obtain window information
    1/13/13 12:05:37.068 PM Dock[259]: CGSGetWindowTags: Invalid window 0x4ac
    1/13/13 12:05:37.069 PM Dock[259]: find_shared_window: WID 1195
    1/13/13 12:05:37.069 PM Dock[259]: CGSGetWindowTags: Invalid window 0x4ab
    1/13/13 12:05:37.070 PM Dock[259]: find_shared_window: WID 1194
    1/13/13 12:05:37.070 PM Dock[259]: CGSGetWindowTags: Invalid window 0x4aa
    1/13/13 12:06:34.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:06:39.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:06:44.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:06:50.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:06:55.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:07:01.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:07:11.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:07:17.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:07:22.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:07:27.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:07:27.000 PM kernel[0]: jnl: disk1s2: do_jnl_io: strategy err 0x5
    1/13/13 12:07:27.000 PM kernel[0]: jnl: disk1s2: end_transaction: only wrote 0 of 389120 bytes to the journal!
    1/13/13 12:07:54.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:08:21.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:08:21.820 PM com.apple.backupd[1558]: Error: (-36) SrcErr:NO Copying /Applications/Adobe/AdobePatchFiles/{CFA1AAD1-DC10-413D-875E-2F5B8A78CB3B}.zip to /Volumes/Big2TB/Backups.backupdb/numeroeins/2013-01-13-115805.inProgress/376C91 FB-29D6-47F1-A29B-67D94CBD01BA/MainMan/Applications/Adobe/AdobePatchFiles
    1/13/13 12:08:23.122 PM com.apple.backupd[1558]: Stopping backup.
    1/13/13 12:08:23.122 PM com.apple.backupd[1558]: Error: (-8062) SrcErr:NO Copying /Applications/Adobe/AdobePatchFiles/{CFA1AAD1-DC10-413D-875E-2F5B8A78CB3B}.zip to /Volumes/Big2TB/Backups.backupdb/numeroeins/2013-01-13-115805.inProgress/376C91 FB-29D6-47F1-A29B-67D94CBD01BA/MainMan/Applications/Adobe/AdobePatchFiles
    1/13/13 12:08:23.136 PM com.apple.backupd[1558]: Copied 817 files (572.1 MB) from volume MainMan.
    1/13/13 12:08:23.136 PM com.apple.backupd[1558]: Copy stage failed with error:11
    1/13/13 12:08:23.174 PM com.apple.backupd[1558]: Error: (22) setxattr for key:com.apple.backupd.HostUUID path:/Volumes/Big2TB/Backups.backupdb/numeroeins size:37
    1/13/13 12:08:33.228 PM com.apple.backupd[1558]: Backup failed with error: 11
    1/13/13 12:08:48.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:09:15.000 PM kernel[0]: disk1s2: I/O error.
    ---- End console ---
    Attempted to copy over 2.8 GB of random data again. Failed. 
    Now the drive is completely useless until it is erased. Also will not eject properly anymore. Force eject took 3 minutes.
    --- Console ---
    1/13/13 12:19:00.248 PM mtmfs[1555]: filesystem unmount attempted from stopFS
    1/13/13 12:19:31.946 PM fseventsd[44]: disk logger: failed to open output file /Volumes/Big2TB/.fseventsd/0000000000048e11 (Invalid argument). mount point /Volumes/Big2TB/.fseventsd
    1/13/13 12:19:31.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:19:32.187 PM fseventsd[44]: disk logger: failed to open output file /Volumes/Big2TB/.fseventsd/0000000000048e11 (Invalid argument). mount point /Volumes/Big2TB/.fseventsd
    1/13/13 12:19:32.910 PM WindowServer[114]: CGXDisableUpdate: UI updates were forcibly disabled by application "Disk Utility" for over 1.00 seconds. Server has re-enabled them.
    1/13/13 12:19:35.129 PM WindowServer[114]: reenable_update_for_connection: UI updates were finally reenabled by application "Disk Utility" after 3.22 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/13/13 12:20:05.375 PM fseventsd[44]: disk logger: failed to open output file /Volumes/Big2TB/.fseventsd/0000000000048e11 (Invalid argument). mount point /Volumes/Big2TB/.fseventsd
    1/13/13 12:20:05.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:20:05.390 PM fseventsd[44]: disk logger: failed to open output file /Volumes/Big2TB/.fseventsd/0000000000048e11 (Invalid argument). mount point /Volumes/Big2TB/.fseventsd
    1/13/13 12:20:37.153 PM fseventsd[44]: disk logger: failed to open output file /Volumes/Big2TB/.fseventsd/0000000000048e11 (Invalid argument). mount point /Volumes/Big2TB/.fseventsd
    1/13/13 12:20:37.153 PM fseventsd[44]: disk logger: failed to open output file /Volumes/Big2TB/.fseventsd/0000000000048e11 (Invalid argument). mount point /Volumes/Big2TB/.fseventsd
    1/13/13 12:20:37.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:20:48.102 PM diskarbitrationd[49]: mds [34]:20995 not responding.
    1/13/13 12:21:04.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:21:04.451 PM com.apple.kextd[11]: Can't create kext: invalid CFBundleVersion in identifier cache entry entry 339.
    1/13/13 12:21:14.854 PM com.apple.security.pboxd[1518]: CGSGetWindowTags: Invalid window 0x7b5
    1/13/13 12:21:14.854 PM com.apple.security.pboxd[1518]: kCGErrorFailure: CGSSetHideOnDeact: error getting window tags
    1/13/13 12:21:15.372 PM com.apple.security.pboxd[1518]: CGSCopyWindowColorSpace: Invalid window 0x7b5
    1/13/13 12:21:22.606 PM WindowServer[114]: CGXDisableUpdate: UI updates were forcibly disabled by application "com.apple.security.pboxd" for over 1.00 seconds. Server has re-enabled them.
    1/13/13 12:21:23.060 PM com.apple.quicklook.satellite[1657]: bootstrap_look_up2 failed with 0x44c
    1/13/13 12:21:23.081 PM mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    1/13/13 12:21:23.090 PM WindowServer[114]: reenable_update_for_connection: UI updates were finally reenabled by application "com.apple.security.pboxd" after 1.48 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/13/13 12:21:23.000 PM kernel[0]: Sandbox: sandboxd(1658) deny mach-lookup com.apple.coresymbolicationd
    1/13/13 12:21:26.021 PM com.apple.security.pboxd[1518]: CGSReleaseWindow: Invalid window 1973
    1/13/13 12:21:26.021 PM com.apple.security.pboxd[1518]: _NXTermWindow: error releasing window (1000)
    1/13/13 12:21:27.775 PM sandboxd[1658]: ([1657]) QuickLookSatelli(1657) deny mach-lookup com.apple.PowerManagement.control
    1/13/13 12:21:52.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:21:57.967 PM fseventsd[44]: disk logger: failed to open output file /Volumes/Big2TB/.fseventsd/0000000000048e11 (Invalid argument). mount point /Volumes/Big2TB/.fseventsd
    1/13/13 12:21:57.967 PM fseventsd[44]: disk logger: failed to open output file /Volumes/Big2TB/.fseventsd/0000000000048e11 (Invalid argument). mount point /Volumes/Big2TB/.fseventsd
    1/13/13 12:21:57.000 PM kernel[0]: disk1s2: I/O error.
    1/13/13 12:21:58.229 PM com.apple.kextd[11]: Can't create kext: invalid CFBundleVersion in identifier cache entry entry 339.
    1/13/13 12:21:58.000 PM kernel[0]: jnl: disk1s2: close: journal 0xffffff800908acc0, is invalid.  aborting outstanding transactions
    --- End Console ---
    ---- That's all folks! ----
    Any help would be great!

    The external drive is malfunctioning, or the data cable is bad, or you have another malfunctioning device on the bus, or there's an internal hardware fault.

  • Time Capsule Not Working With Time Machine

    I'm trying to backup to my Time Capsule, which I haven't used in over two years. It had been displaced because of a change in internet service providers. The new provider came in with a Linksys router, setup a sub-network, and left the Time Capsule/Airport out of the mix.
    So I want to return to using my Time Capsule and have since pulled out the Linksys router, and got the Airport functionality working with the existing, primary network. In other words, the Time Capsule/Airport is working to extend the range of the network.
    Problem is this: I cannot backup to the Time Capsule. Even if I'm connecting to the Time Capsule via ethernet, I cannot get it past the 'preparing' phase when running Time Machine. It stays at the phase for what seems to me an inordinate amount of time (30-45 minutes). If I go into System Preferences, the Time Capsule disk doesn't make itself available when using it with Time Machine. If I choose to go into the Star Wars display of Time Machine, I can sort of see the various backups, but I can't roll back to them, and the backup indicator on the right looks sort of ghosted, like it's there but it's not there.
    How do I know if the disk within the Time Capsule is failing? Could that be what's going on? How would I test it? I get a green light on the front of the TC, but not everything is hunky dory since I'm not able to backup.
    Is part of my problem that I'm using a not up-to-date version of Airport Utility? –I'm using 5.4.2

    Oh and here it is, on this page, Section D, #1:
    "Section D.  OTHER  PROBLEMS  RUNNING  BACKUPS
    D1.  Stuck in "Calculating changes" or "Preparing""
    and then the Apple supporting doc, as well:
    http://support.apple.com/kb/TS1516
    Fabulous. Thank you.

  • Forms built with 9 not saving with Adobe reader X

    I have many computers that are running Adobe reader X.  when they are attempting to save a form that was built in Adobe 9.x, a msg dictates that they are unable to save file.  How can I rectify this without downgrading my Adobe to 9 accross our system.

    Downgrading to Adobe Reader 9 will not solve the problem because the issue is Reader was designed not to save completed forms.
    You can use Acrobat 9 to add Extended Reader Rights to PDF forms and that enabled copy can be saved with form data by Acrobat X.
    You will be restricted to 500 returned forms for each form. Above that limit you should contact Adobe about their LiveCycle server product.

  • Print Preferences - not saving with report in CR2008

    I have CR2008 FP 2.7 when I go to print --> preferences and set things like the paper output size and set it to staple the pages these settings do not get saved with the crystal report.  The next time I go into designer all of these changes are gone.  Setting the print style to single or double sided does save with the report.
    Does anyone know why it is not saving all of the printing preferences?
    Thanks,
    josh

    As this is happening in the designer, moved to Crystal Reports Design forum.
    Ludek

  • Adobe Audition not saving Meta Data

    I'm trying to save file information within an mp3 or wav file for our broadcast software (AudioVault) to read it and the information does not save.
    We use versions 1.5 and Version 3 and they both exhibit the same behavior.
    I have followed the info below but it doesn't work.
    The File Info command opens a dialog box in which you can see and add metadata—descriptive information that a computer can process and search—about the open audio file. For example, metadata can include history, loop, and Broadcast Wave information.
    For audio files in WAV, mp3, or CEL format, you can use the File > XMP Info command to add XMP metadata. This extensive metadata can be shared across databases, file formats, and platforms. (See Add or edit XMP metadata.)
    1. In Edit View, choose File > File Info.
    2. Click the tabs at the top of the dialog box to navigate between different sets of properties.
    3. Set properties as desired, and click OK.
    To preserve file information when you save files, select Save Extra Non‑Audio Information in the Save dialog box.
    It is not saving the start and end date. Here's what I'm doing. Open mp3 file. File-File Info, toggle text field names to Radio Industry.
    Fill out Description, Advertiser, start date, end date, click ok. click file, save as (clicking save extra audio infomation)
    now close the file and reopen it and the start and end date are gone. Ideas?

    After talking with BE I discovered that the following procedure will save
    the
    meta data providing it is saved in a WAV format (mp3 doesn't work.)
    Open your mixdown in the waveform view.
    Hit ctrl P and the wave properties window will appear.
    Fill out title, artist. Cut number, category and date.
    When you save as make sure save extra non-audio info is checked
    Then in the dropdown save as type choose WAV windows pcm.
    Your completed file can now be dropped into an AV import folder that should
    transfer
    Into the system with all the information in their proper fields.

  • Time Machine not saving all Users

    Hi,
    I have just used Time Machine for the first time and noticed that it was saving "x" of around 142gb as its first save.
    However, I noticed that when I go through the back up history, whilst it saved my wife's account/user files it hasn't saved mine. The icon of my "house" in the Places section doesn't highlight when you scroll over it with the mouse. It does in the "Now" window.. but page through the back up history and it's not saved. My files are also not found in the Users folder.
    Any help really appreciated.
    Mark

    Are you using File Vault?
    That's the only reason TM won't save your home folder on each backup. It should, however, save the encrypted disk image when you log out.
    If not, start with a Finder window showing your home folder, then go into Time Machine. It should appear that way.
    And be sure you're not looking at the first (lowest) window in the "cascade" of the "Star Wars" background; that's the +Today (Now)+ window, representing what's currently on your system. Navigate to the actual backup (behind the Today window) or via the timeline on the right.
    You might want to review these:
    Time Machine Tutorial
    Time Machine 101
    How to back up and restore your files
    Time Machine Features
    Apple - Support - Mac OSX v10.5 Leopard Time Machine
    and perhaps browse the Time Machine - Frequently Asked Questions *User Tip* at the top of this forum.
    If you have a problem setting-up or using Time Machine, start with the Time Machine - Troubleshooting *User Tip* at the top of this forum. It will show you how to locate the message(s) that describe the problem, then help you fix it.

Maybe you are looking for

  • After hard drive failure, need to sync data

    Following a hard drive failure I need to re-establish syncing between my desktop and Firefox Home on my iPhone. None of the routines for "add a device" or "my account" seem to work as advertised. "Settings" on my iPhone shows me signed in but gives m

  • Insert new hierarchy nodes for key figures

    Hi All, In BI 7.0. when you right click on the key figure folder , you get an option called " insert new hierarchy node". Can anyone please explain what is this feature for. Is is just for reporting purpose where you can drill down for a particular k

  • Business Event Imparts with Skills (GAP UPDATE)

    Dear Experts, If the Business Event Imparts with Skill; does skill gets automatically updated once course attended by an employee? If <b>YES</b> – please explain what is required to be done to achieve this. Thanks in advance for all your efforts & I

  • Deleting from device

    In the interest of clearing out some space I wanted to delete some podcasts from my device. I have quite a few subscriptions set to auto-download while on wifi so I can decrease my cellular data usage. However, the only way on the device I've found t

  • .BAT FILE HELP!

    Hi, I am using Leopard version 10.5.4 have been having trouble with .bat files. I understand that you have to rewrite the file as an applescript or shell file ( I think). Here is the script, @echo off COLOR 03 title 503 client cd ClientFiles/ java -X