<?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: SQLAuthority Author Visit &#8211; Microsoft Student Partner Conference</title>
	<atom:link href="http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 10 Feb 2012 02:12:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Steve</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-218699</link>
		<dc:creator><![CDATA[Steve]]></dc:creator>
		<pubDate>Thu, 15 Dec 2011 20:55:26 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-218699</guid>
		<description><![CDATA[Hi Pinal Dev,
First, My sincere thanks to you for delivering such a dedicated service to sql developers/experts and many other new comers.
Here is my question: I have been working on a .net intranet web application calling SQL 2005 stored procedures. The problem is getting a time out error before the stored procedure could be executed. The error is: &quot;Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding&quot;.
It would be great if you could provide me a lead..inspite of your busy schedule. Carry on the good work. May God be always with you always.
Thanks again.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal Dev,<br />
First, My sincere thanks to you for delivering such a dedicated service to sql developers/experts and many other new comers.<br />
Here is my question: I have been working on a .net intranet web application calling SQL 2005 stored procedures. The problem is getting a time out error before the stored procedure could be executed. The error is: &#8220;Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding&#8221;.<br />
It would be great if you could provide me a lead..inspite of your busy schedule. Carry on the good work. May God be always with you always.<br />
Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kumar</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-175465</link>
		<dc:creator><![CDATA[kumar]]></dc:creator>
		<pubDate>Wed, 05 Oct 2011 21:51:12 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-175465</guid>
		<description><![CDATA[DO any one know how to get Sql Server Alias Name IN T-Sql .]]></description>
		<content:encoded><![CDATA[<p>DO any one know how to get Sql Server Alias Name IN T-Sql .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dipra</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-144846</link>
		<dc:creator><![CDATA[Dipra]]></dc:creator>
		<pubDate>Thu, 30 Jun 2011 11:36:41 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-144846</guid>
		<description><![CDATA[Hi Pinal!
Could you please suggest me to choose the training center/institute for ms sql server DBA course in India ? I have been working as a database developer for the last 3 years.
Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal!<br />
Could you please suggest me to choose the training center/institute for ms sql server DBA course in India ? I have been working as a database developer for the last 3 years.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kumar</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-140818</link>
		<dc:creator><![CDATA[kumar]]></dc:creator>
		<pubDate>Tue, 14 Jun 2011 02:33:08 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-140818</guid>
		<description><![CDATA[Any One can   solve  this issue in fulltext search



The following query  runs on 20M table  in searching 4 columns Nvarchar(Max)   for a keyword pizza.
We will get 1 rank  but  that is not proper ranking  for weitage for our desplay
like we need to give  weitage for some column values than the other


SELECT  top 10  F.Screenname,F.Comments ,X.Rank AS Ran1
FROM .dbo.Profilesearch  F inner JOIN FREETEXTTABLE(dbo.Profilesearch,*,&#039;Pizza&#039;) AS X ON X.[Key]=F.rowno
 ORDER  BY Ran1 DESC

 
GO


----  For  the above  issue solution  we dont find any better solution than   joining individuall left joins on each column to find rank of each column




SELECT  top 10  F.Screenname,F.Comments ,X.Rank AS Ran1,X1.rank AS Scrank,X2.Rank AS CommenRank

FROM .dbo.Profilesearch  F inner JOIN FREETEXTTABLE(dbo.Profilesearch,*,&#039;Pizza&#039;) AS X ON X.[Key]=F.rowno
									   LEFT JOIN FREETEXTTABLE(dbo.Profilesearch,Screenname,&#039;Pizza&#039;) AS X1 ON X1.[Key]=F.rowno	
									   LEFT JOIN FREETEXTTABLE(dbo.Profilesearch,Comments,&#039;Pizza&#039;) AS X2 ON X1.[Key]=F.rowno	


---- This Joins Hurts a perfomance like approx  40-60 transactions per min   
  some times with length of keyword increases   word breaking errors and timeouts its causing all type of issues for us .


We believe  YOU GUYS R GEMS     ,  GIVE  US A Mind Blowing Solution 
Thanks]]></description>
		<content:encoded><![CDATA[<p>Any One can   solve  this issue in fulltext search</p>
<p>The following query  runs on 20M table  in searching 4 columns Nvarchar(Max)   for a keyword pizza.<br />
We will get 1 rank  but  that is not proper ranking  for weitage for our desplay<br />
like we need to give  weitage for some column values than the other</p>
<p>SELECT  top 10  F.Screenname,F.Comments ,X.Rank AS Ran1<br />
FROM .dbo.Profilesearch  F inner JOIN FREETEXTTABLE(dbo.Profilesearch,*,&#8217;Pizza&#8217;) AS X ON X.[Key]=F.rowno<br />
 ORDER  BY Ran1 DESC</p>
<p>GO</p>
<p>&#8212;-  For  the above  issue solution  we dont find any better solution than   joining individuall left joins on each column to find rank of each column</p>
<p>SELECT  top 10  F.Screenname,F.Comments ,X.Rank AS Ran1,X1.rank AS Scrank,X2.Rank AS CommenRank</p>
<p>FROM .dbo.Profilesearch  F inner JOIN FREETEXTTABLE(dbo.Profilesearch,*,&#8217;Pizza&#8217;) AS X ON X.[Key]=F.rowno<br />
									   LEFT JOIN FREETEXTTABLE(dbo.Profilesearch,Screenname,&#8217;Pizza&#8217;) AS X1 ON X1.[Key]=F.rowno<br />
									   LEFT JOIN FREETEXTTABLE(dbo.Profilesearch,Comments,&#8217;Pizza&#8217;) AS X2 ON X1.[Key]=F.rowno	</p>
<p>&#8212;- This Joins Hurts a perfomance like approx  40-60 transactions per min<br />
  some times with length of keyword increases   word breaking errors and timeouts its causing all type of issues for us .</p>
<p>We believe  YOU GUYS R GEMS     ,  GIVE  US A Mind Blowing Solution<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajesh Kumar Jaiswal</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-139168</link>
		<dc:creator><![CDATA[Rajesh Kumar Jaiswal]]></dc:creator>
		<pubDate>Mon, 06 Jun 2011 07:08:33 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-139168</guid>
		<description><![CDATA[hello Pinal sir,

I want to know about schema security in sql server 2005 ,from basic can you please help me.]]></description>
		<content:encoded><![CDATA[<p>hello Pinal sir,</p>
<p>I want to know about schema security in sql server 2005 ,from basic can you please help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajesh Kumar Jaiswal</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-139167</link>
		<dc:creator><![CDATA[Rajesh Kumar Jaiswal]]></dc:creator>
		<pubDate>Mon, 06 Jun 2011 07:07:51 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-139167</guid>
		<description><![CDATA[hello Pinal sir,

   I want to know about schema security in sql server 2005 ,from basic can you please help me.]]></description>
		<content:encoded><![CDATA[<p>hello Pinal sir,</p>
<p>   I want to know about schema security in sql server 2005 ,from basic can you please help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-125909</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Fri, 01 Apr 2011 06:04:25 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-125909</guid>
		<description><![CDATA[Did you do dbcc checkdb and see which objects had the problem?]]></description>
		<content:encoded><![CDATA[<p>Did you do dbcc checkdb and see which objects had the problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adarsh</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-125428</link>
		<dc:creator><![CDATA[Adarsh]]></dc:creator>
		<pubDate>Tue, 29 Mar 2011 00:33:42 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-125428</guid>
		<description><![CDATA[Hi Pinal,

I had a scenario where in the backup file was damaged. And had a few corrupted pages which just prevented some database objects to be accessed. And that was the latest  &amp; a lone backup file available. Is there any way by any chance to have the complete data restored without data loss.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>I had a scenario where in the backup file was damaged. And had a few corrupted pages which just prevented some database objects to be accessed. And that was the latest  &amp; a lone backup file available. Is there any way by any chance to have the complete data restored without data loss.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prem Shah</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-113982</link>
		<dc:creator><![CDATA[Prem Shah]]></dc:creator>
		<pubDate>Tue, 25 Jan 2011 05:38:47 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-113982</guid>
		<description><![CDATA[Hi Pinal,
 
Is There any option to assign default value in table type parameter in store procedure, please help me in this . i am waiting for it.


Thanks,
Prem Shah]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Is There any option to assign default value in table type parameter in store procedure, please help me in this . i am waiting for it.</p>
<p>Thanks,<br />
Prem Shah</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: desigan</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-103570</link>
		<dc:creator><![CDATA[desigan]]></dc:creator>
		<pubDate>Fri, 03 Dec 2010 10:46:31 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-103570</guid>
		<description><![CDATA[Hi all,
       Im using cursor in my procedure,Im getting the value from 1 table,that value is stored in local variable @var,that value is the column name of another table.I want to pass the @var in Cursor Select Statement.How i do that..the Below statements im using...

Set @var=(select field from table1)

Declare cursorname cursor for
Select @var from table2 where No=2   ---&gt;Getting Error
open cursorname]]></description>
		<content:encoded><![CDATA[<p>Hi all,<br />
       Im using cursor in my procedure,Im getting the value from 1 table,that value is stored in local variable @var,that value is the column name of another table.I want to pass the @var in Cursor Select Statement.How i do that..the Below statements im using&#8230;</p>
<p>Set @var=(select field from table1)</p>
<p>Declare cursorname cursor for<br />
Select @var from table2 where No=2   &#8212;&gt;Getting Error<br />
open cursorname</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abhijith</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-90609</link>
		<dc:creator><![CDATA[abhijith]]></dc:creator>
		<pubDate>Sat, 02 Oct 2010 04:40:29 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-90609</guid>
		<description><![CDATA[error is generating as...
there is an already opened datareader with this command.close that first.]]></description>
		<content:encoded><![CDATA[<p>error is generating as&#8230;<br />
there is an already opened datareader with this command.close that first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abhijith</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-90608</link>
		<dc:creator><![CDATA[abhijith]]></dc:creator>
		<pubDate>Sat, 02 Oct 2010 04:38:51 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-90608</guid>
		<description><![CDATA[please correct the error...i cant connet to database for login..am using sql 2008+vs 2008.the login code is..
SqlDataReader dr = null;
            SqlConnection con = new SqlConnection(&quot;Data Source=abhi-PC\\SQLEXPRESS;Initial Catalog=park;Integrated Security=True&quot;);
            con.Open();
            
            SqlCommand cmd1 = new SqlCommand(&quot;select user_name,password from staff_login&quot;, con);
            dr = cmd1.ExecuteReader();
            
            string uname1;
            string uname = textBox_staff_uname.Text;
            string pwd = textBox_staff_uname.Text;
            
            while (dr.Read())
            {

                uname = dr.GetString(0);
                pwd = dr.GetString(1);

               
                string p =textBox_staff_uname.Text;

                int r = textBox_staff_pwd.Text.Length;
                pwd = pwd.Remove(r);
                if (textBox_staff_uname.Text == uname &amp;&amp; textBox_staff_pwd.Text == pwd)
                {
                    staff ad = new staff();
                    ad.Show();
                    Hide();
                    
                }
                
                cmd1.ExecuteNonQuery();//error:there is an already opened datareader with this command.close that first.]]></description>
		<content:encoded><![CDATA[<p>please correct the error&#8230;i cant connet to database for login..am using sql 2008+vs 2008.the login code is..<br />
SqlDataReader dr = null;<br />
            SqlConnection con = new SqlConnection(&#8220;Data Source=abhi-PC\\SQLEXPRESS;Initial Catalog=park;Integrated Security=True&#8221;);<br />
            con.Open();</p>
<p>            SqlCommand cmd1 = new SqlCommand(&#8220;select user_name,password from staff_login&#8221;, con);<br />
            dr = cmd1.ExecuteReader();</p>
<p>            string uname1;<br />
            string uname = textBox_staff_uname.Text;<br />
            string pwd = textBox_staff_uname.Text;</p>
<p>            while (dr.Read())<br />
            {</p>
<p>                uname = dr.GetString(0);<br />
                pwd = dr.GetString(1);</p>
<p>                string p =textBox_staff_uname.Text;</p>
<p>                int r = textBox_staff_pwd.Text.Length;<br />
                pwd = pwd.Remove(r);<br />
                if (textBox_staff_uname.Text == uname &amp;&amp; textBox_staff_pwd.Text == pwd)<br />
                {<br />
                    staff ad = new staff();<br />
                    ad.Show();<br />
                    Hide();</p>
<p>                }</p>
<p>                cmd1.ExecuteNonQuery();//error:there is an already opened datareader with this command.close that first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajesh</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-52694</link>
		<dc:creator><![CDATA[Rajesh]]></dc:creator>
		<pubDate>Wed, 03 Jun 2009 13:26:18 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-52694</guid>
		<description><![CDATA[Hi Pinal,

Is there any way to find the last shrinken database. Please help in this.

Thanks,
Rajesh]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Is there any way to find the last shrinken database. Please help in this.</p>
<p>Thanks,<br />
Rajesh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keyur Patel</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-43338</link>
		<dc:creator><![CDATA[Keyur Patel]]></dc:creator>
		<pubDate>Sun, 28 Sep 2008 17:05:42 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-43338</guid>
		<description><![CDATA[hello Pinal sir,

           i would like to thank you for the solution but my actual question is slide differ from this.i asked that in ahemdabad confrence  for the &quot;katmai&quot; SQL management studio. that crash after installing the visual studio 2008 sp1. may be because of framework 3.5 sp1 so sir plz check that problem. , and once again thanks for this solution.plz sir check it on windows server 2008.]]></description>
		<content:encoded><![CDATA[<p>hello Pinal sir,</p>
<p>           i would like to thank you for the solution but my actual question is slide differ from this.i asked that in ahemdabad confrence  for the &#8220;katmai&#8221; SQL management studio. that crash after installing the visual studio 2008 sp1. may be because of framework 3.5 sp1 so sir plz check that problem. , and once again thanks for this solution.plz sir check it on windows server 2008.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - 2008 - Fix Connection Error with Visual Studio 2008 – Server Version is not supported Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-43071</link>
		<dc:creator><![CDATA[SQL SERVER - 2008 - Fix Connection Error with Visual Studio 2008 – Server Version is not supported Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Sun, 21 Sep 2008 01:30:24 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-43071</guid>
		<description><![CDATA[[...] 21, 2008 by pinaldave    While attending conference SQLAuthority Author Visit - Microsoft Student Partner Conference, some developers informed me that SQL SERVER 2008 cannot be connected to Visual Studio 2008 and [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 21, 2008 by pinaldave    While attending conference SQLAuthority Author Visit &#8211; Microsoft Student Partner Conference, some developers informed me that SQL SERVER 2008 cannot be connected to Visual Studio 2008 and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-42344</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Wed, 03 Sep 2008 04:17:05 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-42344</guid>
		<description><![CDATA[Thank you Imran,

I find your articles and suggestions very helpful.

Kind Regards,
Pinal Dave ( http://www.SQLAuthority.com )]]></description>
		<content:encoded><![CDATA[<p>Thank you Imran,</p>
<p>I find your articles and suggestions very helpful.</p>
<p>Kind Regards,<br />
Pinal Dave ( <a href="http://www.SQLAuthority.com" rel="nofollow">http://www.SQLAuthority.com</a> )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran Mohammed</title>
		<link>http://blog.sqlauthority.com/2008/09/03/sqlauthority-author-visit-microsoft-student-partner-conference/#comment-42335</link>
		<dc:creator><![CDATA[Imran Mohammed]]></dc:creator>
		<pubDate>Wed, 03 Sep 2008 02:13:38 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1035#comment-42335</guid>
		<description><![CDATA[Now that you call really Huge !!!

Congracts ....Pinal Dev.]]></description>
		<content:encoded><![CDATA[<p>Now that you call really Huge !!!</p>
<p>Congracts &#8230;.Pinal Dev.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

