Cloud Photo

Azure Data Architect | DBA

  • SQL Server: Kill All the SPIDs

    Sometimes, we need to take a SQL Server database offline. After notifying the users and giving them plenty of warning, they leave connections to the database – some connections are SLEEPING or AWAITING COMMAND, others have select statements that have been running for over four hours. I use the following sql to kill off all…


  • BI Publisher Report Shows ‘No Data Found’

    A report in Oracle BI Publisher Enterprise v11.1.1 returned “No data found.” for all elements in the report when viewed by guests and administrative users. The report used several data sources and only worked for the sysman user. The problem data source turned out to be the default data source, EMREPOS, which stores all of…


  • Intro: SSO for EBS R12

    There are four essential components to enabling Active Directory (AD) logins to Oracle EBS R12 including: Identity Management (IDM), Unified Directory (OUD), Access Manager (OAM) and Access Manager WebGate. Only the WebGate is installed on the EBS application tier. IDM uses Directory Integration Platform (DIP) to integrate AD users into OUD. OAM handles requests from the WebGate…


  • This Blog is NOT Dead

    In case you were wondering, I am still here. I have been busy with an Oracle EBS upgrade to R12.2 for the past year. While there has been a drought of articles here, I have several in progress for installing and integrating the new Oracle Universal Directory (OUD) with Oracle Directory Integration Platform (ODIP) and…


  • Node.js + Express + Redis = Web Service

    The goal is to provide real-time information from Redis Cache via Node.js to web clients. The data include temperature, ozone levels and humidity, collected from devices in various regions. A sample record: key: be65-429a-8706a:region2 value: [{“id”:”be65-429a-8706a:region2″,”x”:175.1319,”y”:174.3768,”ts”:”Thu Oct 15 2015 14:03:33 GMT+0000 (UTC)”,”temp”:”32.7″,”humidity”:”87.2″,”o3ppm”:”0.420″}] For this demonstration, I used openSUSE 13.2 x86-64 on a single core VM with…