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 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
  • 1
    Liked

    SQL SERVER DISABLE INDEX

    Use the script below to disable an index on a SQL Server table ALTER INDEX MY_INDEX_NAME on MY_TABLE_NAME DISABLE; Executing the code will prevent access to the index. If it’s a CLUSTERED INDEX, the data remains intact on the table, but no DML can access the data. Drop the index or rebuild......

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

    Websphere Portal and DB2 tuning

    Tuning DB2 is critical if Websphere Portal is the main client. In larger Websphere Portal architectures, where load balancing is standard, this become obvious. Follow these general guidelines to achieve faster response times on Portal requests. These guidelines don’t replace baselining\monitorin......

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

    Querying Bufferpools DB2

    When a DB2 database starts the total memory required for the bufferpools must be available. If this memory is not available when a database starts, the database manager will only start with system buffer pools (one for each page size) with a minimal size of 16 pages, and an SQL1478W (SQLSTATE0162......

    Jack Vamvas  Posted on Jan 1 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]