Getting Started with Adobe After Effects - Part 6: Motion Blur

Liked



Upload Image Close it
Select File

Learn about SQL Server DBA, SQL Server database performance,SQL Server optimisation,database tuning,t-sql,ssis
Browse by Tags · View All
DBA Scripts 51
performance 37
SQL Server 29
Object Management 24
#SQLServer 24
Backup and Restore 20
Security Management 20
Powershell 17
Indexes 14
DBA 14

Archive · View All
June 2011 38
January 2011 33
May 2011 32
August 2011 27
July 2011 26
January 2012 24
February 2011 19
April 2011 19
March 2011 17
March 2012 17

Jack Vamvas's Blog

  • 0
    Liked

    Trace sql statements in DB2 database

    Use this process to record all sql statements for a give period of time on DB2. In other words, a trace #connect to db #1-Create event monitor- make sure you've got write permissions to stated folder db2 "CREATE EVENT MONITOR stmon FOR STATEMENTS WRITE TO FILE '/tmp'" #2 Turn on event monitor ......

    Jack Vamvas  Posted on Jan 30 2010 10:36PM
    Profile · Blog · Twitter
  • 0
    Liked

    DB2 - table sizes

    The idea of table sizes in DB2, can spawn into a wide ranging conversation. This is a quicj script tha I use to output the DB2 table sizes, comparing used and allocated space. SELECT char(date(t.stats_time))||' '||char(time(t.stats_time)) AS statstime ,substr(t.tabschema,1,4)||'.'||substr(t.ta......

    Jack Vamvas  Posted on Jan 30 2010 11:00AM
    Profile · Blog · Twitter
  • 0
    Liked

    Linux - find largest files

    Quite often I get a monitoring message stating the drive space is filling, I'll execute some DB2 clean up scripts, but still the problem persists. This little script quicly finds the largest 20 files on a Linux server, execute it from the command line. du -a /my_folder | sort -n -r | head -n 20 ......

    Jack Vamvas  Posted on Jan 30 2010 7:41AM
    Profile · Blog · Twitter
  • 0
    Liked

    All tables row count

    Useful code to gather the rowcount of all tables, worth doing a reindex prior to this code ############START################# SELECT SCHEMA_NAME(t1.schema_id) AS [schema], t1.name AS [table], i1.rows AS [row_count] FROM sys.tables AS t1 INNER JOIN sys.sysindexes AS i1 ON t1.object_id = i1.......

    Jack Vamvas  Posted on Jan 30 2010 6:05AM
    Profile · Blog · Twitter
  • 0
    Liked

    DB2 Health Monitor-Monitor Heap Utilization

    On a production system running DB29.5 on Red Hat Linux 4.6. If you want to keep the health monitor running, you can increase the size of MON_HEAP_SZ to about 2048. But I decided to turn the Health Monitors Off, due to overconsumption of memory. These are OLTP databases. Since I've turned off th......

    Jack Vamvas  Posted on Jan 12 2010 1:46AM
    Profile · Blog · Twitter
  • 0
    Liked

    SQL1768N Unable to start HADR. Reason code = "1".

    I was asked to troubleshoot a problem related to a HADR start. and issued the following db2 command: $ db2 start hadr on db MY_DB as standby I got back the following error description. SQL1768N Unable to start HADR. Reason code = "1". It turns out the the users had attempted to set HADR up wit......

    Jack Vamvas  Posted on Jan 6 2010 2:00PM
    Profile · Blog · Twitter
  • 0
    Liked

    setuid for root and db2start

    I was doing some TSA testing, in preparation for HADR automation and as part of the testing I did a: mv ./sqllib/adm/db2start db2start.mv When trying to reverse the change: mv db2start.mv ./sqllib/adm/db2start the file lost its setuid and I was getting a systenm error The resolut......

    Jack Vamvas  Posted on Jan 6 2010 10:52AM
    Profile · Blog · Twitter
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]