ORA-28001: The Password has Expired

Recently, I logged into an old DB user that I had created on my desktop after quite some time. It was an older version of our software and so when the Services team reported a bug, I wanted to spin

Continue Reading →
Happens when try to compile OpenCV for MinGW C++ windows.

Following this post http://code.opencv.org/issues/4087, we must to change in file window_w32.cpp by inserting these in code:

#ifdef __GNUC__
#  pragma GCC diagnostic ignored "-Wmissing-declarations"
#endif
//Insert here
#if (_WIN32_IE < 0x0500)
#pragma message("WARNING: Win32 UI needs to be compiled with _WIN32_IE >= 0x0500 (_WIN32_IE_IE50)")
#define _WIN32_IE 0x0500
#endif
//End inserting

Then run mingw32-make again.

Compile and Config OpenCV for Eclipse C++

The steps are: Download CMake and install it (in the installation wizard choose to add CMake to the system PATH). Download the 'release' version of OpenCV. Extract the archive to a directory of your choice. I will be using c:/opencv/. Launch CMake GUI. Browse

Continue Reading →

SQL Developer’s PL/SQL Debugger and Oracle 12c

The PL/SQL Debugger works pretty much out of the box when used with a previous Oracle version. These are the things we needed in place before we could start debugging PL/SQL: A grant of the DEBUG CONNECT SESSION privilege. EXECUTE

Continue Reading →

Lesson Learnt When Using Git To Manage Your Souce Code In .NET project

1. Files should not commit: - *.suo - *.user - *.sln.docstates - Bin folder - Obj/Debug folder 2. Always do clean project before commit code to avoid to generate dll file in bin folder 3. Use gitIgnore file, create manually

Continue Reading →

Get Raw SOAP Data

When use SOAP methods, you may consider that it's really difficult to see the exact data come out or come in the SOAP method. This is a way to get them. Step 1: Create new classs public class SoapLoggerExtension :

Continue Reading →

HOW TO RESOLVE “SQLCLRPROVIDER NOT FOUND” WITHOUT INSTALLING SQL SERVER ON THE CLIENT MACHINE OR NEEDING A DEPLOYMENT PROJECT

While working on a project I needed to start and stop SQL jobs via a web application, this worked great on my local machine but as soon as I published to the client web server I started getting SQLClrProvider not

Continue Reading →