Time/date format in ASMCMD

Hi,
can anyone advise how to get the Time column to display with more accuracy when issuing ls -lt in ASMCMD
presently displays
Type Redund Striped Time Sys Name
ARCHIVELOG UNPROT COARSE JUL 11 11:00:00 Y thread_1_seq_1326.284.788353507
ARCHIVELOG UNPROT COARSE JUL 11 11:00:00 Y thread_1_seq_1325.285.788352359
Many thanks

it was more of a matter of interest to see hours and minutes, knowing when the last modification/creation date/time was. I thought that i maybe was not setting an environment variable correctly to display it. I suppose it just comes from always having this info available at the OS level in the past.
I can happily query this from the sqlplus and the asm views, it was just that i am used to issuing ls -ltr at the os level and was curious as to why ASMCMD shows only up to the hour but is correctly listing them in reverse chronological order

Similar Messages

  • How do I set a custom time & date format in the top bar?

    Hello guys,
    Very embarassing question, because I've had Apple's for all of my life (starting with the original Apple Macintosh) but I still haven't figured out one thing
    How do I set a custom time & date format in the top bar?
    When I go to System Preferences > Language & Text > Formats I can set different formats. I have no idea where you will see these, but I know that it's not the top bar where the time and date is being displayed. Because no matter what I enter, the format in the top bar will stay the same. I can only choose things like 24-Hour clock or not, blinking dots and so on in the Time & Date settings from the System Preferences.
    Can anyone here point me in the right direction? I see you can even choose to display the week of the year - I'd love to do that!
    All help appreciated!
    Greetings

    Language & Text system preferences, Formats tab, customize dates.
    There are also many third party menu item utilities that can.  Search Macupdate.com for some.
    One search yielded iClock Pro.  Although I never used it I would think it allows customization.  The link I gave you is to the Macupdate download page for that app.  On that same page is a Similar Software section which has other apps that can do the same thing. 
    One listed is iStat Menus.  The primary use for iStat Menus is not for displaying date/time but it does do that.  And I know it can do what you want because I use iStat Menus to track temperature sensors n my machine and, like you, I want to customize the menu time/date.  So I use it instead of the apple clock.  It does have the customization features I think you are looking for.

  • Time / Date format in series section of a graph

    Hello,
    I am trying to use some data imported from excel in a graph, but when I set the series of the graph to a field that contains time data (hh:mm), it does not convert it properly.
    Is there a way to represent this time data on the y axis of the graph correctly.
    Ronan

    Hello Ayuba,
    There is something the team might want to check out. Time formatted excel imports are not displaying well.
    To simulate the issue
    create small table in Excel with column formatted as "time"
    Import and see the displayed value in the data source view. It's far from correct displayed time
    The only way you can do something about it is to set the drop down of the column to text and use Timevalue and text to transform to correct time.
    If you just display time in excel as "general" same issue occurs with the import.
    Regards
    StonyArc
    http://www.stonyarc.com http://www.xboxlivenation.com

  • Time & date formatting

    Hi,
    I'm user of LabView 6.1 basic
    I have this question:
    In the formatting number the Type Time & date
    compare with 02:00:00,00 .How is posssible to delete the 02 and Insert the
    correct date of the sistem clock?
    Thank's Nicola

    Thank's for the right answer, Mache
    Nic
    "Mache" ha scritto nel messaggio
    news:[email protected]..
    > You will have to do this Programmaticlly. The Format only puts the
    > Number to show the Fomat of Time and Date you desire.
    >
    > You can use the "Get Date/Time in Seconds" Function available under
    > Time&Dialog Palette. Wire the Ouput to your Number Indicator Formatted
    > for Time and Date. When you run the program the Correct Date/Time will
    > be shown.
    >
    > Good Luck!!
    >
    > Mache

  • Why is the date format tied to regional settings

    i like my date/time format to be customized to my liking. for me, the only way i can do this is to set my region to be the uk, even though i live here in the us. i find this kind of annoying since this causes some weird things to happen in other apps as well. for example, visiting the apple link would take me to the uk site instead of the us site. i understand that this is because i chose the uk in the international settings. but it's the only way i can get the date format that's close to what i want. is there a reason why apple doesn't allow you to customize the time/date format separately from choosing what country you reside in?

    hue tang wrote:
    is there a reason why apple doesn't allow you to customize the time/date format separately from choosing what country you reside in?
    "We" are users like you, with no knowledge of why Apple does or does not include particular features. In this case, I'd guess for simplicity, but that's just a guess.
    You can submit feedback to Apple: http://www.apple.com/feedback/iphone.html.

  • Cisco ISE Date Format mm/dd/yyyy

    We have implemented Cisco ISE Guest Portal and when we create a new account for a visitor the date format is mm/dd/yyyy.See attached file.
    We have tried to change it through Administration/Settings/Language Template/English/Configure Time/Date Formats unfortunately with no results.
    Is this a bug or i am not looking in the right place?
    We are running Cisco ISE 1.2.

    check CSCuj86793

  • Time/date settings

    Is there a way to change the time /date format so that the format is MM/DD/YY and 2 hour time not 24 hour. Thanks

    You can't use the GPS time to set/lock your phone time. To my knowledge this was never possible but I could be wrong. Which carrier are you with that they do not sync time on their network?
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • How do you vary the Date/Time stamp format in File Adapters

    In the receiver channel of the File Adapter where you specify the 'File Name Scheme', you do have the option of specifying a 'File Construction Mode' of 'Add Time Stamp'.  How can you specify a different Date/Time stamp format ( eg MM/DD/YY vs YYYYMMDD vs MMDDYY, etc. ) without changing the Date/Time stamp for the entire SAP system?  Also, can you control where the Date/Time stamp appears in the filename?

    Hi,
    There are many threads discussing the same issue. Go thro the following:
    Dynamic file name (Date) in Receiver File Adapter
    Receiver File Adapter - TimeStamp
    Bhavesh's reply in above thread:
    You can use Adapter Specific Identifiers and then change the file name in the mapping. Append the tiem stamp in the format that you want and so on.
    Just use this code in an UDF,
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    String SourceFileName = conf.get(key);
    java.text.SimpleDateFormat dateformat = new java.text.SimpleDateFormat( "yyyyMMdd" );
    dateformat.format( new java.util.Date() );
    String newfilename=SourceFileName+dateformat;
    // change to new file name
    conf.put(key, newfilename);
    return "";
    Regards,
    P.Venkat

  • In the advanced tab of languages and Region the time and date formats will not change

    For a certian Application I am using I need to change the format of the Time and Date. I had no problems in Mountain Lion. In the advanced tab of languages and Region the time and date formats will not change. I need the date format to read as 01/01/14 and time format to read 13:00. As I said this was easily done in Mountain Lion and all previous Apple OS. I suspect it's an issue with in the OS.

    You're right, it has been that way for a long time. I've never bothered reporting it as a bug since it's simple enough to deal with, but reporting it would be a reasonable thing to do.

  • Date Format in Record Working Time

    Dear All,
    We are using standard ESS SAP Application i.e. Record Working Time. In this application in Weekly View, the date format is MM.DD.YYYY.
    But for other countries it should be DD.MM.YYYY.
    How to change this format?
    We have changed the format in SU3 but still from portal the format is same.
    Please help.
    Regards,
    Nikesh Shah

    Hello,
    Crystal Reports is now returning all rows where pos_endd is null in the database with the record selection criteria of:
    {CHRIS_EmpSal.pos_endd} = date(0, 0, 0)
    However, when I run it in Finance One, it doesn't like this date format   Is there another way to get both Crystal and Finance One (i.e., SQL Server DB) to recognise the same syntax for null dates?

  • Adding time into date format

    Hi
    Is there any easier way to add time value "now" into a date format with time value 00:00
    I managed to add the time
    Value(dateVariable)+(Value(Now())-Value(Today()))
    I just wander if there is any easiest way to do that or if there is any planed options for that?
    Thanks

    Hi Brutton
    I know about this. My scenario is that I use my custom date picker where user can pick a date. For easier date picking I use date format (today) and then adding day ,month or year into that so the date formant is in time 00:00. I
    need to add now time in that date so I can sort entry by date and also by time in a collection I managed to do that with the format mentioned above but I just wander if there is also any other way to do that. We already have excellent code DateAdd where we
    can add days months and years but I can't really add time with this code. I don't think that DateAdd can add time into date format or at least I haven't figure it out yet. If not there would be nice to have A TimeAdd code then instead of calculations

  • Converting httpSession creation time to Date format

    I have the need to convert the value returned from httpSession.getCreationTime() to a Date format. The value returned from getCreationTime is long. I need to parse this value into 2 other fields. The first needs to be in year, month, day format. The second must give me the time in hours, minutes, seconds and milliseconds. Thanks in advance for any help you can give me.

    Simple:Date date = new Date(httpSession.getCreationTime())

  • How to set date format dd.MM.yy for chart time axis

    Is it possible to set default date format dd.MM.yy instead of MM/dd/yy in Flex charts without using label function ?
    In this case we do not know beforehand the length of the time span; it can be minutes, days or weeks.
    Setting locales in compiler options or locale settings for application seems not having any effect.

    For example
    - mx:Barchar
    - if time span is 4 minutes; time axis format is HH:mm and shows 10:00, 10:01, 10:02, 10:03 ; *this correct*
    - if time span is 5 days; time labels are automatically in MM/dd/yy format; question is how to change this automation
    to format dd.MM.yy
    - how to do this *without* dateformatter and *without* coding "if time span is is longer than day nyt less than week then use dd.MM.yy format" ?

  • Run time data binding via FormCalc/JavaScript+wrong text formating

    Hello Everybody
    I need to print a text block with company details depending on company code (different details for different codes). I tried to use this code for event "calculate":
    if ($record.LS_HEADER.BUKRS == "1000") then
    $ = $record.COMP_DETAILS_1000
    elseif ($record.LS_HEADER.BUKRS == "1000") then
    $ = $record.COMP_DETAILS_2000
    endif
    $record.COMP_DETAILS_1000, $record.COMP_DETAILS_2000 are elements from the form context which are linked to textmodules.
    This code works and it prints correct textmodules for different company codes. But the printed text is not formated like text in the textmodules. The most important thing here is that these texts are always printed as a single long string and I need paragraphs like in the textmodules. It's a problem... If I use a statical binding (without FormCalc programming) the text modules will be printed with correct formating.
    Using of checkbox "Allow Multiline Lines" hasn't helped here...
    Have you any idea how should I do the run time data binding?
    Thank you very much in advance!

    Hello,
    the important part is "If I use a statical binding (without FormCalc programming) the text modules will be printed with correct formating." That means you can get the text in the shape you want. Just do that. Get all the texts. Next use the JS/FC scripting to hide all but one text. You get only one text to display and you use static binding to get the proper text format.
    Hope this helps, Otto

  • Date formats-time difference

    Hi,
    Any function module which can give the date and time difference if i input the date and time in the following format
    20090322       (date)
    20090321       (date)
    040004 (time)
    040000 (time)
    I had checked the other FM's but those are not in synch with the date format I am giving.Do anyone here know about a FM which can give the time difference even if we input the date and time in the above format.
    Format is the problem I am facing.
    Thanks,

    Hi Folks,
    I just want to avoid all the below computations and expecting to get the result irrespective of whichever the date format is,ie a function module which gives me the time difference irrespective of the date format that is fed as input.Seems it is not possible.
    data:date1(08) type C value '20090322',
         date2(08) type c value '20090322',
         time1(08) type c value '060648',
         time2(08) type c value '062403',
         date3(08) type C,
         date4(08) type c,
         time3(08) type c,
         time4(08) type c,
         temp1(08) type C,
         temp2(08) type c,
         temp3(08) type c,
         temp4(08) type c,
         temp5(08) type C,
         temp6(08) type c,
         temp7(08) type c,
         temp8(08) type c,
         temp9(08) type c,
         temp10(08) type c,
         temp11(08) type c,
         temp12(08) type c,
         gpdt type d,
         gptm type t,
         smsdt type d,
         smstm type t,
         e_tdiff type cva_time,
         v_diff type cva_time,
         e_days type i.
    temp1 = date1+0(4). "year
    temp2 = date1+4(2)."month
    temp3 = date1+6(2). "date
    temp4 = time1+0(2)."hrs
    temp5 = time1+2(2)."mins
    temp6 = time1+4(2)."secs
    temp7 = date2+0(4). "year
    temp8 = date2+4(2)."month
    temp9 = date2+6(2). "date
    temp10 = time2+0(2)."hrs
    temp11 = time2+2(2)."mins
    temp12 = time2+4(2)."secs
    concatenate: temp3  temp2  temp1 into gpdt,
                  temp9  temp8  temp7 into smsdt,
                  temp4  temp5  temp6 into gptm,
                  temp10  temp11  temp12 into smstm.
    CALL FUNCTION 'SCOV_TIME_DIFF'
      EXPORTING
        im_date1                    = gpdt
        im_date2                    = smsdt
        im_time1                    = gptm
        im_time2                    = smstm
    IMPORTING
       EX_DAYS                     = e_days
       EX_TIME                     = e_tdiff
    * EXCEPTIONS
    *   START_LARGER_THAN_END       = 1
    *   OTHERS                      = 2
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    write:/ e_tdiff,
            e_days.
    Thanks,

Maybe you are looking for

  • Training and Event Management booking date

    Hi, I am working on Training and Event Management cube 0PE_C01. One of the requirements of a query is to show the booking date of the course. I have looked in business content for other cubes i have checked info object and 0event, i have also checked

  • Emac completely restore help

    how do i completely restore my emac to its factory settings? help please!

  • Does Muse have a widget that will allow users to book tables and/or pay for take-away?

    I have already used Muse to set up my portfolio. Now a new challenge - I need to create a website for mobile / tablet users that permits browsing dishes, booking tables and maybe a widget that allows them to pay on-line before collection? I've scanne

  • Isn't 38133mb 40gb storage? I have a used 60gb zen xtra with 38133

    Isn't 3833mb 40gb storage? I have a used 60gb zen xtra with 3833mb total storage space/free space and I am under the impression that 60gb should be closer to 5833mb, correct? Can anyone help me to understand if this is correct? I just got this unit,

  • Adding on to iMac 2009 27inch

    I want to add on some drives to my iMac 2009 27 inch. I saw that OWC does a hack to the 2010's where they run an esata to bottom of the case. I was wondering if this was possible with the 2009? Maybe use the esata from the dvd drive? Also, I was wond