Archive
Archive for July 28, 2017
Unix useful commands
July 28, 2017
Leave a comment
- ls -lrt
- Tail -10
- Find the biggest file under current mountpointfind . -name “*” -exec ls -l {} \;|awk ‘{print $5}’|sort
- create directories recursively
mkdir -p /dir1/dir2/dir3 - Copy as well as make a compressed copy.
cp -c /file1 /dir/file2.Z - Kill LOCAL sessions before shutdown
kill -9 `ps -ef|grep LOCAL|awk ‘{print $2}’ - removing files date wise
rm ls -l |grep ‘Jul 18’|awk ‘{print $NF}’
Sql Server useful commands
July 28, 2017
Leave a comment
Coming…
Categories: SQL, SQL Server
#Commands, #SQL
Denodo useful Developer Commands/Info
July 28, 2017
Leave a comment
In this area I will be posting Denodo useful commands/tricks. Below are few,
- context (‘querytimeout’ = )
Example:
context ('querytimeout' = '10800000')
Use above syntax at the end of SELECT statement to avoid default timeout which happens usually after 15 minutes.
- DESC VQL VIEW
Use it to get fields names and its data types
- MAP (,’$.Parent1.ChildElementName’)
Useful in SELECT or WHERE clause to get info from JSON column
- Use CTE’s or TEMP tables for intermediate data processing
- Escape character in Denodo is $. Useful when we search data with functions with REGEX
- Denodo Documentation: Select appropriate version. http://help.denodo.com/platform-docs/5.5/
- Support.Denodo.com : For Denodo customers to create case/ticket for questions/issues.
- DBeaver : I like this client tool because you will get to open multiple query windows and in each window you can run multiple commands at same time.
Categories: Data Visualization, Denodo
Data Visualization, Denodo