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

  • 1
    Liked

    DB2 security audit

    $working_dir/$logfile echo "operatation began `date`" $working_dir/$logfile for i in `db2 list db directory | grep 'Database name' | awk '{print $4}'`; do echo "==============================" $working_dir/$logfile ; echo "getting :DB AUTH,USER AUTH,PLAN AUTH for: $i" $working_dir/$logfil......

    Jack Vamvas  Posted on Jan 10 2012 12:00AM
    Profile · Blog · Twitter
  • 1
    Liked

    DB2 – db2sysc and instance status

    For a quick check on the DB2 instance status on Linux use: ps aux | less | grep 'db2sysc' Lists all DB2 instances running on the server. db2sysc is the main DB2 engine Related Posts DB2 health script Author: Jack Vamvas(http://www.dba-db2.com) Republished with auth......

    Jack Vamvas  Posted on Jan 9 2012 1:00AM
    Profile · Blog · Twitter
  • 1
    Liked

    SQL Server –WRITELOG and how to reduce it

    SQL Server Books online defines the wait type WRITELOG as “Occurs while waiting for a log flush to complete. Common operations that cause log flushes are checkpoints and transaction commits. “ A checkpoint writes all SQL dirty pages , currently in the buffer,  onto disk. Transaction commits m......

    Jack Vamvas  Posted on Jan 9 2012 1:00AM
    Profile · Blog · Twitter
  • 1
    Liked

    DB2 – Restore database from a ONLINE backup

    I completed a DB2 backup on server1 with the command: db2 backup db sample online include logs Backup successful. The timestamp for this backup image is : 20120106215500 There was a requirement to RESTORE this database from TSM onto Server2.I logged on to Server2 and checked I could view t......

    Jack Vamvas  Posted on Jan 7 2012 12:00AM
    Profile · Blog · Twitter
  • 1
    Liked

    DB2 and Linux IO testing tools

    Question: I’ve just been handed a new Linux Server build, on a new storage system. The RAID levels are different and the storage parameters have changed. I need to measure the IO performance of the new system and compare to the current system. DB2 will be deployed on these servers, which are ver......

    Jack Vamvas  Posted on Jan 6 2012 1:00AM
    Profile · Blog · Twitter
  • 1
    Liked

    Arithmetic overflow error and isdate sql

    Executing a t-sql statement with a convert function convert(datetime, my_date_column) , threw an arithmetical overflow error with the message : Message Arithmetic overflow error converting expression to data type datetime. [SQLSTATE 22003] (Error 8115) The statement has......

    Jack Vamvas  Posted on Jan 6 2012 12:00AM
    Profile · Blog · Twitter
  • 1
    Liked

    SQL Server Disable Indexes and Rebuild Indexes dynamically

    To generate the ALTER INDEX..DISABLE and the ALTER INDEX..REBUILD statements for all nonclustered indexes for a single table use the following sql statements. Copy and Paste the statements, execute on the database. I’ve included the URL column for easy click through to some notes on the code 1......

    Jack Vamvas  Posted on Jan 5 2012 1:00AM
    Profile · Blog · Twitter
  • 1
    Liked

    DB2 9.5 installation notes

    IBM DB2 documentation is very comprehensive. But I still like create and maintain my own documentation\scripts for repeatable tasks. Installing DB2 should be an efficient process, customised to a particular environment. I maintain all DB2 documentation on the network and my laptop. One of the ma......

    Jack Vamvas  Posted on Jan 5 2012 12:00AM
    Profile · Blog · Twitter
  • 1
    Liked

    SQL SERVER REBUILD INDEX

    Use the script below to rebuild an index on a table ALTER INDEX MY_INDEX_NAME on MY_TABLE_NAME REBUILD; Check SQL Server BOL for a the full list of options Notes 1) Issuing an Index Rebuild request, drops and recreates the index 2) If rebuilding a CLUSTERED INDEX, nonclustered index......

    Jack Vamvas  Posted on Jan 4 2012 1:00AM
    Profile · Blog · Twitter
  • 1
    Liked

    Database Tuning overview – Access Path Tuning

    Part of the Performance Tuning series – Performance Stack, this section looks at Access Path Tuning. How does the user access the data and how can the access be maintained. The purpose of the series is a general approach to Performance Tuning – independent of database server platform. A large ......

    Jack Vamvas  Posted on Jan 4 2012 12:00AM
    Profile · Blog · Twitter
Previous 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | ... Next
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]