Do you know about Whatsapp web?
Whatsapp claims that they currently have 500 million users worldwide. That is pretty impressive looking at the good amount of […]
Whatsapp claims that they currently have 500 million users worldwide. That is pretty impressive looking at the good amount of […]
Complete months between two given dates Below script will help in finding the complete months within the 2 given dates.
Script to find complete months between two given dates Read Post »
Complete weeks within two given dates Sometimes we need to find out the complete weeks within two given dates. Below
Script to find the complete weeks within two given dates Read Post »
Best Practices in database programming For any programming language, just writing the code is not well enough. It should be
Importance of Best Practices in database programming Read Post »
SQL Server – RIGHT () function Right():- This function returns the specified number of characters from the Right part of the
LEFT() function in SQL Server Left() Function This function returns the specified number of characters from the left part of
Between function in SQL Server This function is used to select the values within a specified range. These values can
Script to find the missing indexes Performance tuning in SQL is important exercise and index creation is an important part of it.
Data types in SQL Server In relational database, we store data in tabular form where data is divided into columns.
Convert () function in SQL Server Convert () function is used to convert an expression from one data type to another data typeSyntax
One of the important task of any DBA is to find out all the jobs which are failed yesterday. Below
SQL Script to find the list of all the jobs failed yesterday Read Post »
Sometimes we need to find out how many stored procedures contains a given text. Below SQL query can be used
SQL Script to search stored procedures containing a given text Read Post »
Below is the SQL query which can be used to find out the tables which are created or modified on
SQL Script to find the tables created from a given date Read Post »
Sometimes we need to find out the size of the database on a server. Below SQL Scripts can be used
Below query can be used to see the growth size of database files. DECLARE @filename NVARCHAR(1000); DECLARE @bc INT; DECLARE
T-SQL script to find the growth size of database files Read Post »