This can't be right - can't display time part of a DATE field.

Hi all,
I have a table with one DATE field. It wasn't displaying times with the date,
so I searched and found a post telling how to change my NLS settings
in the Preferences.
I did this and it didn't change, so I thought, OK, I'll shut it down and restart.
Still no. So, I shut it down again, deleted all the records form my table, reinserted
them and then restarted SQLDeveloper.
Despite the fact that it has retained the change in NLS settings, it STILL*
doesn't display the time.
There is no problem in SQL*Plus. Quite frankly, this is poor.
Paul...

>
Would there by anything else - I'm planning on rebooting the machine this afternoon - maybe
that'll do the trick? Will report back.Now, this is still wierd! Have rebooted machine.
I have two tables Sysstat_ext and Sysstat - both have fields M_Time (Measurement time),
which is VARCHAR2(15) in Sysstat_ext and DATE in Sysstat.
Sysstat_ext is an external table pointing at a .csv file where the dates are strings (obviously) in
the format DD-MM HH24:MM:SI (i.e. 01-09 13:55:02).
I then insert the data from Sysstat_ext into Sysstat - the conversion being performed thus:
INSERT INTO Sysstat
SELECT ROUND(TO_DATE  (Sysstat_ext.M_Time, 'DD-MM HH24:MI:SS'), 'MI') AS "Measurement Time",
<.. other fields deleted>If from SQL*Plus, I select M_Time from Sysstat
SQL> select M_Time from Sysstat;
M_TIME
2011 09 01 00:00:00
2011 09 01 03:20:00perfect
same for Sysstat_ext
SQL> select M_Time from Sysstat_ext;
M_TIME
01-09 13:55:02
01-09 14:00:01No year - the conversion during the insert obviously implicitly gives this year (good job that's what I actually want!).
I look at the dates in SQLDeveloper
Systat_ext: 01-09 13:55:02 <====== exactly what I'd expect
Systat: 01-SEP-11 <====== where has my time gone?
Anyone care to shed some light on this?
So, I redid the whole procedure removing the ROUND and also the AS "Measurement Time" (in case of artefacts)
INSERT INTO Sysstat
SELECT TO_DATE (Sysstat_ext.M_Time, 'DD-MM HH24:MI:SS'),
<... deleted...>
Still the same result - Sysstat_ext shows the time and Sysstat doesn't. I would have expected the
opposite. SQL*Plus still shows a time with Sysstat.
This is definitely a bug IMHO. Can I report it anywhere? As an aside, I originally thought that 3rd party tool
manufacturers such as Quest and Allroundautomations would be quaking in their boots with a
tool like SQLDeveloper (for free*) coming from the manufacturer of Oracle itself - I see now that
at the moment, they have little to worry about.
Paul...

Similar Messages

  • How can Maximum Display Time in Chart Recorder be increased to hours/days?

    Error message displayed when Recorder Display Time (X-Axis) is increased beyond ~0.25 hours, saying maximum display time has been reached.  MUST be able to display time in range of days - although since data display rate (not Dasylab sampling rate, display rate separately controlled through pulse generator) is very slow (i.e. 1 sample/5 minutes, 0.0033Hz) total data quantity is not large.
    Please help..there must be a way around this!! Thanks

    The maximum display time in the Chart Recorder is based on a computation of how much memory is available to be allocated. The computation includes the block size, sample rate, as well as the amount of memory on the computer.
    To display more time, you must reduce the amount of data to reduce the effective sampling rate being charted. You can use the Average Module or the Separate module to accomplish this.
    There are some conditions where the actual sampling rate and the channel sampling rate are not the same - triggered data is an example of this, and data from the RS232 Input and ICOMS Input may be labeled in a way that leads the Chart Recorder to believe that the data channel has more data than it does.
    Please provide more information about your application - what is the data source of the data that you are displaying, what is the sampling rate and block size? How much memory does your computer have?
    --cj
    - cj
    Measurement Computing (MCC) has free technical support. Visit www.mccdaq.com and click on the "Support" tab for all support options, including DASYLab.

  • How to Resolve Can not Display Web part error using CQWP and a blog

    I have  a SharePoint 2010 site with a home page that has a  CQWP (content Query Web Part) tied to the most recent blog of blog site with a list of blogs.  Randomly, some clients will experience a "Unable to display
    a web part". Our client machines are set up with Roaming profiles that are PKI enabled.  Some users are always able to see the resulting blog on the home page, while other users, experience sporadic ability to see the blog ----getting a
    "Unable to display web part".  Also a client can be on one machine and get the error and then log on to another machine and not get the error. Its also seems that when a new blog is added to the blog list this is when the
    ability to see the blog on the home page may come up as an error.  Our setup is simple:   show items= list/posts, List type=Posts, Content Type Group= List Content Type, Content type=Posts,  no audience targeting, not additonal filters,
    group items by = None Descending,  #columns =1, sort items by =published -descending   Limit # display items = 1,  Gropup style = Default,  itemstyle= image on left,  yes play media links,  Fields to display = titlt
    and Description (body)
     What kind of things could cause the random behavior?  

    Hi,
    According to your description, my understanding is that the error occurred occasionally with the Content Query web part.
    I tested the same scenario in my environment, and the web part worked fine.
    I recommend to verify the things below:
    Did this issue occur with all the Content Query web part? I recommend to create a new Content Query web part to see if the issue still occurs.
    Did this issue occur with all the users who have permission to view the web part?
    Deactivate the Publish feature and then re-activate it to see if the issue still occurs.
    Check the ULS log for detailed error message.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Display only part of the STRING field, but search ALL field

    Hi all,
    I have a field VARCHAR2(4000) that holds a lot of text.
    When I make a report in APEX, it shows in each row, ALL text, so the report is very "ugly".
    I want to limit the display of that column for only the first 60 characters.
    I tried to use the SUBSTR function, that worked, but the search option will search for the text only in that 60 lenght characters, and will now search in the rest (not displayed) part of the field.
    Is there a way to do this full search and display only part of the field?
    Thanks

    You can have the 'substring' column displayed to the user, but have another column which shows the full text lets say it has an ALIAS of "*SEARCH_LARGE_TEXT*" in the report definition(and is among the displayed columns).
    You can hide the large text column(SEARCH_LARGE_TEXT) using JS as
    $('th[id="SEARCH_LARGE_TEXT"],TD[headers^="SEARCH_LARGE_TEXT"]').hide()
    Note: ^= syntax used to match data column even when break formatting used
    You can make sure that the column stays hidden even after an IR filter or refresh by binding it to the refresh event of the IR by
    $('#apexir_WORKSHEET_REGION').bind('apexafterrefresh', function(){ 
      $('th[id="SEARCH_LARGE_TEXT"],TD[headers^="SEARCH_LARGE_TEXT"]').hide()
    change the string "SEARCH_LARGE_TEXT" with your column's alias
    Hope it helps

  • I use msn internet browser and it constantly crashes with the info from event viewer: Faulting application name: msn.exe, version: 10.50.19.1000, time stamp: 0x51ddb7de this can happen numerous times in a single day help please

    Log Name:      Application
    Source:        Application Error
    Date:          2/26/2014 2:16:26 PM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      SuperFlyXPS
    Description:
    Faulting application name: msn.exe, version: 10.50.19.1000, time stamp: 0x51ddb7de
    Faulting module name: MSHTML.dll, version: 11.0.9600.16518, time stamp: 0x52f365cb
    Exception code: 0xc0000005
    Fault offset: 0x00175363
    Faulting process id: 0x1260
    Faulting application start time: 0x01cf32a011d4aeb4
    Faulting application path: C:\Program Files (x86)\MSN\MSNCoreFiles\msn.exe
    Faulting module path: C:\Windows\system32\MSHTML.dll
    Report Id: a1704306-9f33-11e3-acde-782bcbac25e5
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-02-26T22:16:26.000000000Z" />
        <EventRecordID>80997</EventRecordID>
        <Channel>Application</Channel>
        <Computer>SuperFlyXPS</Computer>
        <Security />
      </System>
      <EventData>
        <Data>msn.exe</Data>
        <Data>10.50.19.1000</Data>
        <Data>51ddb7de</Data>
        <Data>MSHTML.dll</Data>
        <Data>11.0.9600.16518</Data>
        <Data>52f365cb</Data>
        <Data>c0000005</Data>
        <Data>00175363</Data>
        <Data>1260</Data>
        <Data>01cf32a011d4aeb4</Data>
        <Data>C:\Program Files (x86)\MSN\MSNCoreFiles\msn.exe</Data>
        <Data>C:\Windows\system32\MSHTML.dll</Data>
        <Data>a1704306-9f33-11e3-acde-782bcbac25e5</Data>
      </EventData>
    </Event>
    need help with . . .

    Hi,
    I found a useful link:
    MSN has encountered a problem needs to close or MSN is not responding Error
    https://answers.msn.com/solution.aspx?solutionid=11abae39-d906-4113-bb4e-ecfaa81798f0
    Please take a look of this part
    (Common Faulty Module on MSN
    Mshtml.dll)
    *Instead of MSN, here is a another software called Skype, just instroduce it to you, hope you can enjoy it.*
    Yolanda Zhu
    TechNet Community Support

  • How can I display only one value of a field with two or more values?

    Post Author: skiabox
    CA Forum: Crystal Reports
    I have a field in my report with 2 or more values (depending of another field id).For example for id = 1 the report gives me 2 names in that field.For id = 3 the report gives me 3 names in that field.I want to display only one of these names in the id row.The selection of name is random.Thanks!

    Hello Tim,  would barely fit in this situation since this code resides on the client’s interaction side of things. I’d recommend using JavaScript for this matter, e.g. var Data_FName1 = document.getElementById(‘Data_FName1’).value;. If you still opt for using CFML, then you’d go for proxying your JavaScript code to a CFC.

  • How can I display a value in a form field

    I have tried using the set_value_as_string and set_value functions functions in query buttons PL/SQL event handler .But then the value is not getting displayed in the field.
    Could I get any help on this ........

    solution removed, because you crossposted.
    Message was edited by:
    Navy_Coder

  • Can't display time position on playhead

    I have iMovie 10.0.2 and Mavericks and I want to cut an hour long movie into about 5 min segments. I want to be able to browse the movie and find out where I want to split it, note the time positions, then import the 1 hour each time and delete the sections before and after my clip and save each one. But, I cannot display the time location with the playhead (as apparently used to be possible). There are no Advanced Tools, the Preferences consist of two minor items only. The video is of a talk so the there are no visual clues as to locations.
    I have spend several hours reading discussions and the only solution seems to be to use a 3rd party app MPEG Streamclip which will cut my original video into clips. Surely this is not what Apple, iMovie expects me to do?

    Ok, I had this problem just today and I came over here for help but realised I wasn't the only one but just then my EURAKA moment happened! Its there all this while and I have been missing it! The clip trimmer is also the time line stamp! So here is how I have just used it. I start to drag my video from the end using the yellow holder trimmer and the video length in time appears. The actual length upper on the whole clip and the split clip length on top top of the moving trimmer. I simply stopped at the time I needed to split at on the full clip time stamp and saved. I needed to split in to three small movies to I came back and this moved from the trimmer from the beginning to the mid-portion where my next video should start and then moved the end trimmer back to the desired length and so on. Now all done and uploading to youtube!
    I hope this helps!!!

  • How can i display console outputs in my form field?

    Hi,
    I have an application which performs some actions like, insert 200 rows in the database. While inserting data i am using
    int i=0;
    system.out.println ("Insert "+i+" row in database");
    i=i+1;
    The output displays on the commnad line
    what i am trying to do is i have a form, which has text area. I want to display the console output "Insert 1 row in database" and next "Insert 2 row in database"..... and soon in the text area. How could i do that?
    Thanks in advance!!
    pin2g

    solution removed, because you crossposted.
    Message was edited by:
    Navy_Coder

  • Can I use time capsule to transfer data to new computer?

    Is ti possible to pull a backup or parts of backup from Time Capsule to upload to a new mac?

    Sure, that is what TM is all about.
    Just read the info in Pondini about restore.. he covers all the different angles.. Q14-17 here.
    http://pondini.org/TM/FAQ.html
    He has a huge amount of really useful info.. from the top menu it covers problem troubleshooting and theory of operation .. piles of stuff.

  • DSO content can't display Chinese character

    Hello experts,
    I extract data from non-sap system (non-unicode) to BW DSO (7.0 unicode).
    The DTP, data extraction and the activation all work fine.
    However, the content of the DSO can't display the Chinese character.
    Is there any setting I miss?
    How can it display Chinese character as the data in source system?
    Any information is very appreciated.
    Thanks in advance.

    Hi,
    Make sure Chinese Language Patch applied on BW system. You can see Chinese does not mean Chinese Language Patch applied.
    However, even if Language Patch is not applied, you still can see Chinese in reports via Portal.
    Good luck
    Jonas

  • Can't set InfoPath 2010 Drop Down List field with C#

    Hi Guys,
    Here I go again, last time it was a date field, this time it is a drop down list. The applications does this: When the user comes into the form, they have the option of creating a new form via a hyperlink button on the top of the page, this button creates
    a new IP Page of the same exact type of page that it is coming from. The issue I am having is that one of my fields called ddlStatus isn't coming up correctly in the copied form, not sure why? If anyone can help I would be eternally grateful. Here is a copy
    of my code:
    if (e.InputParameters !=
    null)
                                System.Text.
    StringBuilder status =
    new System.Text.StringBuilder();
    string ddlStatus =
    string.Empty;
    if (e.InputParameters.TryGetValue("ddlStatus",
    out ddlStatus))
                                    status.AppendLine(ddlStatus);
                                    nav.SelectSingleNode(
    "/my:myFields/my:secInfo/my:ddlStatus", NamespaceManager).SetValue(status.ToString());
    Best regards, Mike

    Well, ok, so I set my code as such:
       addStatus()                    
    if (e.InputParameters !=
    null)
                               System.Text.
    StringBuilder status =
    new System.Text.StringBuilder();
    string ddlStatus =
    string.Empty;
    if (e.InputParameters.TryGetValue("ddlStatus",
    out ddlStatus))
    XPathNavigator nav1 = MainDataSource.CreateNavigator().SelectSingleNode("/my:myFields/my:secInfo/my:Group",
    NamespaceManager);
                                    nav1.SelectSingleNode(
    "/my:myFields/my:secInfo/my:Group/my:DisplayName",
    NamespaceManager).SetValue(status.ToString());
                                    nav1.SelectSingleNode(
    "/my:myFields/my:secInfo/my:Group/my:Value",
    this.NamespaceManager).SetValue(status.ToString());
    and I also created a new method called addStatus() which looks like this:
    public
    void addStatus()
    try
    SPSite site =
    new
    SPSite(http://MyTestBox);
    SPWeb web = site.OpenWeb();
    SPList list = web.Lists["Status"];
    SPListItemCollection listitems = list.Items;
    XPathNavigator nav =
    this.CreateNavigator().
                        SelectSingleNode(
    "/my:myFields/my:secInfo/my:Group",
    this.NamespaceManager);//
    Note: "/my:myFields/my:Countries" => Group Countries
    foreach (SPListItem
    li in listitems)
    XPathNavigator newNode =
    null;
                        newNode = nav.Clone();
                        newNode.SelectSingleNode(
    "/my:myFields/my:secInfo/my:Group/my:DisplayName",this.NamespaceManager).SetValue(li["Title"].ToString());
                        newNode.SelectSingleNode(
    "/my:myFields/my:secInfo/my:Group/my:Value",this.NamespaceManager).SetValue(li["Title"].ToString());
                        nav.InsertAfter(newNode);
                        newNode =
    null;
                    nav.DeleteSelf();
                    nav =
    null;
    catch
    but it still isn't working??
    Best regards, Mike

  • Can I use Time Machine to back files on an External Hard Drive

    My MacBook Pro hard drive filled up with movies, pictures, and music, so I bought a 2TB Time Capsule.  I have a external hard drive that is about the same capacity as my MacBook hard drive. Sine the Time Capsule is by far the largest drive I have, I moved all my movies, music, and pictures to the Time Capsule and am using it as an external hard drive.  I attached a 500GB external hard drive to the Time Capsule and I use that as the backup drive for Time Machine. However, the problem I am encountering is that I can't seem to direct Time Machine to include all of my files on my Time Capsule in the back up on to the other external hard drive. 
    Can I use Time Machine to backup data that I store on my Time Capsule to a external hard drive?  If not, what is hte best method for backing up my files that are on my Time Capsule?
    Thanks,
    David

    You need to use a different utility .. eg CCC or Chronosync to backup from the TC to yet another drive.. the problem is, that drive should be connected to the computer.. if you use a USB drive on the TC.. the file copying will be slow as slow as you will not believe.. all files are copied to the computer, then back to the TC.. it cannot copy directly to the TC..
    As Neil said.. one way or another you need to use an external drive on the computer, even if you don't use it all the time.. the danger of course is not doing regular backups.. and forgetting their importance.
    A true NAS will have automated backup incrementally of the files stored.. The TC is not a NAS in that sense.. it is a backup target for TM above and beyond anything else.

  • How to display HTML formatted text in the field with Item Style: Raw Text

    How can I display HTML formatted text in the field with Item Style: Raw Text.
    Currently the Item Style is Raw Text, but the text is being displayed along with HTML tags without formatting.
    Regards

    Hi,
    Use Item Style formattedText.
    Regards,
    Gyan

  • Display the report between two dates

    Hi,
    I'm new to this application.i have created two date fields item.i want to display the report between two date fields.please help me.how to do?.
    By,
    Prem.

    Prem,
    See this example:
    http://htmldb.oracle.com/pls/otn/f?p=31517:99
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

Maybe you are looking for