Click here to Skip to main content
15,891,951 members
Everything / Database Development / SQL Server / SQL Server 2008

SQL Server 2008

SQL-Server-2008

Great Reads

by Wonde Tadesse
This tip/trick helps to set a default value for blob data type such as Image, VarBinary.
by Mubin M. Shaikh
Create time dimension with 24 hour plus values and time buckets in your data warehouse
by Harmen Brouwer
How to create and deploy a SSRS rendering extension, explained by a functional Zip Rendering extension for SSRS 2005, 2008 (R2) and 2012.
by Tecfield
This tip shows how to rename a database and its MDF and LDF files in SQL Server.

Latest Articles

by Mubin M. Shaikh
Walkthrough of the process for one of the industry best practices to export all SQL tables in Flat file format
by Alaa Ben Fatma
Explore your MMSQL server tables in a professional way
by Mahsa Hassankashi
Best approach for having more secure channel to transfer user information throughout the web
by Mahsa Hassankashi
This article enables you to generate table in any database such as Oracle, SQLServer, MySQL, SQLite, Sybase, etc. just by typing table name and its fields. Then you can use NHibernate facilities to make query for data layer.

All Articles

Sort by Updated

SQL Server 2008 

22 Sep 2017 by #realJSOP
It doesn't always happen the way you expect.
27 Nov 2012 by Aadhar Joshi
Creating job in sql server which automates taking backup of all stored procedures and functions in physical drive.
17 Sep 2012 by aasim abdullah
Get all indexes list in detail, with their involved columns
1 Oct 2012 by aasim abdullah
How do you know, if someone disabled your job at production database server. Who is the calprit. How to send a mail alert for this change ??
19 Apr 2013 by aasim abdullah
Restore failure from Enterprise to Standard edition in SQL Server.
2 Oct 2012 by aasim abdullah
Using SQL Server Management Studio, have you ever come a cross following questions: Why every time, a new query window is open with MASTER database.? On opening SQL Server Management Studio, I need a new query window automatically ?
2 Oct 2012 by aasim abdullah
A simple query to get all databases size on a given instance.
19 Apr 2013 by aasim abdullah
Automatic query execution at every instance startup.
20 Oct 2012 by aasim abdullah
How to Refresh Intellisense Cache in SQL Server
19 Apr 2013 by aasim abdullah
The TOP clause is commonly used to get the top required rows from a result set. The beauty of this clause is that it can be used with the WITH TIES clause to retrieve all similar rows to a base result set.
23 Oct 2012 by aasim abdullah
How to use DELETED and INSERTED virtual tables to capture data change in result of any INSERT, UPDATE or DELETE statement.
24 Oct 2012 by aasim abdullah
Backup and then restore of a database is a normal job for developers and DBAs. This script will be helpfull to findout, from which path, and which backup file a database was restored.
1 Nov 2012 by aasim abdullah
A stored procedure can be called from another stored procedure as nested stored procedure. How to get a list of these stored procedures with their nested one
1 Nov 2012 by aasim abdullah
You have place indexes but still queries are slow... are you facing bookmark lookup problem ???
18 Jun 2010 by Alexander Konstantinov
Two stored procedures helping developers do less things when they create tables and indeces
30 Jun 2012 by Ameet Parse
This article describes How to find a Text in Stored Procedure (Checked on SQL Server 2008)
23 Aug 2011 by Anurag Gandhi
I have gone through a lot of examples to sort alpha numeric data in sql. Here is my way:
16 Mar 2012 by Anurag Gandhi
A Query to copy an individual table data between databases
1 Jun 2016 by Aqeeel
Identifying and deleting duplicate records from SQL Server Table
21 May 2014 by Arvind Singh Baghel
Import CSV or txt File Into SQL Server Using Bulk Insert.
3 Dec 2014 by Atul_Kapoor
Perform SQL Server Instance health check simultaneously on more than one server using Powershell
20 Dec 2016 by BharatRamV
Finds the Best Table for a given set of columns
17 Aug 2011 by bmckuhen
14 Jun 2013 by Bojjaiah
Single Stored Procedure for delete/retrieve all table of records
2 May 2012 by Chamila Nishantha
Simple query to get table column name as rows
11 Oct 2011 by Chris Maunder
A quick script to enable you to find the processes that are blocking in SQL server
15 Oct 2011 by Chris Maunder
Here's an alternate version that doesn't use sp_who yet provides a little more information. It also provides the option to kill the blocking processes themself.IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[ListBlocking]') AND type in (N'P', N'PC'))EXEC...
31 Oct 2016 by Chris Maunder
Timing SQL calls with millisecond accuracy
25 Feb 2014 by Darek Danielewski
This article demonstrates how to safely dequeue items from a shared table
5 Jun 2015 by Dathuraj Pasarge
Know whether your databases are backed up successfully in the last 24 hours or not !!!
5 Jun 2010 by db_developer
Split User Defined Function, MS SQL Server 2008
31 Oct 2013 by Debopam Pal
How to bring data from Entity model to Excel file using LINQ.
15 Jan 2012 by Dhol Gaurav
Get Tables List With Its Dependent Tables Names
8 Jun 2015 by Diluka Wittahachchige
Creating SQL Server database project use in Visual Studio 2012 and maintain versions use in TFS
18 May 2010 by Dimitri Witkowski
Recently I had a problem: I was developing a logon trigger for SQL Server, and there was a bug in it. After deploying the trigger to the server he didn't allow me to login anymore. I was in panic and thought I would have to reinstall SQL Server.Fortunately, I've found a solution how to...
19 Feb 2015 by DrABELL
Generate large data series by using Cartesian Product and small data table
25 Feb 2012 by e-Lopes
How to concatenate many rows into a single text string using SQL Server 2008.
15 Mar 2012 by Ganu Sharma
Loop through/split a delimited string.
25 Aug 2016 by Gene R. Browning
Generate random dates (and times if you like) for your test data environment.
3 Dec 2012 by Glagace_7763
Create a table from a Varchar list value
28 Apr 2010 by Gordon Kushner
By using recursion (and CROSS JOINS), you can generate data without looping or hard-coding INSERT statements into a temporary table.In the example below, you can use recursion to generate a week of scheduling data for three employees. -- Count variable, set to 7 for a week's worth of...
14 Feb 2011 by Hajo Messner
There is a little inconsistence in this function, because the @Tokens Elements and the @Delimiter parameter are of data type NVARCHAR (=Unicode) while the @String parameter is of data type VARCHAR (=ANSI). If the @String parameter can be Unicode, it must be declared as NVARCHAR. If the @String...
29 May 2012 by Harsh Gandhi
Generate XML Using FOR XML ; Difference between different modes (AUTO, RAW, PATH, EXPLICIT) of FOR XML to generate XML in SQL Server
13 Jun 2012 by headshot9x
How to create ShoppingCart using Gridview in asp.net with code VB
5 Mar 2010 by Heino Zunzer
The possibility to build stored procedures with table-valued parameters is a great new feature in SQL Server 2008, especially if utilized with the also newly implemented MERGE-command. Alas, there are some restrictions (TVPs have to be bound to a User-defined Table Type, have to be passed as...
26 Oct 2015 by Hernán Hegykozi
This tip will show how to perform a backup and restore database from an application in VB.NET 2010.
6 May 2013 by Hernán Hegykozi
This tip explains how to calculate the Check Digit Vertical (CDV) and Horizontal (CDH) by SQL Server.
5 Jan 2011 by Hiren solanki
Building hirarchy in the sense of hirarchy of manager, employee though both are an employee of an enterprise but both are related or depend on hierarchical level.
1 Sep 2013 by IkhwanKrisnadi
How to solve when saving changes is not permitted on SQL Server 2008 Management Studio
25 Jan 2012 by IkhwanKrisnadi
How to execute SQL Query / SQL Command on SQL Server using command prompt.
8 Feb 2011 by Irfan Baig
String splitting/tokenizing using T-SQL user defined function.
4 Sep 2010 by Jaime Olivares
How to Insert or Update an SqlGeography object in SQL Server 2008 from a C# application
9 Aug 2011 by Jesus Carroll
This brief article show how to install quickly Microsoft SQL Server 2008 Express Edition Standard or with Advanced Services
12 Nov 2013 by Jobless Creature
CTE To find all the related nodes in a hierarcy
17 Feb 2011 by John Gathogo
Catastrophic results associated with unqualified use of columns belonging to tables referenced on main query in a subquery
31 Jul 2014 by Kale Yogesh
How to Partition Table in SQL
7 Aug 2012 by kennysun
encrypt all stored procedures in SQL server with powershell
24 Jul 2013 by Kumar Pankaj Verma
Truncating log file in SQL Server using T-SQL when log file is too large and database becomes unresponsive.
3 Jan 2013 by Levente Kupás
CLR-addon for T-SQL DATE transformation and Split-String
2 Feb 2018 by Luca Astolfi
User defined procedure for make an HTML table from T-SQL Select statment
23 Feb 2012 by Mahmud Hasan
How to use variable in SELECT TOP SQL command
3 Feb 2012 by manish76235
SQLCMD can be used to login to the Sql Server as well. One can only provide Server address, User Name and Password at the command prompt and press enter.The command prompt will change to 1>. Now any sql query can typed and by pressing enter in the next prompt a GO command and pressing enter...
17 Dec 2012 by Mannava Siva Aditya
Uploading an image and displaying it on the UI page
17 Aug 2012 by ManojKumar19
Update row column with another row column in same table SQL only if it is null.
8 Mar 2016 by markkang
This tip describes how to generate insert SQL statement from the records in an existing table in SQL server database
20 Feb 2010 by Md. Marufuzzaman
Get accurate age by date using MS SQL Server
24 Feb 2010 by Md. Marufuzzaman
This is a very simple use of SQL Server global variables. Microsoft SQL Server provides a massive number of global variables, which are very effective to use in our regular Transact-SQL. Global variables represent a special type of variable. The server always maintain the values of these...
8 Jul 2010 by Md. Marufuzzaman
How easy to read a file without using of the seven extended stored procedures.
18 Dec 2015 by Md. Marufuzzaman
This tip shows you an easy way to split Microsoft SQL Server table row data.
18 Dec 2015 by Md. Marufuzzaman
A simple example of Microsoft SQL Server Pad String
23 Dec 2015 by Md. Marufuzzaman
A simple tip/trick to get rows on n’th maximum number from a table
29 Nov 2013 by Mehdy Moini
Implementing a map as a tree, and finding the shortest path, between the streets, is what you will see.
24 Apr 2012 by mkader
SQL scripts to insert File to BLOB field and export BLOB to File
13 Jan 2013 by mparvez
How to load data from an Excel file to load in a dimension table in an incremental way.
20 Jul 2012 by Mr. Joydeep Das
What the effects of Ordering in Index
4 Nov 2013 by Mr.Thursday
SQL script for creating ASP.Net Identity Database
5 Sep 2013 by Mubin M. Shaikh
Manually Run SSRS Scheduled Reports
5 Sep 2013 by Mubin M. Shaikh
Create time dimension with 24 hour plus values and time buckets in your data warehouse
29 Sep 2013 by Mubin M. Shaikh
Create Named Query in Data Source View While Designing OLAP Cube in SSAS
22 Oct 2013 by Muhammad Aqib Shehzad
Forgot Password and Email Check from Database
6 Jun 2013 by Nelson Kosta Souto
Find text in Stored Procedures, View, Trigger, and Function.
14 Mar 2014 by Nikita D. Sinelnikov
HowTo: make the report background (elements) of Microsoft .NET Report (.rdlc) non-printable
18 Jul 2012 by Omar Frometa
Grouping Sets is the new SQL Server 2008 Operator
23 Jul 2012 by Paul M Simpson
Expanding a string by inserting alternating single spaces between characters
13 Dec 2012 by Paw Jershauge
MS SQL system views, mapped over version.
22 Jul 2013 by Paw Jershauge
Want your own movie database??? Download IMDB in 20 minutes.
3 May 2012 by PIEBALDconsult
This is an alternative for "List SQL Server table column name as rows"
7 Jun 2013 by Purushotham Agaraharam
Creating a parameterised report using SSRS.
4 Jan 2013 by RahulAJoshi
Grouping dynamically on different columns in single query
10 Nov 2013 by Rajat-Indiandotnet
A unique feature of SQL SERVER Loop with Go statement
11 Nov 2013 by Rajat-Indiandotnet
Find column or Text in entire stored procedure
24 Jan 2013 by Rajesh Manjarekar
How do I set FileSpec dynamically for looping files in a foreach loop container?
13 Mar 2015 by Rajesh Manjarekar
When CDC is turned ON against a table and the underlying table schema changes, such as adding/removing a column, changing datatype etc
27 Jan 2017 by Rajesh_K_Sharma
How to create CSV file in SQL
18 Dec 2012 by rakesh1503
Writeback and writethrough using C# with SQL Server 2008 SSAS.
10 Feb 2012 by Ramanujam Shankar
Find missing date periods from a table.