Results 1 to 11 of 11
Thread: What is cursor in database?
-
07-15-2011, 08:46 AM #1
Freshman
- Join Date
- Jun 2011
- Location
- Austin, TX
- Posts
- 48
- Thanks
- 1
- Thanked 0 Times in 0 Posts
- Feedback Score
- 0
What is cursor in database?
What is cursor in database?
-
07-15-2011, 10:44 AM #2
- Join Date
- Apr 2008
- Location
- Boston, USA
- Posts
- 13,175
- Thanks
- 744
- Thanked 699 Times in 550 Posts
- Blog Entries
- 4
- Feedback Score
- 4 (100%)
cursor allows you traverse through data records. helps you process the data retrieved.
Free Classified Ads & BUSINESS/PROFESSIONAL SOCIAL NETWORK
-
08-10-2011, 07:12 AM #3
Freshman
- Join Date
- Jun 2011
- Location
- Arlington, Texas
- Posts
- 42
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Feedback Score
- 0
cursor is pre compiled structure query language language use in our development programing.
-
09-17-2011, 09:02 AM #4
Freshman
- Join Date
- Jun 2011
- Location
- Arlington, Texas
- Posts
- 42
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Feedback Score
- 0
Defines the attributes of a Transact-SQL server cursor, such as its scrolling behavior and the query used to build the result set on which the cursor operates. DECLARE CURSOR accepts both a syntax based on the ISO standard and a syntax using a set of Transact-SQL extensions.
-
09-19-2011, 08:06 AM #5
Senior
- Join Date
- Aug 2011
- Posts
- 671
- Thanks
- 0
- Thanked 7 Times in 7 Posts
- Feedback Score
- 0
The Cursors are oe type of database objects used to traverse the results of an SQL query. They point to a certain location within a recordset and allow the operator to move forward
-
09-19-2011, 08:08 AM #6
Senior
- Join Date
- Aug 2011
- Posts
- 671
- Thanks
- 0
- Thanked 7 Times in 7 Posts
- Feedback Score
- 0
Schemas are generally stored in a data dictionary. Although a schema is defined in text database language, the term is often used to refer to a graphical depiction of the database structure.
-
10-25-2011, 01:43 AM #7
Freshman
- Join Date
- Oct 2011
- Posts
- 13
- Thanks
- 0
- Thanked 1 Time in 1 Post
- Feedback Score
- 0
Cursors are database objects used to traverse the results of an SQL query. They point to a certain location within a recordset and allow the operator to move forward (and sometimes backward, depending upon the cursor type) through the results one record at a time. Cursors are often criticized for their high overhead.
-
10-31-2011, 01:26 AM #8
Cursor are generally pointers which points to certain results or actions....It allows simultaneous operations on the records. Go for more study and details at www.neerjasoftwares.com
-
11-09-2011, 12:08 AM #9
Sophomore
- Join Date
- Jul 2011
- Location
- Hamburg
- Posts
- 126
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Feedback Score
- 0
cursors in data base are generally pointers which points to one row at a time.
-
04-03-2012, 02:46 AM #10
Sophomore
- Join Date
- Mar 2012
- Posts
- 144
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Feedback Score
- 0
Cursors is pointer that is used in database.Cursors is used to transfer the data..
-
04-16-2012, 09:30 AM #11
Freshman
- Join Date
- Apr 2012
- Location
- New York
- Posts
- 18
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Feedback Score
- 0
A cursor is a temporary work area created in the system memory when a SQL statement is executed.
A cursor contains information on a select statement and the rows of data accessed by it.
This temporary work area is used to store the data retrieved from the database, and manipulate this data.
Similar Threads
-
Trailing Clock Cursor
By JavaScriptBank in forum JavaScript & AJAXReplies: 0Last Post: 05-10-2010, 08:32 PM -
Dancing Animation Stars Cursor
By JavaScriptBank in forum JavaScript & AJAXReplies: 0Last Post: 05-04-2010, 07:27 PM -
Dancing Animation Stars Cursor
By JavaScriptBank in forum JavaScript & AJAXReplies: 0Last Post: 04-23-2010, 04:40 AM -
Dancing Animation Stars Cursor
By JavaScriptBank in forum JavaScript & AJAXReplies: 0Last Post: 01-14-2010, 06:46 PM -
Flaming Cursor
By himoacs in forum General TalkReplies: 15Last Post: 11-21-2009, 04:24 PM


Reply With Quote

