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 Tuning Tables

    Find bottlenecks in DB2 performance is part of maintaining good response times. Here's a useful approach to locating slow query response times. Focusing on scans 1) Run a “user level” workload and check “get snapshot for database” . Add “Rollback statements attempted” and “Commit statements at......

    Jack Vamvas  Posted on Dec 19 2011 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
  • 1
    Liked

    CPU Count

    I document the CPU Count for SQL Server inventory management. Using a powershell script , iterate through all the SQL Servers and capture the CPU count with the following t-sql. ----Returns the logical cpu count on server SELECT cpu_count FROM sys.dm_os_sys_info ----Ratio of the number of lo......

    Jack Vamvas  Posted on Dec 13 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
  • 2
    Liked

    SQL Server Latency

    Latency is the time delay measure in the system. SQL Server can only be as fast as the slowest component in the system. Database servers are particularly sensitive to disk IO speeds. For example, introducing an SVC system may speed up writes, but will add a cost to Reads. Latency is about benchm......

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