Latest

  • ‘Who am I’ in Oracle

    Reports information about your current database context select ‘User: ‘|| user || ‘ on database ‘ || global_name,        ‘  (term=’||USERENV(‘TERMINAL’)||        ‘, audsid=’||USERENV(‘SESSIONID’)||’)’ as…

  • Reference torque-classpath not found

    I get the following error when I import KFS database (ant import) Build Failed: database-impex/build.xml:107: Reference torque-classpath not found. Solution: Build with Apache Ant 1.7.1. Do…

  • Creating XML Document with C#

    Here is the sample code to create XML document private XmlDocument createDoc () {         XmlDocument xmlDoc = new XmlDocument();         XmlElement root = xmlDoc.CreateElement(“Root”);             xmlDoc.AppendChild(root);…

  • Key Value pair in C#

     I want to store KEY VALUE pair in C# and being Java developer, I did not find any HashMap class with C#. Here is the…