Date formatting in SQLPlus

Hello
I am new to Oracle and need some help formatting a date string. I am on Oracle 9.2.0.1 and need to convert a date string from this format 5-22-2007 to this format 22-May-2007. Iam converting data from an MS Access tool into Oracle using Oracle Conversion tools so I need to add the formatting to a control file and import a dat file. Any help on this would be greatly appreciated.
Sincerely
Kim Mitchell

I was not aware you could do that. I have control files that will take a csv and load the data into the same databse field as named in the control file. The difficulty lies in the fact that I actually have to legacy systems, an IBM iseries database and an Access DB, some data will come from both systems. However they both have ODBC connections/drivers so it may work. If there is an easier way I am all ears or eyes in this case.
Can you explain more about this or do tyou have a good resource I could look at?
Thanks
Kim

Similar Messages

  • Date Format in Portal Report

    Hi,
    I have created a SQL Report with following select statement. Looks like portal has default format mask for date type as 'DD-MM-YY'.
    If I put DD-MM-YYYY or DD-MM-RRRR in Format Mask field in Column Formatting screen, the reports generates 04-10-0002 . It should
    be 04-10-2002.
    select process_id, last_update_date
    from obm
    where process_id like (:process_id)
    I tried to use the to_char function as following. But it errors ORA-06502:PL/SQL:numeric or value error. Even though it works fine in
    my sqlplus session.
    select process_id, to_char(last_update_date, 'DD-MM-YYYY')
    from obm
    where process_id like (:process_id)
    Does anyone have any idea?
    Thanks

    Hi,
    Which version of portal are you using? The error with to_char comes in 30984. This is a bug. The bug no is 2567445. A one-off has been issued. Please look in metalink for it. And for the date formatting in the column formatting section the formatting should work fine. Please check the data in your table.
    Thanks,
    Sharmila

  • Date format in Table Editor

    I am using Oracle 8.1.7. I tried to set the date format by setting the NLS_DATE_FORMAT variable, but it worked for sqlplus only. How can I set it for the Enterprise Manager's Table Editor? Thanks

    I guess you have to change that parameter in init.ora file of the database. According to what I know you can not set that format in OEM.
    Joel P�rez

  • How do I change the date format?

    Sorry, but I'm new to Oracle!
    I'm using "sqlplusw" to build my SQL statements. When I return columns that are date fields, I get the DD-MON-YY format. I want dates to be returned in "YYYY-MM-DD HH24:MI:SS". My DBA won't change the date format on the server, so how do I change SQLPLUS to return dates in the format I want? Do I need set this in some kind of startup file, or a reg key?
    Using client version 9.2.0.5 against a 9.2.0.1 server
    Jeff

    There are a couple of ways you could do it.
    Way 1:
    Search for a file by name 'glogin.sql' on your client work station and add the following statement
    alter session set nls_date_format = 'YYYY-MM-DD HH24:MI:SS';Make sure you save the file. This change will apply to all users who will log into the database using SQL*PLUS from your machine.
    Way 2:
    Create a shortcut and place it some where (for example on the 'DESKTOP').
    Right click on the short cut and choose properties.
    Change the text corresponding to the 'Start in' box to reflect the current location of the shortcut.
    Create a file by name 'login.sql' and place it in the same folder as the shortcut.
    Edit the file and add the following line.
    alter session set nls_date_format = 'YYYY-MM-DD HH24:MI:SS';Make sure that you save the file.
    When you double click the shortcut to start SQL*Plus and login, the script 'login.sql' is executed.

  • How to convert milliseconds to date format in sql query

    Hi All,
    The following code is in java.     
    String yourmilliseconds = "1316673707162";**
    Date resultdate = new Date(Long.parseLong(yourmilliseconds));
    could you plese tell me how to convert milliseconds into date format in query and comparing with another date like(sysdate-3)

    Hello,
    http://stackoverflow.com/questions/3820179/convert-epoch-to-date-in-sqlplus-oracle
    Regards

  • Date Format Issue in Session

    DECLARE
    err_mesg_out          NUMBER(1):=0;
    x     DATE;
    y     VARCHAR2(50) := Null;
    z     DATE;
    BEGIN
    select scheduled_date into x
    from CONTRACT_SCHEDULED_FULFILLMENT where CONTRACT_ID=94875672 and fulfillment_type_id=9;
    dbms_output.put_line('x ='||x);
    select TO_CHAR(scheduled_date,'MM/DD/YYYY HH24:MI:SS') into y
    from CONTRACT_SCHEDULED_FULFILLMENT where CONTRACT_ID=94875672 and fulfillment_type_id=9;
    dbms_output.put_line('y ='||y);
    z := TO_DATE(y,'MM/DD/YYYY HH24:MI:SS');
    dbms_output.put_line('z ='||z);
    --my_proc(10001,20002,z,err_mesg_out);
    END;
    OutPut
    x =14-feb-2011
    y =02/14/2011 11:46:24
    z =14-feb-2011
    err_mesg_out =0I want to get the 'z' variable value in 'MM/DD/YYYY HH24:MI:SS' format in my session. Why I think so is because the same format/value need to be passed to
    a procedure "my_proc" - which is currently commented out. Even if I hardcode the 'z' param value while calling the "my_proc" it still throwing exception
    my_proc(10001,20002,'02/14/2011 11:46:24',err_mesg_out);
    ORA-01843: not a valid monthWhen this procedure is getting executed from the application code with the same value/format it's working fine and I think something need to be done in my SQLPLUS session. Can anyone suggest how I can set the date format to resolve this ?

    Hi,
    As Blushadow said, format (such as the difference between '16-Feb-11' and '02/16/2011 05:08:13') is something that applies only to strings, not DATEs. All DATEs have the same (purely internal) format, which has nothing to do with how they appear when you display them.
    By the way, assuming you want the variables x and y, the following code does exactly the same as what you posted:
    DECLARE
         err_mesg_out     NUMBER (1)     := 0;
         x          DATE;
         y          VARCHAR2 (50)      := Null;
         z          DATE;
    BEGIN
         select      scheduled_date
         into      x
         from      CONTRACT_SCHEDULED_FULFILLMENT
         where      CONTRACT_ID          = 94875672
         and      fulfillment_type_id     = 9;
         dbms_output.put_line ('x =' || x);
         y := TO_CHAR (x, 'MM/DD/YYYY HH24:MI:SS');
         dbms_output.put_line ('y =' || y);
         z := x;
         dbms_output.put_line ('z =' || z);
    --     my_proc (10001, 20002, z, err_mesg_out);
    END;
    / There's no need to query the table more than once, and it's just plain silly to convert a DATE (such as scheduled_date) into a string (such as y), just so you can convert it back to a DATE (such as z) again.
    If all you want to do is call my_proc, then the following is all you need:
    DECLARE
         err_mesg_out     NUMBER (1)     := 0;
         z          DATE;
    BEGIN
         select      scheduled_date
         into      z
         from      CONTRACT_SCHEDULED_FULFILLMENT
         where      CONTRACT_ID          = 94875672
         and      fulfillment_type_id     = 9;
         dbms_output.put_line ('z =' || z);
    --     my_proc (10001, 20002, z, err_mesg_out);
    END;
    /

  • Date format not recognized -- urgent help needed

    Hi,
    I'm having a problem when start sqlplus in dos command window. If I start it from C:\oracle\ora81\bin, it won't started and error message showing like 'Date format not recognized' and then come back to DOS.
    I do have OWB installed which also has SQLPLUS installed so that there is no problem if I start it from C:\ORACLE\owb92\bin.
    For some reason, the path is setting as C:\oracle\ora81\bin before C:\ORACLE\owb92\bin so the default always goes to 81 folder.
    If restart the DB instance, and this problem is gone. But it comes back after some application running (our own application and Oracle provided OMBPlus ). We double check our own application, and there is no where to "alter session ...".
    Any help will be very appreciatged,
    Thanks,
    Daming

    I'm having a problem when start sqlplus in dos command window. If I start it from C:\oracle\ora81\bin, it won't started and error message showing like 'Date format not recognized' and then come back to DOS.
    Do you have a file called 'login.sql' in the folder 'C:\oracle\ora81\bin'? If there is one, is there an 'alter session' command in this file?

  • Urgent date format problem

    Hi every one
    I have a problem with date format in my database.
    I am using Oracle8 Release 8.0.4.0.0 - Production server.
    Generally all procedures in my application runs with the date format DD-MON-YY
    I dont know suddenly what happens to this format and it changes to YYYY/DD/MM
    and all my procedures will run with the format YYYY/DD/MM then nothing happens in the database.
    Please tell me why this date change happening
    Thanks
    ...

    One possible reason :
    TEST@db102 SQL> select sysdate from dual;
    SYSDATE
    13-AUG-06
    TEST@db102 SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    [ora102 ~ db102]$ export NLS_DATE_FORMAT=YYYY/MM/DD
    [ora102 ~ db102]$ sqlplus test/test
    SQL*Plus: Release 10.2.0.1.0 - Production on Sun Aug 13 12:03:19 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    TEST@db102 SQL> select sysdate from dual;
    SYSDATE
    2006/08/13
    TEST@db102 SQL>                                                                                    

  • Date format with alter session -- very urgent !!!!

    The default format of date is DD-MON-YY.
    I like to change as DD/MM/YYYY. So I tried to do so by going
    through my login in SQLPlus and wrote
    ALTER SESSION
    SET NLS_DATE_FORMAT = 'DD/MM/YYYY'.
    The format got changed and there after every query displayed
    date in dd/mm/yyyy format. But once I exit sqlplus and reenter
    in sqlplus, the format goes away and the default date format i.e
    dd-mon-yy comes in existence.
    I want to know, how can i make my date format permanent and too
    for all users.
    null

    hello Khan,
    You can set this format in 2 ways, one is
    local setting and the other one is on server setting.
    Edit your c:\windows\oracle.ini (local setting)
    or your init.ora (oracle server setting)
    and add this script
    SET NLS_DATE_FORMAT = 'DD/MM/YYYY'
    note: if there's no nls_date_format in oracle.ini, the server
    nls_date_format in init.ora will be the current setting
    on your PC
    Hope this will help
    NEC PHIl.
    Shamsad Khan (guest) wrote:
    : The default format of date is DD-MON-YY.
    : I like to change as DD/MM/YYYY. So I tried to do so by going
    : through my login in SQLPlus and wrote
    : ALTER SESSION
    : SET NLS_DATE_FORMAT = 'DD/MM/YYYY'.
    : The format got changed and there after every query displayed
    : date in dd/mm/yyyy format. But once I exit sqlplus and reenter
    : in sqlplus, the format goes away and the default date format
    i.e
    : dd-mon-yy comes in existence.
    : I want to know, how can i make my date format permanent and
    too
    : for all users.
    null

  • ( Urgent ) Date Formatting

    I want to know how to get a date value with Milliseconds by using Date Format or any.
    For Eg: I am having a LOG( Transactions) table wherein I have a date_create column of a DATE Datatype.
    I want to get( Display or retrieve) the value in Milliseconds after formatting. Is there anyway out.
    Does ORACLE provide that..
    Thanks in Advance for your Response..
    null

    2 solutions:
    1) write a java stored procedure. java has time functionality
    that is much more granular then the Oracle DATE type. This will
    work in 8.1.5 and up. It can look like this:
    [email protected]> CREATE or replace JAVA SOURCE
    2 NAMED "MyTimestamp"
    3 AS
    4 import java.lang.String;
    5 import java.sql.Timestamp;
    6
    7 public class MyTimestamp
    8 {
    9 public static String getTimestamp()
    10 {
    11 return (new
    12 Timestamp(System.currentTimeMillis())).toString();
    13 }
    14 };
    15 /
    Java created.
    [email protected]> create or replace function my_timestamp
    return varchar2
    2 AS LANGUAGE JAVA
    3 NAME 'MyTimestamp.getTimestamp() return java.lang.String';
    4 /
    Function created.
    [email protected]> l
    1* select my_timestamp, to_char(sysdate,'yyyy-mm-dd
    hh24:mi:ss') from dual
    [email protected]> /
    MY_TIMESTAMP
    TO_CHAR(SYSDATE,'YY
    2000-06-22 13:47:53.376
    2000-06-22 13:47:53
    [email protected]>
    2) use an external procedure written in C. C has api's to the
    system that allow for much more granular time components. This
    will work in 8.0 and up. For example if you run something like:
    [email protected]> create or replace library timelib as
    2 '/export/home/tkyte/src/t/extproc.so'
    3 /
    Library created.
    [email protected]> create or replace
    2 procedure get_extended_time( p_timestring out varchar2 )
    3 is external
    4 name "get_extended_time"
    5 library timelib
    6 language C
    7 with context
    8 parameters ( CONTEXT,
    9 p_timestring STRING,
    10 p_timestring INDICATOR short,
    11 p_timestring MAXLEN int,
    12 p_timestring LENGTH int );
    13
    14 /
    Procedure created.
    [email protected]> declare
    2 l_timestring varchar2(30);
    3 begin
    4 get_extended_time( l_timestring );
    5 dbms_output.put_line(
    to_char( sysdate, 'mm/dd/yy hh24:mi:ss' ) );
    6 dbms_output.put_line( l_timestring );
    7 end;
    8 /
    06/22/00 13:26:28
    06/22/00 13:26:28.103243
    PL/SQL procedure successfully completed.
    In sqlplus after compiling the following C code into a .so or
    .dll or .sl (depending on platform) you can get the
    milliseconds.
    Here is the C code:
    #include <stdio.h>
    #include <stdarg.h>
    #include <time.h>
    #ifndef OCI_ORACLE
    # include <oci.h>
    #endif
    #define raise_application_error return raise_application_error_x
    static long raise_application_error_x( OCIExtProcContext * ctx,
    int errCode,
    char * errMsg, ...)
    char msg[8192];
    va_list ap;
    va_start(ap,errMsg);
    vsprintf( msg, errMsg, ap );
    va_end(ap);
    OCIExtProcRaiseExcpWithMsg(ctx,errCode,msg,strlen(msg));
    return -1;
    long
    get_extended_time( OCIExtProcContext * ctx,
    char * p_data,
    short * p_data_i,
    int * p_data_maxl,
    int * p_data_l )
    struct timeval tp;
    if ( *p_data_maxl < 25 )
    raise_application_error( ctx, 20001,
    "String must be 25 bytes or more" );
    gettimeofday(&tp, NULL);
    cftime( p_data, "%D %T", &tp.tv_sec );
    sprintf( p_data+strlen(p_data), ".%d", tp.tv_usec );
    *p_data_l = strlen(p_data);
    *p_data_i = 0;
    return 0;
    null

  • Application Date Format 12-¿¿¿-2004

    Why date formats are not interpreted correctly ?
    Apex 3.2 , ORA XE, Win XP 32 SP2,
    When opening particular application:
    Home>Application Builder>Application 31517>Shared Components>Edit Globalization Attributes
    Application Date Format ( List of Values )
    The window appears with:
    12-¿¿¿-04
    12-¿¿¿-2004
    12-¿¿¿
    04-¿¿¿-12
    2004-01-12
    ¿¿¿¿¿¿¿¿¿¿, 12 ¿¿¿¿¿¿¿, 2004
    12-¿¿¿-2004 14:30
    12-¿¿¿-2004 14:30:00
    12-¿¿¿-2004 02:30PM
    16 hours ago
    Row(s) 1 - 11
    I have tried with changeing some parameters, reinstall XE DB and APEX,
    but without success on date format.
    Any help to fix date format ?

    Client configuration is the main factor for date formats, settings can be made in the database server for defaults but can be overridden according to the client. And check the browser language (and font) settings they can also be a factor.
    Start with checking the national language settings ( sqlplus > show parameter nls;) and did you install the Western European, or Universal version? (Windows? Linux?)
    Client settings are picked up from environment variables, the most important is NLS_LANG specifying client country, region, and character set so that the right characters are shown to the client (i.e. which currency symbol, number formats: 9,999.00 or 9.999,00) and in the U.S, we write dates as mm/dd/yy, while in the UK and most of Europe its dd/mm/yy. And the environment settings can be overridden within a session too, i.e. in sqlplus:
    select sysdate from dual;
    alter session set nls_date_format = 'yyyy-mm-dd hh24:mi:ss';
    select sysdate from dual;
    And check the NLS_LANG setting ...
    \[linux\]$ echo $NLS_LANG
    \[win\]$ echo %NLS_LANG%
    The character set for the database can cause trouble especially when the client settings are incorrect or invalid. Easiest way to find the db setting is SQL> alter database backup controlfile to trace; and check the trace file created in the user_dump_dest folder ...

  • Invalid data format on EXPORTING table  to SQL-FLAT FILE (Insert type)

    Hi there!
    Writing from Slovenia/Europe.
    Working with ORACLE9i (standard version) on Windows XP with SQL-deloper 1.0.0.015.
    FIRST SQL.-DEVELOPER IS GOOD TOOL WITH SOME MINOR ERRORS.
    1.) Declare and Insert data EXAMPLE
    drop table tst_date;
    create table tst_date (fld_date date);
    insert into tst_date values (sysdate);
    insert into tst_date values (sysdate);
    2.) Retriving date with SQLPLUS
    SQL> select to_char(fld_date,'DD.MM.YYYY HH24:MI:SS') FROM TST_DATE;
    23.10.2006 11:25:23
    23.10.2006 11:25:25
    As you see TIME DATA IS CORRECT.
    When I EXPOPRT data TO SQL-insert type I got this result IN TST_DATE.SQL file:
    -- INSERTING into TST_DATE
    Insert into "TST_DATE" ("FLD_DATE") values (to_date('2006-10-23','DD.MM.RR'));
    Insert into "TST_DATE" ("FLD_DATE") values (to_date('2006-10-23','DD.MM.RR'));
    As you seel I lost TIME DATA.
    QUESTION!
    HOW CAN I SET PROPER DATE FORMAT IN SQL-DEVELOPER BEFORE I EXPORT DATA TO FLAT FILE.
    Best regards, Iztok from SLOVENIA
    Message was edited by:
    DEKUS

    A DATE-Field, is a DATE-Field and not a
    DATE-TIME-Field.
    The export-tool identifies a DATE-Field and exports
    the data into date-format.This is not true. Oracle DATE fields include a time element.
    To the original poster - I believe this is a bug in the current version.
    See this thread for possible workarounds Bad Export format --- BUG ???
    Message was edited by:
    smitjb

  • Problem with Date formatting

    Hi Tim,
    I am facing some issues with formatting the date using XMLP. The following is the sample XML data file i am using:
    <LIST_G_HEADER>
    <G_HEADER>
    <QUOTE_HEADER_ID>1455</QUOTE_HEADER_ID>
    <QUOTE_NUMBER>2027</QUOTE_NUMBER>
    <QUOTE_VERSION>1</QUOTE_VERSION>
    <QUOTE_NAME>Test GM Report - Rabindra</QUOTE_NAME>
    <SOURCE_NAME>Fletcher, MR. Paul</SOURCE_NAME>
    <QUOTE_DATE>27-OCT-2005</QUOTE_DATE>
    <CURRENCY_CODE>GBP</CURRENCY_CODE>
    </G_HEADER>
    </LIST_G_HEADER>
    The formatting i use for my date field i.e <QUOTE_DATE>, ends up either with NO formatting or giving me an error "[010906_114656657][][ERROR] Invalid XSD string: 27-OCT-2005 (XMLP Template Viewer)". The default formatting available with the form field dialog box (MS-Word) feature also doesn't work.
    I have the following formatting for this field in the form field:
    <?format-date:QUOTE_DATE; 'MEDIUM' ?>
    When i read the user guide, it reads that the date should be in the canonical format i.e: YYY-MM-DDThh:mm:ss+HH:MM
    However i am not getting the date from the base table's in this format. Is the error happening due to incorrect format or is there some other reason behind this? Please let me know, how can i overcome this issue.
    Thx,
    Nitin

    As i mentioned in another thread
    substring function and date format
    Please use this standards
    <?xdofx:expression?>
    for extended SQL functions or
    <?xdoxslt:expression?>
    for extended XSL functions.
    Use like
    <?xdofx:rpad(LAST_NAME),30, ’x’)?>
    <?xdofx:Instr(’abcabcabc’,’a’,2))?>
    <?xdofx:upper(char)?>
    <?xdofx:lower (char)?>
    <?xdofx:greatest ( expr [, expr]... )?>
    ETC.....

  • How can we give the Data Format (File Type ) in Runtime

    Hi all,
    How can we give the Data Format (File Type ) in Runtime for the following method,
    cl_gui_frontend_services=>gui_download.
    Thanks in advance
    Sri

    There is a filetype parameter which you can set
    CALL METHOD cl_gui_frontend_services=>gui_download
      EXPORTING
    *    BIN_FILESIZE              =
        filename                  =
    *    FILETYPE                  = 'ASC'
    *    APPEND                    = SPACE
    *    WRITE_FIELD_SEPARATOR     = SPACE
    *    HEADER                    = '00'
    *    TRUNC_TRAILING_BLANKS     = SPACE
    *    WRITE_LF                  = 'X'
    *    COL_SELECT                = SPACE
    *    COL_SELECT_MASK           = SPACE
    *    DAT_MODE                  = SPACE
    *    CONFIRM_OVERWRITE         = SPACE
    *    NO_AUTH_CHECK             = SPACE
    *    CODEPAGE                  = SPACE
    *    IGNORE_CERR               = ABAP_TRUE
    *    REPLACEMENT               = '#'
    *    WRITE_BOM                 = SPACE
    *    TRUNC_TRAILING_BLANKS_EOL = 'X'
    *  IMPORTING
    *    FILELENGTH                =
      changing
        data_tab                  =
    *  EXCEPTIONS
    *    FILE_WRITE_ERROR          = 1
    *    NO_BATCH                  = 2
    *    GUI_REFUSE_FILETRANSFER   = 3
    *    INVALID_TYPE              = 4
    *    NO_AUTHORITY              = 5
    *    UNKNOWN_ERROR             = 6
    *    HEADER_NOT_ALLOWED        = 7
    *    SEPARATOR_NOT_ALLOWED     = 8
    *    FILESIZE_NOT_ALLOWED      = 9
    *    HEADER_TOO_LONG           = 10
    *    DP_ERROR_CREATE           = 11
    *    DP_ERROR_SEND             = 12
    *    DP_ERROR_WRITE            = 13
    *    UNKNOWN_DP_ERROR          = 14
    *    ACCESS_DENIED             = 15
    *    DP_OUT_OF_MEMORY          = 16
    *    DISK_FULL                 = 17
    *    DP_TIMEOUT                = 18
    *    FILE_NOT_FOUND            = 19
    *    DATAPROVIDER_EXCEPTION    = 20
    *    CONTROL_FLUSH_ERROR       = 21
    *    NOT_SUPPORTED_BY_GUI      = 22
    *    ERROR_NO_GUI              = 23
    *    others                    = 24

  • Need to convert into date format

    Hi all,
    I need to convert '2008-11-26T11:07:38-06:00' [YYYY]-[MM]-[DD]T[HH]:[MM]:[SS][TIMEZONE]
    in format 'YYYY-MM-DD HH:MM:SS'.
    Thanks in advance.

    >
    Thank you for your reply
    But it is giving me output as '26-NOV-08'
    And I want in format '2008-11-26 07:38' i.e 'YYYY-MM-DD HH:MM'.
    >
    Then you are not looking for a date, You are looking for a string.
    The date format that gets displayed is dependent on nls_date_format parameter.
    If you want a string in the format you asked, then,
    SELECT TO_CHAR ( TO_DATE ( '2008-11-26T11:07:38-06:00', 'YYYY-MM-DD"T"HH24:MI:SS"-06:00"'), 'YYYY-MM-DD HH24:MM:SS')
      FROM DUAL;Or if you just want the date to be displayed like that then
    Do,
    SQL> alter session set nls_date_Format="YYYY-MM-DD HH24:MI:SS";
    Session altered.
    SQL> SELECT TO_DATE ( '2008-11-26T11:07:38-06:00', 'YYYY-MM-DD"T"HH24:MI:SS"-06:00"') dt
      2    FROM DUAL;
    DT
    2008-11-26 11:07:38
    SQL> G.

