How to Select Employees who have born on last day of the month
How to Select Employees who have born on last day of the month In this article we will learn to how select employees from a SQL Server table whose day of birth is last day of the month. Introduction:...
View ArticleHow to store Date and Time in separate columns in SQL Server 2005
In this article I will explain how to store Date and Time in SQL Server 2005 using User Defined Type Introduction In SQL Server 2008 four new data types were added. Two of them are Date and Time for...
View ArticleConnecting C# application with MySQL database
In this article I will explain how to connect C# application with MySQL database Introduction In this article we will see how to display data in a Windows Forms application from a MySQL database table...
View ArticleHow to write data of an SQL Server table to an XML file using C#
Introduction In this article I will discuss how to write data of an SQL server table to an XML file using C# Description I have an Employees table in Northwind database with some sample data that we...
View ArticleRecursive user defined function in SQL Server
Introduction In this post I will explain how write a recursive user defined function in SQL Server Description Recursive function is a function which calls itself for a certain number of times based on...
View ArticleDownload and Install SQL Server 2014 Express Edition
Introduction In this article I will explain how to install express edition of SQL Server 2014. Step 1: Download SQL Server 2014 Express from following here You need to login to your Microsoft account...
View ArticleBackup SQL Server database using Management Studio
Introduction In this article I will explain how to backup an SQL Server database using SQL Server Management Studio (SSMS) Step 1: Open SQL Server Management Studio Step 2: Login with your credentials...
View ArticleRestore SQL Server database using Management Studio
Introduction Here, I will explain how to restore an SQL Server database from a backup file (.bak) file using SQL Server Management Studio (SSMS) Step 1: Open SQL Server Management Studio Step 2:...
View ArticleSQL Server – Backup database from Command Prompt using sqlcmd command
Introduction Here, I will explain how to backup an SQL Server database from Command Prompt using sqlcmd utility Step 1: Open Command Prompt and type sqlcmd -S localhost\SQLServer2014 -U sa , then press...
View ArticleSQL Server – Restore database from Command Prompt using sqlcmd command
Introduction Here, I will explain how to restore an SQL Server database from Command Prompt using sqlcmd utility. We will use RESTORE DATABASE command to restore the database from a backup (.bak)...
View Article