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

    Move MDF/LDF files to a designated path

    Even though I'd prefer to Backup a database and then move, often a third party supplier will need it as a MDF or LDF, which they then will have a script to reattach. The main steps are: Detach DB Move to designated path ReAttach DB 2 input parameters: Name of DB on SAN, targeted path The......

    Jack Vamvas  Posted on Sep 19 2008 6:56AM
    Profile · Blog · Twitter
  • 0
    Liked

    Space Integrity Check

    There was a requirement to allow non -technical users, to manage archiving their databases on a SQL Server 2005 platform. They wanted to have the capacity to move the databases from a SAN drive to SATA drive, but they continued to have a problem regarding space on the destination drive. In oth......

    Jack Vamvas  Posted on Sep 3 2008 6:59AM
    Profile · Blog · Twitter
  • 0
    Liked

    List all SQL Server users

    I'm investigating how to set up a monthly report and return all users on a given SQL Server to a spreadsheet. I will then forward this spreadsheet to all the application owners, who need to "sign off" the users. It's like a monthly housekeeping exercise. The script below (SQL Server 2005), ident......

    Jack Vamvas  Posted on Aug 21 2008 7:10AM
    Profile · Blog · Twitter
  • 0
    Liked

    BackUp All Databases

    Sometimes I just need to backup all the dbs in a situation of moving the databases to another server. The script below is both 2000 and 2005 compatible. You might want to consider adding the COPY keyword if you are using the script in 2005. This will deal with the problem of adhoc backups brea......

    Jack Vamvas  Posted on Aug 20 2008 7:17AM
    Profile · Blog · Twitter
  • 0
    Liked

    Full Text rebuild

    Below is a typical set of commands to do a full text rebuild. Quite often, in an emergency you might need to do a MS Search Services restart. If the server is being hit by other resources, consider doing a incremental build USE GO EXEC sp_fulltext_catalog '', 'rebuild' GO EXEC sp_fulltext_ca......

    Jack Vamvas  Posted on Aug 25 2007 6:37AM
    Profile · Blog · Twitter
  • 0
    Liked

    Index Usage

    Use this to track indexes retrievable but not used. select object_id, index_id, user_seeks, user_scans, user_lookups from sys.dm_db_index_usage_stats order by object_id, index_id ---All indexes which haven’t been used yet can be retrieved with the following statement: select object_na......

    Jack Vamvas  Posted on Jun 25 2007 6:49AM
    Profile · Blog · Twitter
  • 0
    Liked

    OpenXML - more than 8000 characters

    An excellent script to deal with XML documents that are greater than 8000 characters Use it like: DECLARE @hDoc int EXEC usp_OpenXML_From_File 'c:\myXMLfile.xml', @hDoc OUTPUT SELECT * FROM OPENXML(@hDOC, '/rss/channel/item',2) WITH ( title varchar(200), link varchar(400), descripti......

    Jack Vamvas  Posted on Mar 26 2007 7:01AM
    Profile · Blog · Twitter
  • 0
    Liked

    SQL Server Log Check

    Returns records form the error log based on search terms DECLARE @SERVER NVARCHAR(50) SET @SERVER = 'SERVER1\INSTANCE' DECLARE @sqlStatement1 VARCHAR(200) SET @sqlStatement1 = @SERVER + '.master.dbo.xp_readerrorlog' CREATE TABLE #Errors (vchMessage varchar(2000), ID int) --CREATE INDEX idx_m......

    Jack Vamvas  Posted on Mar 19 2007 7:03AM
    Profile · Blog · Twitter
  • 0
    Liked

    SQL Server Database size Check

    SQL Server database and file size is returned in this script, compared to total and free disk space. It also displays the number of Kb that each database file will grow by on the next extend. /****************************************************************** * * SQL Server Disk Space Check ......

    Jack Vamvas  Posted on Mar 17 2007 7:04AM
    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]