Last active
August 29, 2015 14:06
-
-
Save ffabreti/fdcd415d74d9f38f4df1 to your computer and use it in GitHub Desktop.
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
-- conectar via FreeTDS | |
TDSVER=7.1 tsql -H <serverName> -p 1433 -U <domain>\\<user> -P `cat pass.txt` | |
-- fim de comando | |
go | |
-- selecionar o banco | |
use <dbname> | |
-- info sobre tabela | |
sp_help <table> | |
-- info sobre espaço da tabela | |
sp_spaceused <table> | |
-- nomes das tabelas | |
SELECT * FROM information_schema.tables | |
-- executar um comando para cada tabela no DB: | |
sp_msforeachtable 'EXEC sp_spaceused [?]' GO | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment