Skip to content

Instantly share code, notes, and snippets.

View vkryukov's full-sized avatar

Victor vkryukov

  • Sunnyvale, CA
  • 22:43 (UTC -07:00)
View GitHub Profile
@vkryukov
vkryukov / database_table_sizes.R
Created March 24, 2014 19:02
Calculate MS SQL database table sizes in R
tables <- SQLQuery("
select TABLE_NAME as table_name
from cs_reporting.information_schema.tables
where table_type = 'BASE TABLE'")
sizes <- rbindlist(lapply(tables$table_name, function(x) SQLQuery(paste0("sp_spaceused [", x, "]"))))
StripKB <- function(x) as.integer(str_replace_all(x, ' KB', ''))
sizes[, reserved := StripKB(reserved)]
library(digest)
LoadRDataIfExists <- function(fn) {
# Calls _fn_ and caches the result on disk, unless the cache already exists
#
# _fn_ should be a function with signature _fn(filename, ...)_
# If cache file exists and is recent, load data from it.
# Otherwise call the original function.
function (filename, ...) {
param.hash = digest(c(fn, list(...))) # Cache file names depends on params/fn def