Just a day ago while playing with SQL Server I suddenly faced a new kind of error, which I have never seen before. This error happens when clicked on New Query in SQL Server Management Studio. Let us learn in this blog post how we will fix the error – cannot find template file for a new query.Â
SQL SERVER – Find All The User Defined Functions (UDF) in a Database
Following script is very simple script which returns all the User Defined Functions for particular database. USE AdventureWorks; GO SELECT name AS function_name ,SCHEMA_NAME(schema_id) AS schema_name ,type_desc FROM sys.objects WHERE type_desc LIKE '%FUNCTION%'; GO Reference : Pinal Dave (https://blog.sqlauthority.com)
Read MoreSQL SERVER – Find Great Job with Great Pay
One question I have been asked consistently “Where can I find Great Job with Great Pay related to SQL Server?”. I have been aware of the fact that there are many jobs in market but finding one job which gives satisfaction in job as well has great salary are few.…
Read MoreSQL SERVER – Top 10 Best Practices for SQL Server Maintenance for SAP
Top 10 Best Practices for SQL Server Maintenance for SAP By Takayuki Hoshino SQL Server provides an excellent database platform for SAP applications. The following recommendations provide an outline of best practices for maintaining SQL Server database for an SAP implementation. 1) Perform a full database backup daily 2) Perform…
Read MoreSQLAuthority New – O’relly Style Book Cover for SQLAuthority
Yo Ming, Chin regular reader from Los Angeles, CA has sent me following image for SQLAuthority. Checkout O’reillymaker and create your own Book Cover. Reference : Pinal Dave (https://blog.sqlauthority.com) , O’reillymaker
Read MoreSQLAuthority News – Book Review – Beginners Guide to SQL Server Integration Services Using Visual Studio 2005
Beginners Guide to SQL Server Integration Services Using Visual Studio 2005 (Paperback) by Jayaram Krishnaswamy (Author) Link to Amazon Short Summary: SQL Server Integration Services Using Visual Studio 2005 contains all the information and education needed for one to begin with SSIS. It covers all the basic concepts in depth…
Read MoreSQLAuthority News – SQL Joke, SQL Humor, SQL Laugh – Funny Quotes
Following is the collection of some funny quotes regarding computers. Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. Rich Cook. UNIX is basically a simple operating…
Read MoreSQLAuthority News – Microsoft SQL Server 2000 MSIT Configuration Pack for Configuration Manager 2007
Microsoft SQL Server 2000 MSIT Comprehensive Configuration Pack for Configuration Manager 2007 This configuration pack contains configuration items intended to manage your SQL Server 2000 server roles, and was developed based on settings used by Microsoft IT in the configuration of these server roles. Microsoft SQL Server 2000 MSIT Intermediate…
Read MoreSQL SERVER – 2005 – Database Table Partitioning Tutorial – How to Horizontal Partition Database Table
I have received calls from my DBA friend who read my article SQL SERVER – 2005 – Introduction to Partitioning. He suggested that I should write a simple tutorial about how to horizontal partition database table. Here is a simple tutorial which explains how a table can be partitioned.


