<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Is Cursor Database Object or Datatype</title>
	<atom:link href="http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Thu, 09 Feb 2012 11:29:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Raghavendra</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-235258</link>
		<dc:creator><![CDATA[Raghavendra]]></dc:creator>
		<pubDate>Wed, 11 Jan 2012 12:11:17 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-235258</guid>
		<description><![CDATA[CURSOR is an object.]]></description>
		<content:encoded><![CDATA[<p>CURSOR is an object.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Monu Sharma</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-191374</link>
		<dc:creator><![CDATA[Monu Sharma]]></dc:creator>
		<pubDate>Wed, 09 Nov 2011 06:24:56 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-191374</guid>
		<description><![CDATA[&quot;WHILE @@FETCH_STATUS == 0 &quot; correct syntax]]></description>
		<content:encoded><![CDATA[<p>&#8220;WHILE @@FETCH_STATUS == 0 &#8221; correct syntax</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vishal patwardhan (@vishalpatwardha)</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-155702</link>
		<dc:creator><![CDATA[vishal patwardhan (@vishalpatwardha)]]></dc:creator>
		<pubDate>Wed, 10 Aug 2011 07:32:41 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-155702</guid>
		<description><![CDATA[hi Pinal , 
See an example
I&#039;ve two tables 
1)servertable(ServerID,ServerName)
2)NewServerTable(ServerID,ServerName) 

if I use SqlStatement to insert records of servertable into NewServerTable
like this : 
Insert Into NewServerTable 
Select From Server Table.

and If I use Cursor for the same thing like this

DECLARE db_cursor CURSOR FOR  
SELECT SERVERID,SERVERNAME
FROM SERVERTABLE
DECLARE @SERVERID INT
DECLARE @SERVERNAME VARCHAR(20)
OPEN db_cursor  
FETCH NEXT FROM db_cursor INTO @SERVERID,@SERVERNAME  

WHILE @@FETCH_STATUS = 0  
BEGIN  
       FETCH NEXT FROM db_cursor INTO @SERVERID,@SERVERNAME
INSERT INTO NEWSERVERTABLE(SERVERID,SERVERNAME) VALUES (@SERVERID,@SERVERNAME)
END  

CLOSE db_cursor  
DEALLOCATE db_cursor 

I known to this that sqlqueries are much better in performance as compare to Cursor But How? Please give me explanation.]]></description>
		<content:encoded><![CDATA[<p>hi Pinal ,<br />
See an example<br />
I&#8217;ve two tables<br />
1)servertable(ServerID,ServerName)<br />
2)NewServerTable(ServerID,ServerName) </p>
<p>if I use SqlStatement to insert records of servertable into NewServerTable<br />
like this :<br />
Insert Into NewServerTable<br />
Select From Server Table.</p>
<p>and If I use Cursor for the same thing like this</p>
<p>DECLARE db_cursor CURSOR FOR<br />
SELECT SERVERID,SERVERNAME<br />
FROM SERVERTABLE<br />
DECLARE @SERVERID INT<br />
DECLARE @SERVERNAME VARCHAR(20)<br />
OPEN db_cursor<br />
FETCH NEXT FROM db_cursor INTO @SERVERID,@SERVERNAME  </p>
<p>WHILE @@FETCH_STATUS = 0<br />
BEGIN<br />
       FETCH NEXT FROM db_cursor INTO @SERVERID,@SERVERNAME<br />
INSERT INTO NEWSERVERTABLE(SERVERID,SERVERNAME) VALUES (@SERVERID,@SERVERNAME)<br />
END  </p>
<p>CLOSE db_cursor<br />
DEALLOCATE db_cursor </p>
<p>I known to this that sqlqueries are much better in performance as compare to Cursor But How? Please give me explanation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER – Interview Questions and Answers – Frequently Asked Questions – Day 3 of 31 Journey to SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-145410</link>
		<dc:creator><![CDATA[SQL SERVER – Interview Questions and Answers – Frequently Asked Questions – Day 3 of 31 Journey to SQLAuthority]]></dc:creator>
		<pubDate>Sun, 03 Jul 2011 01:31:33 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-145410</guid>
		<description><![CDATA[[...] Deallocate cursor (Read more here) [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Deallocate cursor (Read more here) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shoaib</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-125258</link>
		<dc:creator><![CDATA[Shoaib]]></dc:creator>
		<pubDate>Sun, 27 Mar 2011 19:10:16 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-125258</guid>
		<description><![CDATA[Hi sir,

My question is very simple, i want to know if i can perform the operation of right outer join by using left outer join just by  swapping the table.
Then what is the use of right outer join.
If there any difference between them please let me know.

Thanks in advance.......]]></description>
		<content:encoded><![CDATA[<p>Hi sir,</p>
<p>My question is very simple, i want to know if i can perform the operation of right outer join by using left outer join just by  swapping the table.<br />
Then what is the use of right outer join.<br />
If there any difference between them please let me know.</p>
<p>Thanks in advance&#8230;&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Umesh Bhavsar</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-73116</link>
		<dc:creator><![CDATA[Umesh Bhavsar]]></dc:creator>
		<pubDate>Wed, 26 May 2010 02:38:22 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-73116</guid>
		<description><![CDATA[Hi There!

With the release of SQL Server 2008, Microsoft has introduced new datatype Cursor. Previously, we were using Cursor as Database Object.

So, in my opinion, Cursor is Data Type and Database Object also.

The only difference being the way it is used.

Hope it helps.

Warm Regards,

Umesh Bhavsar]]></description>
		<content:encoded><![CDATA[<p>Hi There!</p>
<p>With the release of SQL Server 2008, Microsoft has introduced new datatype Cursor. Previously, we were using Cursor as Database Object.</p>
<p>So, in my opinion, Cursor is Data Type and Database Object also.</p>
<p>The only difference being the way it is used.</p>
<p>Hope it helps.</p>
<p>Warm Regards,</p>
<p>Umesh Bhavsar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mahesh Kumar</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-65742</link>
		<dc:creator><![CDATA[Mahesh Kumar]]></dc:creator>
		<pubDate>Tue, 20 Apr 2010 17:07:46 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-65742</guid>
		<description><![CDATA[Cursor is a data type.  Its just like @ table.  The cursors stores the data in the RAM memory.  If its a DB object then it will occupy the physical memory of the DB.]]></description>
		<content:encoded><![CDATA[<p>Cursor is a data type.  Its just like @ table.  The cursors stores the data in the RAM memory.  If its a DB object then it will occupy the physical memory of the DB.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manish</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-63666</link>
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Wed, 24 Mar 2010 21:40:51 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-63666</guid>
		<description><![CDATA[We declare a cursor and it allocates space in the RAM to do its operations till it  completes it cycle so it acts as a variable .I would say it is a temporary database object working on row by row basis]]></description>
		<content:encoded><![CDATA[<p>We declare a cursor and it allocates space in the RAM to do its operations till it  completes it cycle so it acts as a variable .I would say it is a temporary database object working on row by row basis</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SrikanthReddy</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-62871</link>
		<dc:creator><![CDATA[SrikanthReddy]]></dc:creator>
		<pubDate>Sat, 13 Mar 2010 16:04:28 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-62871</guid>
		<description><![CDATA[can we define Like Cursor is a pointer, maintaiin Reference of one by one row Data Objects.]]></description>
		<content:encoded><![CDATA[<p>can we define Like Cursor is a pointer, maintaiin Reference of one by one row Data Objects.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madhivanan</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-62485</link>
		<dc:creator><![CDATA[Madhivanan]]></dc:creator>
		<pubDate>Tue, 09 Mar 2010 09:48:55 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-62485</guid>
		<description><![CDATA[You can use set-based approach. 
Give us more informations on what you want]]></description>
		<content:encoded><![CDATA[<p>You can use set-based approach.<br />
Give us more informations on what you want</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manish</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-58945</link>
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Wed, 23 Dec 2009 14:06:08 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-58945</guid>
		<description><![CDATA[Questin:- Everyone we know that cursor and procedure are different object in Sql server. When we create any cursor we know that cursor would take time to complete there execution on the rows. So if we want to ignore or wanna other way to Use Cursor. What will be that. Please reply me its a logical but strong interview question as well..]]></description>
		<content:encoded><![CDATA[<p>Questin:- Everyone we know that cursor and procedure are different object in Sql server. When we create any cursor we know that cursor would take time to complete there execution on the rows. So if we want to ignore or wanna other way to Use Cursor. What will be that. Please reply me its a logical but strong interview question as well..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pradeep</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-58867</link>
		<dc:creator><![CDATA[pradeep]]></dc:creator>
		<pubDate>Mon, 21 Dec 2009 10:14:38 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-58867</guid>
		<description><![CDATA[Hi,

Cursor is not a data type, it is an object but it has to be declared as cursor.  Rows fetched out of a query is stored into this cursor in the RAM. If the query fetches large amount of data, then it occupies large amount of RAM capacity.  Obviously other objects cannot be loaded into the memory as the cursor occupies more memory.  Naturaly the performance of the SQL server is also pulled down.   Thats why it is advised not to use cursors if you can implement some other logic to manipulate row by row.]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Cursor is not a data type, it is an object but it has to be declared as cursor.  Rows fetched out of a query is stored into this cursor in the RAM. If the query fetches large amount of data, then it occupies large amount of RAM capacity.  Obviously other objects cannot be loaded into the memory as the cursor occupies more memory.  Naturaly the performance of the SQL server is also pulled down.   Thats why it is advised not to use cursors if you can implement some other logic to manipulate row by row.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Akhilesh</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-58856</link>
		<dc:creator><![CDATA[Akhilesh]]></dc:creator>
		<pubDate>Sun, 20 Dec 2009 18:41:31 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-58856</guid>
		<description><![CDATA[cusor are memory spaceon the main memory that is allocated for sql execution and processing. these are used for the mexhanism for  manipulation of data row wise to fetch the desired result.]]></description>
		<content:encoded><![CDATA[<p>cusor are memory spaceon the main memory that is allocated for sql execution and processing. these are used for the mexhanism for  manipulation of data row wise to fetch the desired result.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran Mohammed</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-58461</link>
		<dc:creator><![CDATA[Imran Mohammed]]></dc:creator>
		<pubDate>Sat, 12 Dec 2009 17:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-58461</guid>
		<description><![CDATA[@Mukesh,

There is some thing called as books online. Please refer to that and you will get all information regarding cursors. Other wise make use of Google Search Engine.

Let us know, if you have any (serious) questions.

~ IM.]]></description>
		<content:encoded><![CDATA[<p>@Mukesh,</p>
<p>There is some thing called as books online. Please refer to that and you will get all information regarding cursors. Other wise make use of Google Search Engine.</p>
<p>Let us know, if you have any (serious) questions.</p>
<p>~ IM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mukesh jamukiya</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-58430</link>
		<dc:creator><![CDATA[mukesh jamukiya]]></dc:creator>
		<pubDate>Fri, 11 Dec 2009 11:52:11 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-58430</guid>
		<description><![CDATA[what type cursor in sqlserver?]]></description>
		<content:encoded><![CDATA[<p>what type cursor in sqlserver?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sandy</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-58378</link>
		<dc:creator><![CDATA[sandy]]></dc:creator>
		<pubDate>Wed, 09 Dec 2009 16:04:38 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-58378</guid>
		<description><![CDATA[i think cursor is a database object]]></description>
		<content:encoded><![CDATA[<p>i think cursor is a database object</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vivian</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-55490</link>
		<dc:creator><![CDATA[Vivian]]></dc:creator>
		<pubDate>Tue, 01 Sep 2009 18:48:04 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-55490</guid>
		<description><![CDATA[I just wanted to commend you for your excellent articles. They have been very helpful and informative.]]></description>
		<content:encoded><![CDATA[<p>I just wanted to commend you for your excellent articles. They have been very helpful and informative.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brijnandan</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-53289</link>
		<dc:creator><![CDATA[brijnandan]]></dc:creator>
		<pubDate>Sat, 27 Jun 2009 14:02:44 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-53289</guid>
		<description><![CDATA[hello sir,
   first of all i want to give u my answer of question &quot;Is Cursor Database Object or Datatype &quot;
i think cursor is a datatype not object because the definition and declaration type is same as other datatype.

now i have a question , i m writing a stored procedure using cursor.

 set  @test_temp_query_one   =  &#039; SET  

@test_temp_count_one  =   CURSOR  FORWARD_ONLY   

STATIC   FOR   SELECT  MAX(FLID)  FROM (  SELECT  TOP  &#039; + 

cast(@VAR_DIVIDE2 as varchar(50))   + &#039;    FLID   FROM  &#039;+   

cast(@var_table as varchar(50))  +&#039;  WHERE    (FLFILENO 

!=&#039; +   cast(@VAR_SLIP_NO as varchar(50))   +&#039;)   ORDER BY   

FLID )  FLID  ;  OPEN  @test_temp_count_one &#039;
                                         
 EXEC    sp_executesql     @test_temp_query_one , N&#039; 

@test_temp_count_one   CURSOR    OUTPUT&#039;,    

@test_temp_count_one     OUTPUT
                                           FETCH   NEXT  FROM    @test_temp_count_one    INTO  @VAR_FILE_RANGE2 



this is a part of the proceduer because it&#039;s so long...

when i am executing this procedure the i got an error 

&quot;Operand type clash: nvarchar is incompatible with cursor&quot;

this pro executing with c#.net pro .

now my question is......

tell me the list of datatype , those incompatible with cursor in sql server 7.0

tahnks in advance]]></description>
		<content:encoded><![CDATA[<p>hello sir,<br />
   first of all i want to give u my answer of question &#8220;Is Cursor Database Object or Datatype &#8221;<br />
i think cursor is a datatype not object because the definition and declaration type is same as other datatype.</p>
<p>now i have a question , i m writing a stored procedure using cursor.</p>
<p> set  @test_temp_query_one   =  &#8216; SET  </p>
<p>@test_temp_count_one  =   CURSOR  FORWARD_ONLY   </p>
<p>STATIC   FOR   SELECT  MAX(FLID)  FROM (  SELECT  TOP  &#8216; + </p>
<p>cast(@VAR_DIVIDE2 as varchar(50))   + &#8216;    FLID   FROM  &#8216;+   </p>
<p>cast(@var_table as varchar(50))  +&#8217;  WHERE    (FLFILENO </p>
<p>!=&#8217; +   cast(@VAR_SLIP_NO as varchar(50))   +&#8217;)   ORDER BY   </p>
<p>FLID )  FLID  ;  OPEN  @test_temp_count_one &#8216;</p>
<p> EXEC    sp_executesql     @test_temp_query_one , N&#8217; </p>
<p>@test_temp_count_one   CURSOR    OUTPUT&#8217;,    </p>
<p>@test_temp_count_one     OUTPUT<br />
                                           FETCH   NEXT  FROM    @test_temp_count_one    INTO  @VAR_FILE_RANGE2 </p>
<p>this is a part of the proceduer because it&#8217;s so long&#8230;</p>
<p>when i am executing this procedure the i got an error </p>
<p>&#8220;Operand type clash: nvarchar is incompatible with cursor&#8221;</p>
<p>this pro executing with c#.net pro .</p>
<p>now my question is&#8230;&#8230;</p>
<p>tell me the list of datatype , those incompatible with cursor in sql server 7.0</p>
<p>tahnks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laserbaum</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-51047</link>
		<dc:creator><![CDATA[Laserbaum]]></dc:creator>
		<pubDate>Thu, 16 Apr 2009 18:15:34 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-51047</guid>
		<description><![CDATA[I think it&#039;s a database object. Although we define it like a variable, it can contain all the data of all columns retrieved per row and move it into other variables. This can be any datatype!!

So in my mind, it&#039;s a database object and not a datatype (contains more information, and from all different datatypes)]]></description>
		<content:encoded><![CDATA[<p>I think it&#8217;s a database object. Although we define it like a variable, it can contain all the data of all columns retrieved per row and move it into other variables. This can be any datatype!!</p>
<p>So in my mind, it&#8217;s a database object and not a datatype (contains more information, and from all different datatypes)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - 2008 - Interview Questions and Answers - Part 2 Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-47462</link>
		<dc:creator><![CDATA[SQL SERVER - 2008 - Interview Questions and Answers - Part 2 Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Thu, 26 Feb 2009 11:55:45 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-47462</guid>
		<description><![CDATA[[...] Deallocate cursor (Read More Here) [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Deallocate cursor (Read More Here) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anant Anand Gupta</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-45434</link>
		<dc:creator><![CDATA[Anant Anand Gupta]]></dc:creator>
		<pubDate>Wed, 07 Jan 2009 14:27:49 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-45434</guid>
		<description><![CDATA[I too accept the view of Vivek]]></description>
		<content:encoded><![CDATA[<p>I too accept the view of Vivek</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vivek Singh</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-42755</link>
		<dc:creator><![CDATA[Vivek Singh]]></dc:creator>
		<pubDate>Sat, 13 Sep 2008 06:08:01 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-42755</guid>
		<description><![CDATA[I think Cursor is a System  DataType not Databse Object.
We create Cursor type Varaibles]]></description>
		<content:encoded><![CDATA[<p>I think Cursor is a System  DataType not Databse Object.<br />
We create Cursor type Varaibles</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darshanc Shah</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-38445</link>
		<dc:creator><![CDATA[Darshanc Shah]]></dc:creator>
		<pubDate>Mon, 19 May 2008 13:26:43 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-38445</guid>
		<description><![CDATA[hi ammen 
can u plz try this ?

select leavetype,(abs(substring(loofhours,4,5))*100/60) as totalnoofhours from tablename order by totalnoofhours asc;]]></description>
		<content:encoded><![CDATA[<p>hi ammen<br />
can u plz try this ?</p>
<p>select leavetype,(abs(substring(loofhours,4,5))*100/60) as totalnoofhours from tablename order by totalnoofhours asc;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ameen</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-35566</link>
		<dc:creator><![CDATA[ameen]]></dc:creator>
		<pubDate>Fri, 25 Apr 2008 11:45:44 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-35566</guid>
		<description><![CDATA[can anyone help me about this????]]></description>
		<content:encoded><![CDATA[<p>can anyone help me about this????</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ameen</title>
		<link>http://blog.sqlauthority.com/2008/04/19/sql-server-is-cursor-database-object-or-datatype/#comment-35541</link>
		<dc:creator><![CDATA[ameen]]></dc:creator>
		<pubDate>Fri, 25 Apr 2008 06:09:51 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=575#comment-35541</guid>
		<description><![CDATA[hi ,sir

i have a table named leave having field like leavetype, from, to,
noofhours 
how can i retrive the row by row wise inorder to calculate the noofhours
ie 
these are the data of noofhours field
 10.50 (it equals 10 hours n 30 min)
20.50
12.25

i want to get the each row n split  the 10.50 value to two
ie. 10 n 50 n make a calculation like 50*100/60
ie i want to make the 50 into clock time
after each calculations i want to add all the data
n return the result
how can i do this ............
can u pls help me]]></description>
		<content:encoded><![CDATA[<p>hi ,sir</p>
<p>i have a table named leave having field like leavetype, from, to,<br />
noofhours<br />
how can i retrive the row by row wise inorder to calculate the noofhours<br />
ie<br />
these are the data of noofhours field<br />
 10.50 (it equals 10 hours n 30 min)<br />
20.50<br />
12.25</p>
<p>i want to get the each row n split  the 10.50 value to two<br />
ie. 10 n 50 n make a calculation like 50*100/60<br />
ie i want to make the 50 into clock time<br />
after each calculations i want to add all the data<br />
n return the result<br />
how can i do this &#8230;&#8230;&#8230;&#8230;<br />
can u pls help me</p>
]]></content:encoded>
	</item>
</channel>
</rss>

