Skip to content

Instantly share code, notes, and snippets.

database analysis discussion points

  1. what is the growth of the top tablespaces over time?
  2. why are they keeping 1 year of data in the billing system?
  3. are there tablespace files that are less than 64 GB?
  4. we have to find out what these tablespaces are being used for
  • are the tables and indexes used in temporarily during bill runs and then cleaned out?
  1. what are the current memory settings?
  • pga
  • sga
public class Example {
private Api api;
@BeforeClass
public static void setupApi() {
api = new Api();
}
@Before
# inetorgperson.schema -- InetOrgPerson (RFC2798)
# $OpenLDAP: pkg/ldap/servers/slapd/schema/inetorgperson.schema,v 1.18.2.5 2010/04/13 20:23:48 kurt Exp $
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2010 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted only as authorized by the OpenLDAP
## Public License.
# attributetype ( 1.2.840.113556.1.4.750 NAME 'groupType'
# SYNTAX '1.3.6.1.4.1.1466.115.121.1.27' SINGLE-VALUE )
# attributetype ( 1.3.114.7.4.2.0.33 NAME 'memberOf'
# SYNTAX '1.3.6.1.4.1.1466.115.121.1.26' )
# attributetype ( 1.2.840.113556.1.4.656 NAME 'userPrincipalName'
# SYNTAX '1.3.6.1.4.1.1466.115.121.1.15' )
# attributetype ( 1.2.840.113556.1.4.52 NAME 'lastLogon'
Initializing
Command-line options: --gruntfile=C:\atom\build\Gruntfile.coffee, --verbose, --no-color
Reading "Gruntfile.coffee" Gruntfile...OK
Registering Gruntfile tasks.
Registering "grunt-coffeelint" local Npm module tasks.
Reading C:\atom\build\node_modules\grunt-coffeelint\package.json...OK
Parsing C:\atom\build\node_modules\grunt-coffeelint\package.json...OK
Initializing
Command-line options: --gruntfile=C:\atom\build\Gruntfile.coffee, --verbose
Reading "Gruntfile.coffee" Gruntfile...OK
Registering Gruntfile tasks.
Registering "grunt-coffeelint" local Npm module tasks.
Reading C:\atom\build\node_modules\grunt-coffeelint\package.json...OK
Parsing C:\atom\build\node_modules\grunt-coffeelint\package.json...OK
PS C:\atom> script/build
Removing envify ✓
Removing humanize-plus ✓
Installing modules ✓
Installing [email protected]
Installing [email protected]
Installing [email protected]
Installing [email protected]
Installing [email protected]
{
"name": "atom",
"productName": "Atom",
"version": "0.95.0",
"description": "A hackable text editor for the 21st Century.",
"main": "./src/browser/main.js",
"repository": {
"type": "git",
"url": "https://github.com/atom/atom.git"
},
class TestCurrency {
public static void main(String[] args) {
double myMoney = 1.03;
double moneyOwed = .42;
System.out.println("Money left over: " + (myMoney - moneyOwed));
}
}
namespace :db do
desc "Injects a Ciber file into the database."
task :load_ciber_data, [:file_name] => :environment do |t, args|
require 'csv'
records = []
CSV.foreach("#{args.file_name}", {:col_sep => "|", :headers => true}) do |row|
record = CiberRecord.new