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 Disable Indexes and Rebuild Indexes dynamically

    To generate the ALTER INDEX..DISABLE and the ALTER INDEX..REBUILD statements for all nonclustered indexes for a single table use the following sql statements. Copy and Paste the statements, execute on the database. I’ve included the URL column for easy click through to some notes on the code 1......

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

    SQL SERVER REBUILD INDEX

    Use the script below to rebuild an index on a table ALTER INDEX MY_INDEX_NAME on MY_TABLE_NAME REBUILD; Check SQL Server BOL for a the full list of options Notes 1) Issuing an Index Rebuild request, drops and recreates the index 2) If rebuilding a CLUSTERED INDEX, nonclustered index......

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

    SQL SERVER DISABLE INDEX

    Use the script below to disable an index on a SQL Server table ALTER INDEX MY_INDEX_NAME on MY_TABLE_NAME DISABLE; Executing the code will prevent access to the index. If it’s a CLUSTERED INDEX, the data remains intact on the table, but no DML can access the data. Drop the index or rebuild......

    Jack Vamvas  Posted on Jan 3 2012 1: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

    ALTER INDEX permissions

    Developers like to have some control over the development process. An example is index building. Asking a DBA repeatedly for changes to a Development Database might not be the best use of time – for either parties. For example, a developer may want to work over the weekend to finish a Data Impor......

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

    SQL Server non-clustered index checklist

    When to create a SQL Server non-clustered index? How do non-clustered indexes sit with SQL Serrver clustered indexes? It’s not the purpose of this post to describe a SQL Server non-clustered index, which you will find in BOL Firstly, the main differences with betw......

    Jack Vamvas  Posted on May 21 2011 6:35AM
    Profile · Blog · Twitter
  • 0
    Liked

    DB2 database design: physical design is important

    The regular comment passed by DBAs is “90 % of the overall db performance is based on the code written against it”. There is truth to this comment, and large amounts are written on optimising queries on DB2 databases. DB2 database design physical supports logical database design. Th......

    Jack Vamvas  Posted on May 19 2011 7:28AM
    Profile · Blog · Twitter
  • 0
    Liked

    SQL Table variables do not support indexes MYTH

    False. Let’s look at the definition of a table variable: DECLARE @myTableVar TABLE (companyID INT NOT NULL, companySize INT NOT NULL) The constraints allowed on table variables are: PRIMARY KEY,UNIQUE KEY and NULL. A PRIMARY KEY constraint can only be defined if certain criteria are......

    Jack Vamvas  Posted on May 5 2011 6:15AM
    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]