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 – 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

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

    Nic Teaming

    Network card teaming or NIC teaming are networking terms describing methods of combining multiple parallel network connections . The main purposes are 1) increasing throughput beyond a single connection and 2) redundancy. The three main teaming configurations Network Fault Tolerance (NFT) 1) ......

    Jack Vamvas  Posted on Dec 14 2011 12:00AM
    Profile · Blog · Twitter
  • 2
    Liked
    1
    Comments

    SQL Traces and c2 auditing are different

    Sometimes end users interchange the terms : C2 auditing and Traces. They server different purposes. c2 auditing records all attempts (successfull and failed) on objects and statements. Typically a SQL Server DBA will use a c2 audit to monitor security compliance . A trace will will monitor an even......

    Jack Vamvas  Posted on Dec 12 2011 12:00AM
    Profile · Blog · Twitter
  • 0
    Liked

    DB2 MAXFILOP

    While troubleshooting a DB2 performance problem for Websphere Portal 6.1.0 using DB2 9.5 Enterprise Edition , one of the DB2 tuning recommendations from the Portal Tuning guide was to set MAXFILOP = 512 or higher MAXFILOP is the Maximum database files open per application configuration para......

    Jack Vamvas  Posted on Dec 12 2011 12:00AM
    Profile · Blog · Twitter
  • 1
    Liked

    SQL Database Status with sys.databases

    I was creating a Powershell script for a SQL Server checkout procedure after a reboot , and used the state_desc column in sys.databases view to report on the database status. The descriptions, courtesy of BOL are: ONLINE - Database is available for access RESTORING – One or more files are......

    Jack Vamvas  Posted on Dec 9 2011 12:00AM
    Profile · Blog · Twitter
  • 1
    Liked

    DB2 DB2_RR_TO_RS environment variable

    The Environment Variable DB2_RR_TO_RS enables\disables the Repeatable Read attribute. I's enabled for DB2 performance purposes DB2 registry parameter DB2_RR_TO_RS is used to: Set a default isolation level for user tables to Read Stability (RS) isolation level. The RS level is not dissimilar to......

    Jack Vamvas  Posted on Dec 8 2011 12:00AM
    Profile · Blog · Twitter
  • 0
    Liked

    DATEADD and variables in SQL

    To make the T-SQL function DATEADD more dynamic use variables. The example below, accepts an input parameter, in this case “4”. All events older than 4 months from now will be deleted. DECLARE @months int SET @months = 4 DELETE FROM [Events] WHERE [EventDate] Republished from http://www......

    Jack Vamvas  Posted on Dec 6 2011 12:00AM
    Profile · Blog · Twitter
  • 0
    Liked

    DB2 SQL2033N and TSM reason code 106

    When executing a DB2 backup command, an error message appeared db2 backup db MyDB online use TSM include logs SQL2033N An error occurred while accessing TSM during the processing of a database utility. TSM reason code: "106". Accoring to the ibm infocentre The specified file is being u......

    Jack Vamvas  Posted on Dec 3 2011 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]