DECLARE CURSOR GLOBAL FOR : Declare Cursor « Cursor « SQL Server / T-SQL Tutorial

SQL Server / T-SQL Tutorial
1. Query
2. Insert Delete Update
3. Table
4. Table Join
5. Data Types
6. Set Operations
7. Constraints
8. Subquery
9. Aggregate Functions
10. Date Functions
11. Math Functions
12. String Functions
13. Data Convert Functions
14. Analytical Functions
15. Sequence Indentity
16. View
17. Index
18. Cursor
19. Database
20. Transact SQL
21. Procedure Function
22. Trigger
23. Transaction
24. XML
25. System Functions
26. System Settings
27. System Tables Views
28. User Role
29. CLR
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL Server / T-SQL Tutorial » Cursor » Declare Cursor 
18. 2. 11. DECLARE CURSOR GLOBAL FOR
6CREATE TABLE Orders (
7>      OrderID int NOT NULL ,
8>      CustomerID nchar (5NULL ,
9>      EmployeeID int NULL ,
10>     OrderDate datetime NULL ,
11>     RequiredDate datetime NULL ,
12>     ShippedDate datetime NULL ,
13>     ShipVia int NULL ,
14>     Freight money NULL DEFAULT (0),
15>     ShipName nvarchar (40NULL ,
16>     ShipAddress nvarchar (60NULL ,
17>     ShipCity nvarchar (15NULL ,
18>     ShipRegion nvarchar (15NULL ,
19>     ShipPostalCode nvarchar (10NULL ,
20>     ShipCountry nvarchar (15NULL
21)
22> GO
1>    CREATE PROCEDURE spCursorScope
2>    AS
3>    DECLARE @Counter      int,
4>            @OrderID      int,
5>            @CustomerID   varchar(5)
6>
7>    DECLARE CursorTest CURSOR
8>    GLOBAL
9>    FOR
10>       SELECT OrderID, CustomerID
11>       FROM Orders
12>
13>    SELECT @Counter = 1
14>    OPEN CursorTest
15>    FETCH NEXT FROM CursorTest INTO @OrderID, @CustomerID
16>    PRINT 'Ro' + CONVERT(varchar,@Counter' has an OrderID of ' +
17>       CONVERT(varchar,@OrderID' and a CustomerID of ' + @CustomerID
18>    WHILE (@Counter<=5AND (@@FETCH_STATUS=0)
19>    BEGIN
20>       SELECT @Counter = @Counter + 1
21>       FETCH NEXT FROM CursorTest INTO @OrderID, @CustomerID
22>       PRINT 'Ro' + CONVERT(varchar,@Counter' has an OrderID of ' +
23>       CONVERT(varchar,@OrderID' and a CustomerID of ' + @CustomerID
24>    END
25>    GO
1>
2>    drop PROCEDURE spCursorScope;
3>    GO
1>
2>    drop table Orders;
3>    GO
18. 2. Declare Cursor
18. 2. 1. The syntax of the DECLARE CURSOR statement
18. 2. 2. A DECLARE CURSOR statement that declares a dynamic local cursor
18. 2. 3. A cursor created in SQL server.
18. 2. 4. INSENSITIVE Cursor
18. 2. 5. Cursor on a Single-Column Key
18. 2. 6. Four cursors
18. 2. 7. Declare a cursor variable to hold the cursor output variable
18. 2. 8. Local scroll cursor
18. 2. 9. DECLARE CURSOR FAST_FORWARD FOR
18. 2. 10. DECLARE cursor LOCAL
18. 2. 11. DECLARE CURSOR GLOBAL FOR
18. 2. 12. Static cursor
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.