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

    Factors that can delay Log Truncation – LOG BACKUP

    When log records remain active for a long time – truncation can be delayed. The delays can cause the transaction logs to fill. This can lead to a Error 9002 In the Full Recovery mode , a Log Backup will delete the commited transaction log records. In the Simple Recovery , it’s after a......

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

    SQL Server – Backup to NUL trick - read throughput

    A neat test for read speed backup throughput is to use the Backup to NUL . NUL is a special “file”. It's as a nul device , anything “written” to it is discarded.Don’t confuse with the SQL reserved word NULL. Before you run this statement , note that even as the file is not going anywhere , SQL Se......

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

    Detach and Offline for moving databases

    Some SQL Server DBA use offline, others Detach in moving databases. I use either, depending on the situation. If replication is involved I use the Offline method. Others I use Detach\Attach. Be mindful that both methods will attempt to close the database cleanly, and close the handles. And if usin......

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

    RESTORE VERIFYONLY

    Depending on the time available – I will normally commit a RESTORE VERIFY ONLY on a backup. With the statement: RESTORE VERIFYONLY FROM DISK = ‘E:\backuppath\mydb.bak’ I’m not advocating that RESTORE VERIFYONLY – will 100% guarantee that your database has full data......

    Jack Vamvas  Posted on Feb 2 2011 5:39AM
    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
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]