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

    SQL Server – How to troubleshoot query timeouts

    Common reasons for query time-outs are : 1) The application starts using a query not optimal for the index 2) Hardware changes\ Configuration changes 3) Increased load If you suspect the query time-out is due to memory issue , continue reading. Debugging a query-timeout is tricky. I......

    Jack Vamvas  Posted on Mar 4 2012 12:00AM
    Profile · Blog · Twitter
  • 0
    Liked

    sql server scripts and managing databases

    Managing a large SQL Server inventory requires an efficient management processes. Following on from DBA productivity and less is more , this post outlines the system I use to manage the DBA scripts across the database server environment 1) Develop a script library covering the essentials ......

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

    SQL Server Agent Job Steps

    To list a SQL Server Agent Job Steps use the T-SQL example below. This example displays the step id, SQL Server Agent Job name, Step name. The code has 1 input parameter - @job_name DECLARE @job_name VARCHAR(128) SET @job_name = 'My SQL Server Agent Job' SELECT js.step_id ,j.name,js.step_name F......

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

    DB2 – verify DB2 is available

    This article describes some methods of checking DB2 is running on a Linux Server Method 1 Log onto the server and execute db2start as the instance owner. If the instance is running you’ll see , something like: 02/10/2012 23:36:14 0 0 SQL1026N The database manager is already active......

    Jack Vamvas  Posted on Feb 13 2012 12:00AM
    Profile · Blog · Twitter
  • 1
    Liked
    1
    Comments

    SQL Server – COPY TABLE from another SQL Server

    To copy a table from another SQL Server Instance is easy. Create a Linked Server on the destination server and reference the Linked Server in the SELECT statement. 1) Create linked server /****** Object: LinkedServer [SERVER1\SQL_SERVER_INSTANCE_1] Script Date: 02/02/2012 09:29:33 ******/ EX......

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

    SQL Server – Send email using Powershell

    This article explains how to send an email through Powershell. Very useful if you have a requirement to automate your scripts and send notifications . The example is calling the SmtpClient Class , which is part of the .Net Framework. You can call a Function – which makes your scripting ......

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

    DB2 – Run script on Linux start

    A quick method to use for executing a script on Linux start. After all the other processes are started by the init command at boot time, the script is run on Red Hat based systems: /etc/rc.d/rc.local Add any extra script\commands references to this file. See Also db2start at st......

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