You are on page 1of 3

Developer edition :

Developer edition is a fully-functional Enterprise edition of SQL Server which has all
limitations removed. ... Licensing for SQL Server 2000 meant that developer edition was free
as long as the use was for development and testing rather than as a production database.

Server Express:
Microsoft SQL Server Express is a version of Microsoft's SQL Server relational database
management system that is free to download, distribute and use. It comprises a database
specifically targeted for embedded and smaller-scale applications.

Definition of SQL Server Express


SQL Server Express is a free version of Microsoft’s primary relational database management system
(RDBMS) – the SQL Server. Essentially, the SQL Server is a database management system that
can be used to store and access the information stored in many different databases. SQL Server
comes with an impressive range of features like business intelligence, reporting, and in-depth
advanced analytics.
The enterprise edition of SQL Server competes against enterprise-oriented systems like Oracle
Database (DB) and MySQL. SQL Server Enterprise comes loaded with features and can be too
expensive for smaller sized companies to maintain. Microsoft does, however, offer SQL Server in
some different editions including:

 SQL Server Enterprise


 SQL Server Business Intelligence
 SQL Server Standard
 SQL Server Web
 SQL Server Express

Which Version of SQL Server Should You Use?

https://www.brentozar.com/archive/2019/01/which-version-of-sql-server-should-you-use/

SQL Server 2012 installation Reporting Services Catalog


error

GO statements:

It is a batch terminator, you can however change it to whatever you want .

GO statement is used as a Batch separator in Sql Server. Batch is nothing but one or more Sql Server
statements sent to the Sql Server engine as one set of statements.
GO [count]

count
Is a positive integer. The batch preceding GO will execute the specified number of times.

SQL Server Identity


Identity column of a table is a column whose value increases automatically. The value in
an identity column is created by the server. A user generally cannot insert a value into
an identity column. Identity column can be used to uniquely identify the rows in the
table.
Syntax:
IDENTITY [( seed, increment)]

Seed: Starting value of a column.


Default value is 1.

Increment: Incremental value that is


added to the identity value of the previous
row that was loaded. The default value 1.
https://www.quackit.com/sql_server/sql_server_2017/tutorial/create_a_database_in_sql_server_2017.
cfm

Create a Stored Procedure in SQL Server:

A stored procedure is a group of SQL statements compiled into one. Stored procedures can include
business logic and other programming constructs
 Accept input parameters (and return multiple values in the form of
output parameters to the calling program).
 Contain programming statements.
 Return a status value to a calling program to indicate success or
failure, and the reason for any failure.

You might also like