Replicated scheme - data format

Hi all
     I was doing memory size experiment on coherence. I was wondering if someone has answer to the following case:
     I am doing this investigation using Replicated cache scheme.
     I want to load 3 million id/value pairs, into a named cache (key:id, data:value)
     I can put these 3 million entries by calling put(key,data), or putAll(collection). At the end, the size of the application is around 900MB.
     I can put these 3 million entries by putting these ids into smaller hashtable (~100K items) and put these hashtables into named cache. put(somekey, hashtable). So, if I need to access an id, i find the respective hashmap, and check the value from that hashmap. The total size of the application is ~150MB for this case.
     I know there is some redundant data that goes into each items in the namedcache. For the first case, named cache has 3 million entries, for the second case it has 30 entries (100K hashmaps).
     The difference is 750MB, some of which is due to ~3million more indexes for the first case and some due to extra overhead for each items in the named cache.
     The main reason should not be the more index, i would expect that to be ~100MB. Is that the case that memory size is a lot higher since..
     3 million x EXTRA >> 30 x EXTRA
     If so, can someone tell me what this extra part consists of, when we put some data into named cache when we are using Replicated-scheme.

There are a few things to consider:
     1) The data is stored in deserialized form until it is read. The first read will deserialize the data.
     2) There is some overhead per-entry. 750MB/(3,000,000-30) = ~250 bytes per entry. Some portion of this is attributable to the per-entry overhead.
     3) How did you measure memory usage? Usually invoking <tt>System.gc()</tt> before measuring heap usage will clear garbage but is not guaranteed.
     Jon Purdy
     Oracle

