Wednesday, October 12, 2011
MSSQL error logs in *nix boxes
#grep "Database mirroring is inactive" ERRORLOG.1
And i saw no output. :-(
I thought its dos2unix which can help me. BUT not!!
#file ERRORLOG.4
ERRORLOG.4: Little-endian UTF-16 Unicode English character data, with very long lines, with CRLF line terminators
grep command couldn’t parse the UTF-16 Unicode file. Hence, the file had to be converted to the format which ‘grep’ can parse.
#iconv -f UTF-16 -t UTF-8 ERRORLOG.1 | grep "Database mirroring is inactive"
And cheers! I am done.
-DK
Tuesday, August 23, 2011
Our new little angel..

"A Precious one,
So small,
and So cute..
Dancing in
her angel feet
Straight from Heaven's
brightest star..
What a miracle
you are! "
- Delighted Parents
Debajit & Nandita
Saturday, August 6, 2011
Recover deleted /var/log/messages
[root@vapdb01 ~]# last
dkataki pts/0 10.152.208.19 Sat Aug 6 20:46 still logged in
dbuser pts/0 10.152.208.19 Sat Aug 6 20:14 - 20:22 (00:08)
dbuser pts/0 10.152.208.19 Fri Aug 5 04:17 - 10:08 (05:51)
This is how I would tackle this situation
[root@vapdb01 ]# df -h | grep /var
/dev/xvda3 3.0G 2.5G 282M 91% /var
[root@vapdb01 ]# cd /var
[root@vapdb01 var]# du -csh .
347M .
347M total
Looks like some file got deleted but some pid is still holding this file --
[root@vapdb01 var]# lsof | grep -i deleted | grep "/var/"
syslogd 1404 root 2w REG 202,3 2230328164 503883 /var/log/messages (deleted)
gpnpd.bin 4948 oracle 17uw REG 202,3 0 31522 /var/tmp/.oracle/ora_gipc_GPNPD_vapdb01_lock (deleted)
ocssd.bin 5013 oracle 17uw REG 202,3 0
That means someone tried to clear /var partition and deleted unknowingly or accidentally a crucial file from the server - and size of the file was - 2.1G+ , good catch but wrong measure by the user i would say!!!
Anyway - time to avert this situation now -
[root@vapdb01 var]# cat /proc/1404/fd/7 > /root/messages.1
[root@vapdb01 var]# /etc/init.d/syslog restart
[root@vapdb01 var]# cd /root/
[root@vapdb01 var]# gzip messages.1
[root@vapdb01 ~]# mv messages.1.gz /var/log/
[root@vapdb01 ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/xvda2 14G 4.5G 8.2G 36% /
/dev/xvda3 3.0G 434M 2.4G 16% /var
..and a happy Ending -This only can someone do who has little knowledge on how UNIX works. Shame!! Is not that why we SA folks are very careful while giving root privilege to normal users?
Monday, May 30, 2011
history
This is how it can be enabled.
Open
~/.bashrc file.
export HISTTIMEFORMAT="%h/%d - %H:%M:%S "
Some of my Favorite key on shell is :
Ctrl + r
Ctrl + p
history -c (Dangerous! It will wipe off entire history) , useful sometime for some victors ^_^ though..!!
Enjoy!
DK
Wednesday, April 13, 2011
Linux send mail attachements
Well i can think of -
- mutt -s "demo email attachement" -a cvs6bld.php debajitkataki@gmail.com < body.txt
- uuencode bgraph.php | mail -s "demo email attachement" debajitkataki@gmail.com < body.txt
- mailx -s "demo email attachement" debajitkataki@gmail.com < cvs6bld.php
However the one with mailx command, is NOT a mime attachment - it's just your file content mixed in to the mail message body. Some e-mail clients will see it and might treat it as a real attachment, so we might be good.
Comments below are welcome- if you have tried some other raw way! :-)
Enjoy!
DK
capture debug log of my bash script
export PS4='$0.$LINENO+ '
exec > /tmp/TTpull.log
exec 2>&1
set -x
This is how I like to capture - now what those above means?
The PS4 i already explained in my previous post. The $0 variable holds the name of the script. $LINENO displays the current line no. within the script. The exec command redirects I/O streams. to a file /tmp/TTpull.log. 2>&1 redirects stderr and stdout. and finally - 'set -x' enables debugging.
Cheers!
DK
Tuesday, March 22, 2011
>/dev/null 2>&1" and "&> /dev/null does the same job
that discards all data written to it)
Background:
We also know the standard streaming conventions: STDIN(0) STDOUT(1) and STDERR(2)
&>filename =
Redirect both stdout and stderr to file "filename."
2>&1
# Redirects stderr to stdout.
# Error messages get sent to same place as standard output.
Now lets analyze:
>/dev/null 2>&1"
: This means that standard output goes to /dev/null and
standard error(2) should get redirected to where your standard output
is going(in our case it is /dev/null)
&> /dev/null
: As explained above, redirect standard output(1) and standard error(2)
to /dev/null
So coders and SA's this is actaully same and dont get(urself) and try
make other confused with this please :P
More you can read here
-DEBA
🔭 First Impression: Exploring Grafana Mimir ... After Years with Thanos! Not an observability( OE ) purist, but I do appreci...

-
RTO = Recovery Time Objective tells how quickly you will able to resume the normal operations back by connecting users to the data. ...
-
Why I started blogging... Well, this is the ultimate question I get asked when I tell people I started a blog! I have taken a lot of time to...
-
Effective Time-management and Time-boxing is a concern for 'always ready people'. Being from a background that I am from, I am...