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

  • 0
    Liked

    DB2 health script

    This script runs across all DB2 servers every morning and creates a report. It’s a quick way of getting DB2 health status, in my inbox. I open the report in my Blackberry , while travelling into work. It doesn’t replace Monitoring, which deals with thresholds being met . The script runs as par......

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

    Plink and DB2

    Connecting from Windows to Linux is possible with plink.exe Plink is part of the PuTTY toolkit. Plink is the command line interface to the PuTTY backend. One of the interesting methods to apply is connecting to DB2 on Linux. In the example below the plink command is : a connection made to Linu......

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

    Restricted user on database after restore

    After a restore on a database – I saw a (resticted user ) next to a database. Solved the problem by: ALTER DATABASE mydatabase SET SINGLE_USER WITH ROLLBACK IMMEDIATE GO ALTER DATABASE mydatabase SET MULTI_USER GO Republished from http://www.sqlserver-dba.com.......

    Jack Vamvas  Posted on Jan 22 2011 7:00AM
    Profile · Blog · Twitter
  • 0
    Liked

    Shrink tempdb without sql server restart

    Despite best efforts to size a tempdb, on occasions the tempdb expands to a size as big as the drive. Because the drive is full the tempdb can no longer expand. This triggers a situation in a monitoring framework. A quick solution is required, to shrink down the tempdb. Following are 2 different met......

    Jack Vamvas  Posted on Jan 13 2011 8:07AM
    Profile · Blog · Twitter
  • 0
    Liked

    SQL Server query plans in cache

    If you want to view the objects within the cache use the query below. This will give you an insight into how optimizer and storage engine reached the plan. SELECT [qpc].[refcounts] , [qpc].[usecounts] , [qpc].[objtype] , [st].[dbid] , [stx].[objectid] , [stx].[text] , [qpl].[query_plan] F......

    Jack Vamvas  Posted on Jan 7 2011 6:57AM
    Profile · Blog · Twitter
  • 0
    Liked

    Last time a stored procedure was executed

    Quite often, this question appears on forums or on various jobs."Is there any way that I can tell when a stored procedure was last executed or who executed it? Is there any execution history that I can look at?" The following query will assist in telling you what time a stored procedure was last ex......

    Jack Vamvas  Posted on Dec 27 2010 7:30AM
    Profile · Blog · Twitter
  • 0
    Liked

    SQL Server Update Statistics with FULL SCAN

    Sometimes you just need a quick method to update all statistics of every table. The script below will apply a FULL SCAN, so I wouldn't recommend that you use this as regular maintenancce task . There are other command options for sp_MSforeachtable exec sp_MSforeachtable @command1 = 'print ''Proc......

    Jack Vamvas  Posted on Aug 31 2010 6:52AM
    Profile · Blog · Twitter
  • 0
    Liked

    SQL Server - sp_MSforeachtable

    This is an undocumented stored procedure. It's found in the master db and accepts the following input parameters.It returns one (or greater ) rows for every table. Each table has it's own resultset. I find it useful for managing a process such as a sql server rapid tuning for an emergency performan......

    Jack Vamvas  Posted on Aug 26 2010 7:03AM
    Profile · Blog · Twitter
  • 0
    Liked

    Table sizes and percentages

    Useful script that returns all user tables in a database: sizes and percentages of totals ############START################# ------------------SCRIPT ----------START------------------------- -- Create the temp table for further querying CREATE TABLE #temp( tbl_id int IDENTITY (1, 1), tbl_nam......

    Jack Vamvas  Posted on Apr 9 2010 5:57AM
    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]