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
    1
    Comments

    Enable XA transactions for SQL Server

    An XA transaction is a global transaction usually covering multiple resources. Use the Microsoft SQL Server JDBC Driver to support the Java Platform based distributed transactions Steps to enable XA transactions 1) Enable MSDTC On Windows 2003 > Start > Run > “dcomconfg” > Expand Componen......

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

    DB2 Database code set

    The DB2 code set value defines the character encoding used by the database. Setting the appropriate value for translation, for example: Euro symbol and DB2 database codeset To get the DB2 database code set value, use: db2 get db cfg for MY_DB --From a command line, such as Putty, db2 get ......

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

    Monitoring a Rollback and sys.dm_exec_requests

    The dynamic management view (DMV) sys.dm_exec_requests returns information about each request that is executing within SQL Server. Instead of using Activity Monitor to view the status of a Rollback, use this T-SQL code. Activity monitor is based on window panes and is cumbersome to export any inf......

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

    DBCC CHECKDB

    Torn Pages \ Corrupt pages – all in a days work for a DBA. But can anyone tell me how to use DBCC CHECKDB and the steps to take if a corrupt page is discovered? This is a typical question I’ll ask at an interview for a DBA. In most cases the answers are vague. My approach on DBCC CHE......

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

    ALTER SCHEMA

    Use this select statement to create a list of ALTER SCHEMA statements for all stored procedures in a SQL Server 2005 database. “dbo” can be changed to whatever schema name required USE myDb GO SELECT 'ALTER SCHEMA dbo TRANSFER ' + s.Name + '.' + p.Name FROM sys.Procedures p INNER JOIN sys.Sc......

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

    SET ARITHABORT ON

    When completing an installation I saw the following error – which stopped the installation. The error occurred during the creation of Indexed View. [2011-10-24 18:21:34.193 02944 error 'App'] A database error occurred: "ODBC error: (42000) - [Microsoft][SQL Server Native Client 10.0][SQL Server]C......

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

    JOIN IN SQL FAQ

    1) What types of JOINS exist? Inner Joins Outer Joins (LEFT JOIN, LEFT OUTER JOIN, RIGHT JOIN, RIGHT OUTER JOIN, FULL JOIN , FULL OUTER JOIN) Cross Joins (aka Cartesian Join) 2) Where are JOINS used? Joins are implemented in either the FROM or WHERE clause 3) Why use JOINS? JOINS are use......

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

    SQL Server Collation

    Instead of just right clicking on SSMS , these are some alternatives to locating SQL Server Collation information I use. --To find all collations available SELECT * FROM fn_helpcollations() --To find the SQL Server Collation level select SERVERPROPERTY('collation') --To find the d......

    Jack Vamvas  Posted on Oct 18 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]