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
Key Bingings - Eclipse / Spring Source Tool Suite | |
Source: http://zeroturnaround.com/rebellabs/top-java-ide-keyboard-shortcuts-for-eclipse-intellij-idea-netbeans/ | |
Eclipse STS | |
SEARCH | |
Find Usages ⌘ + Shift + G ⌘ + Shift + G | |
Find / Replace in file ⌘ + F ⌘ + F | |
Find / Replace in projects Ctrl + H Ctrl + H | |
Find next ⌘ + K ⌘ + K |
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
----- Esc ----- | |
Quick change directory: Esc + c | |
Quick change directory history: Esc + c and then Esc + h | |
Quick change directory previous entry: Esc + c and then Esc + p | |
Command line history: Esc + h | |
Command line previous command: Esc + p | |
View change: Esc + t (each time you do this shortcut a new directory view will appear) | |
Print current working directory in command line: Esc + a | |
Switch between background command line and MC: Ctrl + o | |
Search/Go to directory in active panel: Esc + s / Ctrl + s then start typing directory name |
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
`cd $(dirname $0) && pwd` |
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 | |
t .NAME AS TableName, | |
i .name as indexName, | |
p .[Rows], | |
sum(a .total_pages) as TotalPages , | |
sum(a .used_pages) as UsedPages , | |
sum(a .data_pages) as DataPages , | |
(sum( a.total_pages ) * 8) / 1024 as TotalSpaceMB, | |
(sum( a.used_pages ) * 8) / 1024 as UsedSpaceMB, | |
(sum( a.data_pages ) * 8) / 1024 as DataSpaceMB |
NewerOlder