Wednesday 6 January 2016

Find Columns Name in the MSSQL DataBase

Hello Fellas,

Today I'm sharing the learning to how to find the column whose table name is unknown to us.

here is the query,


select * from INFORMATION_SCHEMA.COLUMNS where COLUMN_NAME like '%TurnAroundTime%' order by TABLE_NAME

Thank You :)

Sunday 3 January 2016

Uninstall Weblogic 12c in Linux

Hello Fellas,

Today I'm sharing my learning to how to uninstall weblogic 12c from ubuntu.

1. Goto this path. Oracle_Home/oui/bin

2. Execute deinstall.sh







Thank You :)

A Guide to Installing Oracle HR Schema on an Existing Docker Container

  Hi Reader, Today I want to share my learning on how to install Oracle HR schema on a existing docker container. Step 1: Download the verif...