Maybe you are looking for

  • IPhone 4S 5.1.1 Battery drain, fixed for my case

    I just got a 4S, to replaced my missing iphone 4. The firware was 5.1, so I upgraded over the air (using the phone alone) to 5.1.1 Then I restored by phone using the back up in iTune. But I realised my latest backup was in iCloud (I did not backup al

  • Multiple Alerts getting raised for same Error

    Hi All, I have a Management Pack Which will will trigger an Exe. The Exe takes an input and that input is being provided as a parameter from the MP. Whenever the exe raises throws an error an event in the event viewer and also  we are raising an Aler

  • Time stamp and title

    How do I add qoutes around the time stamp so the date and time can be displayed on a network analyzer? I can display a title on the screen of the analyzer but not the time stamp. When I cancatinate the title and time stamp is when I have a problem. M

  • Loading large images

    Hi there, I'm facing lot of problem while loading large image (25+ MB JPG/TIFF) in editor pane using ImageIO. I always get OuofMemory exception or my machine (p4 2.4ghz/512 ddr) get hangs. Is there any way to load large images within a moment in Java

  • Website is down and I can´t log into Business Catalysator

    I´m trying to get in touch with technical support for Business Catalysator, but I can´t get in touch, they just sent me the link to this forum. My collegue in charge is not availible today, and I really need some instant help. The page is down with t