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 - truncate table

    A very useful approach to clearing down data from tables. This will truncate a specific table, without it being logged. Use with caution! ALTER TABLE schema.table_name activate not logged initially with empty table Republished from http://www.dba-db2.com/.......

    Jack Vamvas  Posted on Feb 9 2010 2:00AM
    Profile · Blog · Twitter
  • 0
    Liked

    All tables row count

    Useful code to gather the rowcount of all tables, worth doing a reindex prior to this code ############START################# SELECT SCHEMA_NAME(t1.schema_id) AS [schema], t1.name AS [table], i1.rows AS [row_count] FROM sys.tables AS t1 INNER JOIN sys.sysindexes AS i1 ON t1.object_id = i1.......

    Jack Vamvas  Posted on Jan 30 2010 6:05AM
    Profile · Blog · Twitter
  • 0
    Liked

    Space used for all databases

    This is a useful script I use to list the space used for all databases on a given sql server EXEC sp_msforeachdb @command1="use ? exec sp_spaceused @updateusage = N'TRUE';" The purpose of passing the argument: @updateusage, is it updates the usage information Republished from http://www.sqlserver......

    Jack Vamvas  Posted on Dec 7 2009 6:06AM
    Profile · Blog · Twitter
  • 0
    Liked

    Quick uninstall of SQL Server 2005 instance

    The following command line brings up all instance names and asks to select an instance and then a few button clicks. C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\ARPWrapper.exe" /Remove Ensure you have backed up registry settings PRIOR to running the code. For more information, chec......

    Jack Vamvas  Posted on Aug 19 2009 6:10AM
    Profile · Blog · Twitter
  • 0
    Liked

    Force connections of a database in DB2

    To force connections of a specific database in DB2, the following will work. db2 connect to MYDB QUIESCE DATABASE IMMEDIATE FORCE CONNECTIONS db2 terminate ---do what you need to do Republished from http://www.dba-db2.com/.......

    Jack Vamvas  Posted on Aug 3 2009 7:41AM
    Profile · Blog · Twitter
  • 0
    Liked

    SQL Server backup review with Powershell

    The BACKUP team requested a report outlining the last backup of every database on every SQL Server instance, covering: full, incremental and log type backups. The idea was to compare this against their schedule, checking for differences. The SQL Server inventory in the organisation is 750 SQL Serve......

    Jack Vamvas  Posted on Jul 21 2009 4:17AM
    Profile · Blog · Twitter
  • 0
    Liked

    sp_spaceused not refreshing

    I ran the command EXEC sp_msforeachdb @command1="use ? exec sp_spaceused" which returned all the relevant information per database on a SQL Server instance I was troubleshooting. On the basis of the information I adjusted one of the db sizes. I then ran the same command and notices that the info......

    Jack Vamvas  Posted on Jan 21 2009 4:25AM
    Profile · Blog · Twitter
  • 0
    Liked

    Rename a DB2 database

    Rename a DB2 database with these instructions. 1.) Create a configuration file, e.g MYCONFIG.CFG: DB_NAME = OLDDB, NEWDB DB_PATH = provide the path INSTANCE = provide the instance NODENUM = 0 2.) Save the configuration file as relocate.cfg 3.) use the following command to make the changes to ......

    Jack Vamvas  Posted on Jan 9 2009 7:48AM
    Profile · Blog · Twitter
  • 0
    Liked

    ole automation configuring for SQL Server 2005

    There was a requirement to allow Ole Automation Procedures within SQL Server 2005, this code will enable the feature. -------------------CODE START------------------------ sp_configure 'show advanced options', 1; GO RECONFIGURE; GO sp_configure 'Ole Automation Procedures', 1; GO RECONFIGURE......

    Jack Vamvas  Posted on Jan 8 2009 4:53AM
    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]