Mega Code Archive
Search
.Net
ASP .Net
ASP .Net Tutorial
C#
C# Book
C# by API
C# Tutorial
VB.Net
VB.Net by API
VB.Net Tutorial
Visual C++ .Net
VisualBasic Script
Java
Java
Java Book
Java by API
Java Tutorial
Script
Flash ActionScript
Flex
JavaScript DHTML
JavaScript Reference
JavaScript Tutorial
Database
MSSQL
MSSQL Tutorial
MySQL
MySQL Tutorial
Oracle PLSQL
Oracle PLSQL Tutorial
PostgreSQL
Languages
Android
C
C Tutorial
C++
C++ Tutorial
Delphi
Perl
PHP
Python
Python Tutorial
Ruby
Silverlight
Office
MSOfficeExcel 2007 Tutorial
MSOfficePowerPoint 2007 Tutorial
MSOfficeWord 2007 Tutorial
Data
XML
XML Tutorial
MSSQL
Sequence 35 codes
Home
MSSQL
Sequence
1 A procedure that returns all the columns in all the rows on a table
2 Check the existance of a procedure
3 Create procedure with OUTPUT Parameters
4 Created with an IDENTITY property that is set to start at 1,000,000 and decrement by 100 for every row added
5 Execute Stored procedure with the parameter and assigned value
6 Get current IDENTITY value
7 Grant Permission of a procedure to PUBLIC
8 IDENTITY (1, 1)
9 IDENTITY [ (seed , increment ) ]
10 IDENTITY as PRIMARY KEY
11 Identity starting with -1000000
12 If you had two parameters, you could designate them
13 Multiple parameters can be passed in a comma-delimited list in the order they were declared
14 Now you explicitly enter a value for Identity column
15 Parameterization
16 Pass a constant to a function
17 Pass in three parameters
18 Pass in two parameter when calling a procedure
19 Pass variable to procedure output parameters
20 Procedure Based on input value
21 Procedure with two parameters
22 Retrieving the IDENT_CURRENT() Value
23 Returning a Computed Value as a Stored Procedure Output Parameter
24 Returning the Last Identity Value
25 Seed value was negative and the increment was positive
26 Select IDENTITYCOL
27 SQL Server chooses the highest number as its current seed for a positive increment value or the lowest for a negative increment v
28 SQL Server does not allow explicit values to be inserted into it
29 Stored procedure
30 Supplying Default Values
31 UniqueIdentifier
32 Using a Parameter in a WHERE Clause in a procedure
33 Using IDENTITY value
34 Using Identity during data insert
35 Using output parameter to return Values