This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while : | |
do | |
clear | |
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $* | |
sleep 1 | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select | |
database_id as 'Database ID', name as 'Database Name', | |
CASE encryption_state | |
WHEN 0 THEN 'No database encryption key present, no encryption' | |
WHEN 1 THEN 'Unencrypted' | |
WHEN 2 THEN 'Encryption in progress' | |
WHEN 3 THEN 'Encrypted' | |
WHEN 4 THEN 'Key change in progress' | |
WHEN 5 THEN 'Decryption in progress' | |
WHEN 6 THEN 'Protection change in progress' |