Similar Messages

  • SSIS 2012 is intermittently failing with below "Invalid date format" while importing data from a source table into a Destination table with same exact schema.

    We migrated Packages from SSIS 2008 to 2012. The Package is working fine in all the environments except in one of our environment.
    SSIS 2012 is intermittently failing with below error while importing data from a source table into a Destination table with same exact schema.
    Error: 2014-01-28 15:52:05.19
       Code: 0x80004005
       Source: xxxxxxxx SSIS.Pipeline
       Description: Unspecified error
    End Error
    Error: 2014-01-28 15:52:05.19
       Code: 0xC0202009
       Source: Process xxxxxx Load TableName [48]
       Description: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.
    An OLE DB record is available.  Source: "Microsoft SQL Server Native Client 11.0"  Hresult: 0x80004005  Description: "Invalid date format".
    End Error
    Error: 2014-01-28 15:52:05.19
       Code: 0xC020901C
       Source: Process xxxxxxxx Load TableName [48]
       Description: There was an error with Load TableName.Inputs[OLE DB Destination Input].Columns[Updated] on Load TableName.Inputs[OLE DB Destination Input]. The column status returned was: "Conversion failed because the data value overflowed
    the specified type.".
    End Error
    But when we reorder the column in "Updated" in Destination table, the package is importing data successfully.
    This looks like bug to me, Any suggestion?

    Hi Mohideen,
    Based on my research, the issue might be related to one of the following factors:
    Memory pressure. Check there is a memory challenge when the issue occurs. In addition, if the package runs in 32-bit runtime on the specific server, use the 64-bit runtime instead.
    A known issue with SQL Native Client. As a workaround, use .NET data provider instead of SNAC.
    Hope this helps.
    Regards,
    Mike Yin
    If you have any feedback on our support, please click
    here
    Mike Yin
    TechNet Community Support

  • How to specify date format in a schema

    I got the following error when try to write data to a flat file using file adapter. I think it's because my variable's date format doesn't match what's in the xml schema. I defined the xml schema by using 'Define Schema for Native Format', but I can not specify date format there. How do I know what format the system will read and how to define my own date format?
    file:/D:/OracleSOA/bpel/domains/default/tmp/.bpel_FileWriteTest_1.0_098a8d5cd6b8965868766a3fbb25be3c.tmp/FWrite.wsdl [ Write_ptt::Write(Root-Element) ] - WSIF JCA Execute of operation 'Write' failed due to: Translation Error.
    Error while translating message to native format [Caused by: Invalid text '10-09-2006' in element: 'LastUpdateDate'].
    Thank you,

    Under HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME{X}
    NLS_DATE_FORMAT = 'dd-mm-yyyy'
    You could also change the database date format :
    SQL> alter system set NLS_DATE_FORMAT = 'dd-mm-yyyy' scope=spfile;
    and restart the DB.

  • Date format for MSSQL2000

    Hi,
    I use database MSSQL2000 and UIX application.
    File dateformat_ru.properties :
    dateclass=java.sql.Date
    datetimeclass=java.sql.Timestamp
    datepattern=dd-MM-yyyy or datepattern=dd.MM.yyyy
    datetimepattern=dd-MM-yyyy HH:mm:ss.SSS
    I read record from database = OK. (date = valid)
    After change field date I have error :
    Timestamp format must be yyyy-mm-dd hh:mm:ss.fffffffff
    Help me, please.
    Sorry ... :(
    Nikolay
    New Urengoj, Russia

    Hi, Peter !
    Unfortunately, I hurted some days and could not worked.
    I shall try to state a problem more full.
    1. Version : JDeveloper 10.1.2.0.0 (Build 1811), JHeadStart 10.1.2.0 (Build 19)
    2. I could not create log file for find error and find message "Timestamp format must be " This message is not present in files of the project. In the previous example, I have incorrectly specified a format of date and, therefore, I have received a error "Timestamp format...", sorry :(
    3. I use database MsSql 2000 and date format in this database is "dmy" (day mounth year) as default for russian users. For an example, I used the scheme HR (human resources) and I have created all objects in database MsSql.
    4. Further, I created Business Components from tables. In Employees and EmployeesViews, for field HireDate :
    Entity Attribute -> Type = Date
    Attribute Properties -> Value = dateField
    Control Hints -> Control Type = Date
    Variant 1. In file dateformat_ru.properties
    dateclass=java.sql.Date
    datepattern=dd.MM.yyyy
    After run application I see valid current value HireDate 17.12.1984. (Steven King)
    I changed to 18.12.1984 and ... error :
    java.lang.IllegalArgumentException at java.sql.Date.valueOf(Date.java:103)
    JBO-25009: Cannot create an object of type:java.sql.Date with value:18.12.1984
    Variant 2. In file dateformat_ru.properties
    dateclass=java.sql.Date
    datepattern=dd-MM-yyyy
    Redeploy ... I see valid current value HireDate 17-12-1984
    Change to 18-12-1984, save.
    And after save - > new errors :
    I see HireDate 06-05-0024 and
    [Microsoft][SQLServer 2000 Driver for JDBC]The year, 24, is outside the range allowed by the SQL Server.
    I correctly understand, that it is impossible to use dateclass=java.sql.Date
    for date format "dd-MM-yyyy" or "dd.MM.yyyy" ?
    Class java.sql.Date does not support this format ?
    Prompt, please, a way of the decision of this problem.
    Thanks.
    I wish good luck.
    Nikolay

  • Invalid date format for 'Created' field in the getVersions web service Response.

    Hi all,
    I am trying to get all versions for selected document by calling getVersions method Versions.asmxweb service, but getting ‘Created’ date attribute value is in the format "29-05-2012 12:01"
    but I am expecting either one of the following date formats.
     1.      yyyy-MM-dd HH:mm:ss  or  yyyy-MM-ddTHH:mm:ssz
     2.      MM/dd/yyyy HH:mm a   (a means AM/PM)
     3.      MM/dd/yyyy
     4.      yyyyMMdd HH:mm:ss
    where do I need to change?
    what are all the formate will be support by SharePoint?
    please find attached response xml of getVersions call.
    <results xmlns="http://schemas.microsoft.com/sharepoint/soap/">
        <list id="{6A6F6CD1-2E9C-44CC-B1F5-56G7JB5C8778}"/>
        <versioning enabled="1"/>
        <settings url="http://hbngjfgj47s20/reg/_layouts/LstSetng.aspx?List={7S6F6CD1-2E9C-44CC-B1F5-KO9J8Y7Y6H78}"/>
        <result version="@0.3" url="http://vmesxsrv47s20/register/Shared Documents/Parent/child/my_doc" created="29-05-2012 12:01" createdRaw="2014-12-02T12:46:02Z" createdBy="my_dom\agi_sharepoint"
    createdByName="AGI_Sharepoint" size="288" comments=""/>
        <result version="0.1" url="http://hbngjfgj47s20/register/_vti_history/1/Shared Documents/Parent/child/my_doc" created="29-05-2012 10:01" createdRaw="2014-12-02T10:55:18Z" createdBy="my_dom\my_sharepoint"
    createdByName="my_sharepoint" size="288" comments=""/>
        <result version="0.2" url="http://hbngjfgj47s20/register/_vti_history/2/Shared Documents/Parent/child/my_doc.txt" created="29-05-2012 11:01" createdRaw="2014-12-02T10:59:25Z" createdBy="my_dom\my_sharepoint"
    createdByName="my_sharepoint" size="288" comments=""/>
    </results>
    Kindly help me on this.

    Hi,
    According to your post, my understanding is that you want to change date format for ‘Created’ field in the getVersions web service.
    Per my knowledge, you can get the date format for ‘Created’ field as “MM/dd/yyyy HH:mm a”.
    For more information, you can refer to:
    Versions.GetVersions Method (Versions)
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Date format not imported

    Hi,
    I'm trying to import a date dimension from a SQL table. The problem is that the when importing directly into Power Pivot, the date format from the date base turns into a text format and the sorting is not the same as in the data base.
    Using Power Query instead, everything looks ok in the Power Query window and the data type and sorting is correct, and when loading the data to Power Pivot or an Excel table the format seems to be correct, but not the sorting, even when I
    set the sorting in Power Query. Why is that? Shouldn't the sorting be the same when the data is loaded? And why is the format not correctly imported to Power Pivot when not using Power Query? 
    I have windows 7 with Swedish as locale and office 2013 professional plus and I have the latest version of Power Query installed.
    Brgds,
    Caj
    Csten

    Yes, I tried to set the data type to date in Power Pivot and that works, was just surprised that Power Pivot don't import the format and sort order from the date base. Would be a nice feature.
    Curt, I assume this is what you mean?
    let
        Source = Sql.Databases("XXXXXX"),
        SLAMJunc = Source{[Name="XXXXX"]}[Data],
        dbo_DimDate = XXXXXX{[Schema="dbo",Item="DimDate"]}[Data],
        SortedRows = Table.Sort(dbo_DimDate,{{"Date", Order.Ascending}})
    in
        SortedRows
    Also, the data type is set to Date in Power Query but when I load the data into Power Pivot it is shown as Date/Time. Non of this is a big thing and it is easy to handle, just slightly annoying when I didn't get the result I was expecting.  
    //Caj
    Csten

  • Date Format in Safari's SQLite feed Database?

    Hi,
    I am working on newsfeed visualizations and would like to use Safari's database. However, I run into problems parsing the dates.
    Has anyone figured out the date format in Safari's feed database (located at ~/Library/Syndication/Database3)? It's just large integers, and does not seem to be a standard date or timestamp format. Any hints/clues?
    Would be fantastic!
      Mac OS X (10.4.7)  

    I have recently upgraded my DB to 11.2.0.1 and APEX to 4.0.1 then patched APEX to 4.0.2.00.07. With the upgrades, just like numerous other people, the date format is showing as mm/dd/yyyy in sql workshop tables and sql workshop window for my schema. The applications all still work fine with the previous and preferred date format of dd-mon-rr but trying to test code or export data from sql workshop gives errors when using my old code as my date format is dd-mon-rr.
    Running the following select statement results in different date formats: select * from V$NLS_PARAMETERS
    ...when run in SQL Developer as user RSC result:
    NLS_DATE_FORMAT DD-MON-RR
    ...when run in APEX SQL Workshop as user RSC result:
    NLS_DATE_FORMAT mm/dd/yyyy
    Telling me this is an APEX issue not a DB issue.
    I have searched this forum as well as every other post about this and cannot find anything that solves this issue. If anyone has any ideas how to resolve this issue I would greatly appreciate it as it is terribly disrupting to the APEX work.

  • Date format in apex4

    HI
    How can i change the date foramt in apex 4
    when i open the object browser and browse the table's data it display the date in this foramt 'MM/DD/YYYY', how can i change it to default database format 'DD-MON-YYYY' ?
    BEST REGARDS

    I have recently upgraded my DB to 11.2.0.1 and APEX to 4.0.1 then patched APEX to 4.0.2.00.07. With the upgrades, just like numerous other people, the date format is showing as mm/dd/yyyy in sql workshop tables and sql workshop window for my schema. The applications all still work fine with the previous and preferred date format of dd-mon-rr but trying to test code or export data from sql workshop gives errors when using my old code as my date format is dd-mon-rr.
    Running the following select statement results in different date formats: select * from V$NLS_PARAMETERS
    ...when run in SQL Developer as user RSC result:
    NLS_DATE_FORMAT DD-MON-RR
    ...when run in APEX SQL Workshop as user RSC result:
    NLS_DATE_FORMAT mm/dd/yyyy
    Telling me this is an APEX issue not a DB issue.
    I have searched this forum as well as every other post about this and cannot find anything that solves this issue. If anyone has any ideas how to resolve this issue I would greatly appreciate it as it is terribly disrupting to the APEX work.

  • Date  format in awm

    Do anyone know how to change date formal in awm?
    my time dim take the date like '01/13/2007' and I want like '13/01/2007'
    I have Error Occured: ORA-01843 and I think is because of the format of the date...
    what do u think?
    thank you

    I think your assumption about the error is correct. It would appear that the value '13' is being processed as a month not a day value.
    Are the columns in your time dimension table flagged as type DATE or VARCHAR2? I thought if the format was DATE AWM managed the conversion process internally. In the 10g common schema sample the date formats for the end-date attribute (source column type date) are YYYY-MM-DD and these are loaded and parsed correctly.
    So I am assuming your source data is VARCHAR2. I think you have two options:
    1) Create a view over your original time dimension and use the normal SQL operators to convert the data columns to the correct format. Personally, I always try to create views over source fact tables as it insulates you from schema changes and usually means you do not have to keep deleting the existing mapping and re-mapping all the columns again.
    2) Use the OLAP DML dateorder options to set the correct order (DATEORDER = 'MDY') prior to loading the source data. Not sure if you would need to set this explicitly after the data load as well to ensure the query tools worked correctly.
    I think option 1 is probably the best option as this does not require any additional OLAP DML processing and is less likely to cause additional issues further down the line.
    Keith Laker
    Oracle EMEA Consulting
    BI Blog: http://oraclebi.blogspot.com/
    DM Blog: http://oracledmt.blogspot.com/
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN: http://www.oracle.com/technology/products/bi/
    BI Samples: http://www.oracle.com/technology/products/bi/samples/

  • How to convert Milliseconds into Date format

    Hi all,
    I am getting the output of a variable in milliseconds format, how can I convert it into date format
    For ex: I am getting input variable as 1366664691000 and I need to convert it to April 22, 2013 5:04:51 PM EDT ( or of SOA format). is there any function for this in XSL or XPath?
    Thanks,

    It is working fine if i test it in provided site...
    But it is returning "-1366664691001", If i am running it in EM. This is the code in my xsl
    <?xml version="1.0" encoding="UTF-8" ?>
    <?oracle-xsl-mapper
    <!-- SPECIFICATION OF MAP SOURCES AND TARGETS, DO NOT MODIFY. -->
    <mapSources>
    <source type="WSDL">
    <schema location="../JavaProcess.wsdl"/>
    <rootElement name="process" namespace="http://xmlns.oracle.com/SampleApplication/JavaEmbeddingActivity/JavaProcess"/>
    </source>
    </mapSources>
    <mapTargets>
    <target type="WSDL">
    <schema location="../JavaProcess.wsdl"/>
    <rootElement name="processResponse" namespace="http://xmlns.oracle.com/SampleApplication/JavaEmbeddingActivity/JavaProcess"/>
    </target>
    </mapTargets>
    <!-- GENERATED BY ORACLE XSL MAPPER 11.1.1.4.0(build 110106.1932.5682) AT [TUE MAY 07 10:21:02 EDT 2013]. -->
    ?>
    <xsl:stylesheet version="1.0"
    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
    xmlns:mhdr="http://www.oracle.com/XSL/Transform/java/oracle.tip.mediator.service.common.functions.MediatorExtnFunction"
    xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
    xmlns:oraext="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:dvm="http://www.oracle.com/XSL/Transform/java/oracle.tip.dvm.LookupValue"
    xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:med="http://schemas.oracle.com/mediator/xpath"
    xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
    xmlns:bpm="http://xmlns.oracle.com/bpmn20/extensions"
    xmlns:xdk="http://schemas.oracle.com/bpel/extension/xpath/function/xdk"
    xmlns:xref="http://www.oracle.com/XSL/Transform/java/oracle.tip.xref.xpath.XRefXPathFunctions"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:bpmn="http://schemas.oracle.com/bpm/xpath"
    xmlns:ora="http://schemas.oracle.com/xpath/extension"
    xmlns:socket="http://www.oracle.com/XSL/Transform/java/oracle.tip.adapter.socket.ProtocolTranslator"
    xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap"
    xmlns:client="client"
    exclude-result-prefixes="xsi xsl bpws xp20 mhdr bpel oraext dvm hwf med ids bpm xdk xref bpmn ora socket ldap">
    <xsl:template match="/">
    <xsl:variable name="lastMTime" select="1366664691000"/>
    <xsl:copy-of select="$lastMTime"/>
    <client:processResponse>
    <client:result>
    <xsl:value-of select='xsd:dateTime("1970-01-01T00:00:00") + $lastMTime * xsd:dayTimeDuration("PT0.001S")'/>
    </client:result>
    </client:processResponse>
    </xsl:template>
    </xsl:stylesheet>

  • Webservice date format

    I have used "clientgen" Ant task to generate the client library. The WSDL indicates that certain fields are of type xsd:date.
    The web service client sends sends "2009-08-04T13:55:46.237-04:00".
    However, the server expects "2009-08-04".
    In the WSDL file, after you following all the links/referers URLs, you end up with the type definition:
    <xs:simpleType name="PublicationDate">
    <xs:restriction base="xs:date"/>
    </xs:simpleType>
    My questions are:
    1. Is the client behaving correctly? The WSDL indicates this field is a "date" and NOT "dateTime". Perhaps the problem is in the "clientgen" Ant task which is not generating the client stubs/implementation correctly?
    2. How can I change the manner in which the date gets formatted and passed on the SOAP body (java.util.Calendar)?
    Edited by: user8651233 on Aug 5, 2009 7:15 AM

    When trying to generate a client for your JAX-RPC web service from a schema. The schema includes
    an schema datatype which is derived from a standard schema datatype by restriction. For example
    <xs:simpleType name="SampleDate">
    <xs:restriction base="xs:date"/>
    </xs:simpleType>
    When clientgen task is used, there is no custom class created to represent this schematype and the WSDL mappings map to the standard schema datatype rather than to your custom datatype. Subsequently, when the web service request is made, it too generates the request using the standard datatype rather than your custom datatype. The web service is expecting the custom datatype, so the request fails with a SOAP fault
    There is a restriction on what Java data types can be automatically generated by the WebLogic ant
    tasks: specifically, a schema data type is derived "by restriction of an existing simple type," it
    is generated as the "equivalent Java data type of simple type."
    This is the expected behavior for the JAX-RPC ant tasks, so the system is functioning as designed.
    The solution is to program the appropriate class yourself. To do that, you would set up a class
    which handles that element and does what it needs to do with the data in it.Then you would need to change the mappings that are automatically generated to point to your new custom class .
    Once all that is in place, recompile your war file and retest. As long as everything is pointing
    to the right places, the request and subsequent response should then be correct.
    -Chandrasen.
    Edited by: user10600598 on Aug 27, 2009 9:08 AM

  • Default Date format

    The book "OCA Oracle Database 11g SQL Fundamentals I Exam Guide (Exam 1Z0-051)" says
    select employee_id, start_date from job_history;in HR schema will yield
    101     21/SEP/89 00:00:00
    101     28/OCT/93 00:00:00
    102     13/JAN/93 00:00:00
    114     24/MAR/98 00:00:00
    122     01/JAN/99 00:00:00
    176     24/MAR/98 00:00:00
    176     01/JAN/99 00:00:00
    200     17/SEP/87 00:00:00
    200     01/JUL/94 00:00:00
    201     17/FEB/96 00:00:00but I get
    101     21-SEP-89
    101     28-OCT-93
    102     13-JAN-93
    114     24-MAR-98
    122     01-JAN-99
    176     24-MAR-98
    176     01-JAN-99
    200     17-SEP-87
    200     01-JUL-94
    201     17-FEB-96Does it depend on any other factors or parameters or flags? Please clarify. I am using Oracle 11g and the exam guide is also for 11g.

    Hi It depends upon the NLS_DATE_FORMAT parameter value
    it may be different
    for me its
    SQL> SELECT value FROM v$nls_parameters WHERE parameter ='NLS_DATE_FORMAT';
    VALUE
    DD-MON-RRDD-MON-YYYY is the default date format given by oralce if you want to change it use
    SQL> alter session set NLS_DATE_FORMAT='YOUR FORMAT'Edited by: Qwerty on Aug 17, 2009 12:41 PM

  • Can date format be changed at runtime in patterLayout(log4J)

    Hi,
    I would like to know if the date format can be changed at runtime when i am using pattern layout. My application can have a particular date format. How do i specify that for the %d specifier in pattern layout, as i will only know the format at runtime.
    anjali

    Hello Mike,
    If your location is equivalent to the parsing schema you can use the APEX built-in substitution string *#OWNER#*.
    You still need to resort to Peter’s advices where dynamic table names are concerned. Bear in mind that in this case, you won’t be able to use the APEX built-in DML processes, and you’ll need to write your own fetch/insert/update/delete processes, which might be a lot of work. Working in a multi-user environment adds the complexity factor of concurrency control (lost updates).
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

  • Date format mismatch between OIM 11gR2 GTC and backend custom database table (Oracle 11g R2)

    Hi,
    We have an OIM 11g R2 version running that has a GTC installed and configured. The GTC is used to provision to a 11g R2 database table via the DBAT 9.1.0.5.0 connector. Now the requirement is that the timestamp be recorded in the backend DB when a new record is provisioned to it using the GTC.
    During the setup of the GTC, the target system date format is asked for should be one from among the values allowed by the following predefined formats:
    Customizing Formats (The Java&amp;trade; Tutorials &amp;gt; Internationalization &amp;gt; Formatting)
    Now our problem is that the target DB to which the provisioning is supposed to happen, isn't under our control and hence we cannot change its schema, and the date format in that table is of the type "01-JAN-10 12.00.00.000000000 AM", which translates to "dd-MMM-yy hh.mm.ss.fffffffff (AM/PM)".
    On the other hand, as you can see from the above link, none of the values that OIM allows to be passed through the GTC allow for that format to be used.
    Does anyone know of any way in which we can intercept the GTC provisioning request and convert the date on the fly, after OIM has passed on the control, but before the values are written into the DB table, or does anyone know of any workarounds to this issue?
    I'd really appreciate it if someone could provide a solution to this.
    Thanks.

    [http://docs.oracle.com/cd/E27559_01/dev.1112/e27150/refsched.htm#CIHBFCJG]
    See 26.6 for the plugin.zip directory structure, and as I said, I used the same method on a previous task in the same OIM instance.
    Edited by: 939908 on Jan 31, 2013 8:04 AM

  • User create form - date of birth (date formate)

    Hi,
    On the create user form I have an attribute 'date of birth'. By default the date picker outputs date as dd/MMM/yy (23/Mar/09). I would like to define the date format as 'dd month yyyy' (23 March 2009).
    Is this possible
    kind regards,

    1) Please provide the full error message, and snippit of code surrounding the error.
    2) TO_CHAR ( SYSDATE, 'Mon, DD' ) -- Read about TO_CHAR
    3) Read about SYSTEM TRIGGERs
    http://technet.oracle.com/docs/products/oracle9i/doc_library/901_doc/appdev.901/a88876/adg13trg.htm#431
    CREATE OR REPLACE TRIGGER someTriggerName
    AFTER LOGIN ON ([someSchemaName.]SCHEMA or DATABASE)
    DECLARE
    BEGIN
        -- Run procedure here User name is in SYSTEM
        --  variable LOGIN_USER.
    END;Good Luck,
    Eric Kamradt

Maybe you are looking for

  • How to get data of tabulated text file into internal table

    hi all, i want to get data from tabulated text file(notepad) into internal table. i searched in SCN and got lot of post regarding  how to convert excel file into internal table but i didnt get posts regarding text file. thanks SAchin

  • Step User Decision and Approval of Purchase Order

    Hello All, I have created a workflow with step user decision and also attached the object BUS2012 to display from SAP Inbox. But is there a way i can attached the object that would show the approval screen when the work item is executed, and also sen

  • How to deploy a JMF so it doesnt need any installation on the client?

    Hello Friends Im a working on media player applet and found out that it works fine on computers with the JMF installed, however I want to make it available so there is no need for anyone to download any extra packages. Using Netbeans 6 and thought in

  • Suggest double byte characters

    Hello, I am running one concurrent program that generates output In the output china characters are coming i want to replace with the double byte characters. Thanks in advance Cheers.

  • HT5902 how to I put in my iCloud so they do not delete

    I am new to this Icloud thing and have about 10 questions so let me start here. If photos are in my stream, how do I put the photos in my cloud? I know they delete after 30 days or 1000 photos which ever is first. But I am not good about syncing thin