Microsoft SQL Server

Snippets


Microsoft SQL Server

Microsoft SQL Server is a relational database management system developed by Microsoft. As a database server, it is a software product with the primary function of storing and retrieving data as requested by other software applications—which may run either on the same computer or on another computer across a network.

NO Image:
17
When running a named instance of MS SQL the instance will run on a port other than the usual port 1433. To determine the port you can use th...

[Read the rest of this article...]

09
INSERT [dbo].[Farming] ( [First Name] [Last Name] Title [Mailing Address] [Mailing City] [Mailing Province/State] [Mailing Postal/ZIP] We...

[Read the rest of this article...]

20
This topic explains how to create a new database from an existing full database backup. Security Note ...

[Read the rest of this article...]

30
Add the helper SPLIT function to your database CREATE FUNCTION dbo.Split ( @List nvarchar(2000), @SplitOn nvarchar(5) )  RETURNS @RtnVal...

[Read the rest of this article...]

SQL, FUNCTION
12
  PROCEDURE GIBS_SEO_Content nvarchar(50) = null   AS BEGIN if (len(@city)=0) begin set @city=null end   SET NOCOUNT ...

[Read the rest of this article...]

Page 3 of 3First   Previous   1  2  [3]  Next   Last