Problem:
Create a column in a table and that should give an error
if we give SELECT * or SELECT of that column
Solution:
Friends, don’t think toooooo much like how to solve this
problem. Here is the simple solution that I got.
Just use any computed column and that should not have
any syntactical errors but it should have logical error (E..g...
Thursday, September 21, 2017
Monday, September 11, 2017
Wednesday, September 6, 2017
How to find and delete the top 100 most used files in Linux/Unix
Chitchatiq
9/06/2017 06:15:00 PM
Problems&Solutions
No comments
Steps to find and delete the top 100 most used files in
Linux/Unix
Command to find most disk space used
files:
find / -xdev -type f -size +100M -exec du -sh {} ';' |
sort -rh | head -n100
Command to delete the content without
removing the file
> <<filename>>
E.g.
>
sample.txt
Here > is used to empty the file
Thanks...
Saturday, September 2, 2017
How to Install MySQL on CentOS 7
Chitchatiq
9/02/2017 02:43:00 PM
MySQL Installation, Problems&Solutions
No comments

Steps to Install MySQL on Linux-CentOS 7
Step 1: Download MYSQL repositories
wget http://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm
Step 2: Prepare repository to install MySQL
sudo rpm -Uvh
mysql57-community-release-el7-9.noarch.rpm
Step...