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
firstname | lastname | username | ||
---|---|---|---|---|
Bill | Gates | [email protected] | bill.gates | |
Steve | Ballmer | [email protected] | steve.ballmer |
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
-- PostgreSql | |
SELECT | |
pg_database.datname AS "Database Name", | |
pg_database_size(pg_database.datname) / 1024.0 / 1024.0 AS "Database Size (MB)" | |
FROM pg_database; | |
-- MySql | |
SELECT | |
table_schema "Database Name", | |
sum( data_length + index_length ) / 1024 / 1024 "Database Size (MB)" |
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
set enc=utf-8 | |
" set fencs=utf8 | |
set ruler | |
set number | |
set autoindent | |
set expandtab | |
set incsearch | |
set shiftwidth=4 | |
set tabstop=4 | |
set showcmd |
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
server.modules = ( | |
"mod_access", | |
"mod_alias", | |
"mod_accesslog", | |
"mod_extforward", | |
"mod_rewrite", | |
#"mod_fastcgi", | |
"mod_proxy", | |
"mod_redirect" ) |
NewerOlder