Skip to main content

Posts

Showing posts from July, 2012

Convert Font font-face Supported font free

Dear All Now convert you .ttf font to .svc, oet and .ttf format through online website free http://www.font2web.com/ for converting the font form any font extenshion to ttf use this site http://www.freefontconverter.com/index.php Regards Rashid Imran Bilgrami CEO Best Visualization http://www.bestvisualization.com

Simple script to backup all SQL Server databases

Original Post http://www.mssqltips.com/sqlservertip/1070/simple-script-to-backup-all-sql-server-databases/ Problem Sometimes things that seem complicated are much easier then you think and this is the power of using T-SQL to take care of repetitive tasks.  One of these tasks may be the need to backup all databases on your server.   This is not a big deal if you have a handful of databases, but I have seen several servers where there are 100+ databases on the same instance of SQL Server.  You could use Enterprise Manager to backup the databases or even use Maintenance Plans, but using T-SQL is a much simpler and faster approach. Solution With the use of T-SQL you can generate your backup commands and with the use of cursors you can cursor through all of your databases to back them up one by one.  This is a very straight forward process and you only need a handful of commands to do this.  Here is the script that will allow you to backup each database within your instance