<?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: Contact Me &#8211; Archive 11</title>
	<atom:link href="http://blog.sqlauthority.com/contact-me/contact-me-archive-11/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Aryeh</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-358808</link>
		<dc:creator><![CDATA[Aryeh]]></dc:creator>
		<pubDate>Thu, 11 Oct 2012 14:36:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-358808</guid>
		<description><![CDATA[I will have to take a slow answer, as I do not wish to have a facebook or twitter account.]]></description>
		<content:encoded><![CDATA[<p>I will have to take a slow answer, as I do not wish to have a facebook or twitter account.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-358738</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Thu, 11 Oct 2012 10:55:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-358738</guid>
		<description><![CDATA[For quick immediate answer leave a comment at my Facebook page and let me know at my twitter ID.]]></description>
		<content:encoded><![CDATA[<p>For quick immediate answer leave a comment at my Facebook page and let me know at my twitter ID.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aryeh</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-357589</link>
		<dc:creator><![CDATA[Aryeh]]></dc:creator>
		<pubDate>Mon, 08 Oct 2012 23:34:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-357589</guid>
		<description><![CDATA[I would like to trace what parameters are passed into a (multi-line) table function whenever it gets called.  It is called from about 50 stored procedures and 20 other table functions.  This seems possible at the Stored Procedure level with SQL Profiler, but can&#039;t seem to do this with Table Functions]]></description>
		<content:encoded><![CDATA[<p>I would like to trace what parameters are passed into a (multi-line) table function whenever it gets called.  It is called from about 50 stored procedures and 20 other table functions.  This seems possible at the Stored Procedure level with SQL Profiler, but can&#8217;t seem to do this with Table Functions</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prabh</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-355773</link>
		<dc:creator><![CDATA[Prabh]]></dc:creator>
		<pubDate>Thu, 04 Oct 2012 07:25:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-355773</guid>
		<description><![CDATA[hello friends i just want to search on first characters of the word in the string in my column like if i have &quot; great country &quot; in my db against any record...i just want if i search &quot;gc&quot; it should give me the record with great country...thnks in advance]]></description>
		<content:encoded><![CDATA[<p>hello friends i just want to search on first characters of the word in the string in my column like if i have &#8221; great country &#8221; in my db against any record&#8230;i just want if i search &#8220;gc&#8221; it should give me the record with great country&#8230;thnks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajiv nayan</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-354848</link>
		<dc:creator><![CDATA[rajiv nayan]]></dc:creator>
		<pubDate>Mon, 01 Oct 2012 10:20:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-354848</guid>
		<description><![CDATA[how to add value which return like 2,3,5,9,10,11 and return its total like 40. using sql function]]></description>
		<content:encoded><![CDATA[<p>how to add value which return like 2,3,5,9,10,11 and return its total like 40. using sql function</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sekhar</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-352073</link>
		<dc:creator><![CDATA[Sekhar]]></dc:creator>
		<pubDate>Sat, 22 Sep 2012 12:17:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-352073</guid>
		<description><![CDATA[Hi Pinal,
My Table Data as follows:
Invoice_id Invoice_Number Service_Head Amount
     1              1                    AF               1200
     2              1                   Excise_Duty   10000
     3              1                   Deumorages  1500
     4              2                   AF                1500
     5              2                   Excise_Duty   12000
     6              2                  Deumorages   2000


I want SQL query to get following Result Set:

Invoice_Number    AF        Excise_Duty    Deumorages    Total
           1           1200          10000           1500            12701
           2           1500          12000           2000            15502
 
please suggest me...
Thanks
Sekhar C]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,<br />
My Table Data as follows:<br />
Invoice_id Invoice_Number Service_Head Amount<br />
     1              1                    AF               1200<br />
     2              1                   Excise_Duty   10000<br />
     3              1                   Deumorages  1500<br />
     4              2                   AF                1500<br />
     5              2                   Excise_Duty   12000<br />
     6              2                  Deumorages   2000</p>
<p>I want SQL query to get following Result Set:</p>
<p>Invoice_Number    AF        Excise_Duty    Deumorages    Total<br />
           1           1200          10000           1500            12701<br />
           2           1500          12000           2000            15502</p>
<p>please suggest me&#8230;<br />
Thanks<br />
Sekhar C</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K.Gowrishankar</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-348836</link>
		<dc:creator><![CDATA[K.Gowrishankar]]></dc:creator>
		<pubDate>Sat, 15 Sep 2012 10:54:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-348836</guid>
		<description><![CDATA[Last few months i received error at sql maintenance plan excute time. Below i slow the error details. kindly guide me how to resolve the issue. 
the job failed. The job was invoked by user sa. The last step to run was step 1 (subplan)]]></description>
		<content:encoded><![CDATA[<p>Last few months i received error at sql maintenance plan excute time. Below i slow the error details. kindly guide me how to resolve the issue.<br />
the job failed. The job was invoked by user sa. The last step to run was step 1 (subplan)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bilal Pasha</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-343085</link>
		<dc:creator><![CDATA[Bilal Pasha]]></dc:creator>
		<pubDate>Wed, 12 Sep 2012 07:57:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-343085</guid>
		<description><![CDATA[Hi Pinal, I have a question regarding the #temp Tables, I am working on Linked Server with read only rights , where I insert my query result into my temp table, the I create many temp tables, I wonder if I forget the names of these temp tables then from where I get these tables and wanted know that where these temp tables gonna resides either in tempdb of my sql server instance or in linked server. I checked the tempdb of both the servers but not able to find the #temp tables that I created. 

Regards,
Bilal P]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal, I have a question regarding the #temp Tables, I am working on Linked Server with read only rights , where I insert my query result into my temp table, the I create many temp tables, I wonder if I forget the names of these temp tables then from where I get these tables and wanted know that where these temp tables gonna resides either in tempdb of my sql server instance or in linked server. I checked the tempdb of both the servers but not able to find the #temp tables that I created. </p>
<p>Regards,<br />
Bilal P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER – 14 Best Practices for Better Database Performance &#124; JULIANPERRY.CO.UK - IT Expert</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-342202</link>
		<dc:creator><![CDATA[SQL SERVER – 14 Best Practices for Better Database Performance &#124; JULIANPERRY.CO.UK - IT Expert]]></dc:creator>
		<pubDate>Sun, 09 Sep 2012 11:43:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-342202</guid>
		<description><![CDATA[[...] performance by using retrieve technology. For more detail: SQL SERVER SQL Server Performance SQLAuthority  [...]]]></description>
		<content:encoded><![CDATA[<p>[...] performance by using retrieve technology. For more detail: SQL SERVER SQL Server Performance SQLAuthority  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER – Change Order of Column In Database Tables &#124; JULIANPERRY.CO.UK - IT Expert</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-342165</link>
		<dc:creator><![CDATA[SQL SERVER – Change Order of Column In Database Tables &#124; JULIANPERRY.CO.UK - IT Expert]]></dc:creator>
		<pubDate>Sun, 09 Sep 2012 09:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-342165</guid>
		<description><![CDATA[[...] they&#039;re but you can create view on the base table with your desired column order.For more detail:   SQLAuthority SQL Server Consultant SQL Server Performance  [...]]]></description>
		<content:encoded><![CDATA[<p>[...] they&#039;re but you can create view on the base table with your desired column order.For more detail:   SQLAuthority SQL Server Consultant SQL Server Performance  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Avanish</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-341407</link>
		<dc:creator><![CDATA[Avanish]]></dc:creator>
		<pubDate>Thu, 06 Sep 2012 08:36:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-341407</guid>
		<description><![CDATA[Sir,

I request for mysql query to select records from 5(5th row of records) to end of rows of the table.

Thanks &amp; regards.
Avanish Shakya]]></description>
		<content:encoded><![CDATA[<p>Sir,</p>
<p>I request for mysql query to select records from 5(5th row of records) to end of rows of the table.</p>
<p>Thanks &amp; regards.<br />
Avanish Shakya</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Venkat</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-340721</link>
		<dc:creator><![CDATA[Venkat]]></dc:creator>
		<pubDate>Tue, 04 Sep 2012 05:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-340721</guid>
		<description><![CDATA[Hello Pinal,
I have a sql database, need to archive the database into filesystem(excel files).

Is the size of the data will increased or not when i migrate to filesystem?

I am doing archive through c# and save into files.

Some of the experts suggested the data of the filesystem is more as compared to the sql data.

is it right or wrong]]></description>
		<content:encoded><![CDATA[<p>Hello Pinal,<br />
I have a sql database, need to archive the database into filesystem(excel files).</p>
<p>Is the size of the data will increased or not when i migrate to filesystem?</p>
<p>I am doing archive through c# and save into files.</p>
<p>Some of the experts suggested the data of the filesystem is more as compared to the sql data.</p>
<p>is it right or wrong</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kaushik Patel</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-340478</link>
		<dc:creator><![CDATA[Kaushik Patel]]></dc:creator>
		<pubDate>Mon, 03 Sep 2012 10:15:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-340478</guid>
		<description><![CDATA[I have one backup of SQL 2008 R2 database worth 4 GB. When i restore it, mdf file size will be 13gb and ldf file is 9gb. 

Then i delete 1 cr records from database bu database file was not shrink. So i shrink log file to truncateonly, but when i put the database to shrink it tooks 2 hours but nothing happen.so please can you provide me the solution for it.]]></description>
		<content:encoded><![CDATA[<p>I have one backup of SQL 2008 R2 database worth 4 GB. When i restore it, mdf file size will be 13gb and ldf file is 9gb. </p>
<p>Then i delete 1 cr records from database bu database file was not shrink. So i shrink log file to truncateonly, but when i put the database to shrink it tooks 2 hours but nothing happen.so please can you provide me the solution for it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-337993</link>
		<dc:creator><![CDATA[Ivan]]></dc:creator>
		<pubDate>Mon, 27 Aug 2012 15:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-337993</guid>
		<description><![CDATA[Hi Pinal

I was wondering if you could help me come up with a solution to a problem I&#039;m having.

In SSMS with SQL Server 2008 R2, in the Object Exporer if I look under any database &gt; Programmability &gt; Functions I can find a list of (all) functions that I assume can be used with SSMS.

I have looked under INFORMATION_SCHEMA and SYS but I cant seem to find it.

Do you know of any way to extract all of these functions including their parameters and what they return as this would enable me to create a separate save of this information that I could then use?

Regards,

Ivan]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal</p>
<p>I was wondering if you could help me come up with a solution to a problem I&#8217;m having.</p>
<p>In SSMS with SQL Server 2008 R2, in the Object Exporer if I look under any database &gt; Programmability &gt; Functions I can find a list of (all) functions that I assume can be used with SSMS.</p>
<p>I have looked under INFORMATION_SCHEMA and SYS but I cant seem to find it.</p>
<p>Do you know of any way to extract all of these functions including their parameters and what they return as this would enable me to create a separate save of this information that I could then use?</p>
<p>Regards,</p>
<p>Ivan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kalyan</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-337917</link>
		<dc:creator><![CDATA[kalyan]]></dc:creator>
		<pubDate>Mon, 27 Aug 2012 11:12:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-337917</guid>
		<description><![CDATA[Hi Pinal,

In my sp i am storing the result sets into the XML i.e for XML path,root(&#039;name&#039;).These XML&#039;s are maaped into the Excel by configure the sp and refresh the data through .Net application. it&#039;s Working fine for the past 8 Months.

Now i got the issue in Production Server i.e. Exec Procedure Values (EXEC ProcedureName) &amp; i execute only existing script  in the procedure (After hiding the create procedure ,begin and end comments).

Values are not matched for both conditions.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>In my sp i am storing the result sets into the XML i.e for XML path,root(&#8216;name&#8217;).These XML&#8217;s are maaped into the Excel by configure the sp and refresh the data through .Net application. it&#8217;s Working fine for the past 8 Months.</p>
<p>Now i got the issue in Production Server i.e. Exec Procedure Values (EXEC ProcedureName) &amp; i execute only existing script  in the procedure (After hiding the create procedure ,begin and end comments).</p>
<p>Values are not matched for both conditions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-337891</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Mon, 27 Aug 2012 10:14:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-337891</guid>
		<description><![CDATA[You can keep watching http://blog.sqlauthority.com and follow the page http://facebook.com/SQLAuth - when there are new events, I will update that.]]></description>
		<content:encoded><![CDATA[<p>You can keep watching <a href="http://blog.sqlauthority.com" rel="nofollow">http://blog.sqlauthority.com</a> and follow the page <a href="http://facebook.com/SQLAuth" rel="nofollow">http://facebook.com/SQLAuth</a> &#8211; when there are new events, I will update that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Santosh S Pawar</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-337889</link>
		<dc:creator><![CDATA[Santosh S Pawar]]></dc:creator>
		<pubDate>Mon, 27 Aug 2012 10:05:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-337889</guid>
		<description><![CDATA[Hi Pinal i wanna to attend your events but how can i get information about the your events (Classes,Presentation,) im working in Accenture. please give me a link where i can get all information about your events.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal i wanna to attend your events but how can i get information about the your events (Classes,Presentation,) im working in Accenture. please give me a link where i can get all information about your events.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-336185</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Thu, 23 Aug 2012 09:38:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-336185</guid>
		<description><![CDATA[This site is specific to SQL Server. Please post your question at MySQL related forums]]></description>
		<content:encoded><![CDATA[<p>This site is specific to SQL Server. Please post your question at MySQL related forums</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Silvey</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-335718</link>
		<dc:creator><![CDATA[Craig Silvey]]></dc:creator>
		<pubDate>Wed, 22 Aug 2012 19:16:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-335718</guid>
		<description><![CDATA[Love the blog.  Has saved me many hours of head bashing in the past, but not (yet) for the current issue.

SQL 2005 - Reporting subscriptions are creating Agent jobs with schedules.  Both are owned by an account with sysadmin rights.  Subscriptions and schedules have no expiration/stop dates.  However, none of them are firing and there is nothing in the history to show they even attempted.  I do have many entries in the Agent Log that look like this set:

[000] Job 0x0500B79DFB6A8642A8F60B3DC0C6D735 does not exist in the job cache
[000] Failed to retrieve job 0xAA2AFCA1156EB64A9D8217344CD9D745 from the server
[156] Job 0xAA2AFCA1156EB64A9D8217344CD9D745 does not exist in the job cache: attempting to re-acquire it from the server...
[298] SQLServer Error: 2601, Cannot insert duplicate key row in object &#039;dbo.sysjobactivity&#039; with unique index &#039;clust&#039;. [SQLSTATE 23000]
[298] SQLServer Error: 3621, The statement has been terminated. [SQLSTATE 01000]
[000] Failed to retrieve job 0xAA2AFCA1156EB64A9D8217344CD9D745 from the server
[000] Refresh of schedule 95736 failed because the parent job (0xAA2AFCA1156EB64A9D8217344CD9D745) was not found in the job cache

I tracked back through the schedule_id to find the job to run sp_help_job and the content appears to be the dbo.AddEvent command.  The dbo.Event is empty and the @EventData guid does not appear in sysjobactivity.

Please help.]]></description>
		<content:encoded><![CDATA[<p>Love the blog.  Has saved me many hours of head bashing in the past, but not (yet) for the current issue.</p>
<p>SQL 2005 &#8211; Reporting subscriptions are creating Agent jobs with schedules.  Both are owned by an account with sysadmin rights.  Subscriptions and schedules have no expiration/stop dates.  However, none of them are firing and there is nothing in the history to show they even attempted.  I do have many entries in the Agent Log that look like this set:</p>
<p>[000] Job 0x0500B79DFB6A8642A8F60B3DC0C6D735 does not exist in the job cache<br />
[000] Failed to retrieve job 0xAA2AFCA1156EB64A9D8217344CD9D745 from the server<br />
[156] Job 0xAA2AFCA1156EB64A9D8217344CD9D745 does not exist in the job cache: attempting to re-acquire it from the server&#8230;<br />
[298] SQLServer Error: 2601, Cannot insert duplicate key row in object &#8216;dbo.sysjobactivity&#8217; with unique index &#8216;clust&#8217;. [SQLSTATE 23000]<br />
[298] SQLServer Error: 3621, The statement has been terminated. [SQLSTATE 01000]<br />
[000] Failed to retrieve job 0xAA2AFCA1156EB64A9D8217344CD9D745 from the server<br />
[000] Refresh of schedule 95736 failed because the parent job (0xAA2AFCA1156EB64A9D8217344CD9D745) was not found in the job cache</p>
<p>I tracked back through the schedule_id to find the job to run sp_help_job and the content appears to be the dbo.AddEvent command.  The dbo.Event is empty and the @EventData guid does not appear in sysjobactivity.</p>
<p>Please help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neeraj</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-332619</link>
		<dc:creator><![CDATA[Neeraj]]></dc:creator>
		<pubDate>Sat, 18 Aug 2012 04:29:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-332619</guid>
		<description><![CDATA[can we send sms from MYSQL data base]]></description>
		<content:encoded><![CDATA[<p>can we send sms from MYSQL data base</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: govindraj</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-331435</link>
		<dc:creator><![CDATA[govindraj]]></dc:creator>
		<pubDate>Thu, 16 Aug 2012 13:12:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-331435</guid>
		<description><![CDATA[Hi sir Good Evening,

your blog is very useful to me, i have questions 
1. am having the employee table and the columns are name,dob, how can i find who&#039;s birthday will fall on current week.
2. about nested store procedure with example]]></description>
		<content:encoded><![CDATA[<p>Hi sir Good Evening,</p>
<p>your blog is very useful to me, i have questions<br />
1. am having the employee table and the columns are name,dob, how can i find who&#8217;s birthday will fall on current week.<br />
2. about nested store procedure with example</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-329870</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Mon, 13 Aug 2012 15:37:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-329870</guid>
		<description><![CDATA[Hi Anu,

You can get the latest updated book from http://bit.ly/sql-interview]]></description>
		<content:encoded><![CDATA[<p>Hi Anu,</p>
<p>You can get the latest updated book from <a href="http://bit.ly/sql-interview" rel="nofollow">http://bit.ly/sql-interview</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anu</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-329867</link>
		<dc:creator><![CDATA[anu]]></dc:creator>
		<pubDate>Mon, 13 Aug 2012 15:20:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-329867</guid>
		<description><![CDATA[HI Sir
Can you please send me SQLServer2008InterviewQuestionsAnswers.pdf - unsecured file.]]></description>
		<content:encoded><![CDATA[<p>HI Sir<br />
Can you please send me SQLServer2008InterviewQuestionsAnswers.pdf &#8211; unsecured file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nilesh Patil</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-328786</link>
		<dc:creator><![CDATA[Nilesh Patil]]></dc:creator>
		<pubDate>Sat, 11 Aug 2012 12:05:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-328786</guid>
		<description><![CDATA[Hi Sir,
This is Nilesh patil I want write Stored Procedure To generate dynamic Create Table script in sql server. 
please Help Me]]></description>
		<content:encoded><![CDATA[<p>Hi Sir,<br />
This is Nilesh patil I want write Stored Procedure To generate dynamic Create Table script in sql server.<br />
please Help Me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Wood</title>
		<link>http://blog.sqlauthority.com/contact-me/contact-me-archive-11/#comment-323629</link>
		<dc:creator><![CDATA[Ian Wood]]></dc:creator>
		<pubDate>Thu, 02 Aug 2012 13:32:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?page_id=15409#comment-323629</guid>
		<description><![CDATA[Firstly, yours is a brilliant blog, both practically and philosophically.  I knew, someday, I would have a question for you.

Scenario: Investigating performance issue with third party app.
The app uses multiple databases.  It routinely runs queries across databases.  In the below example MyTable contains only two records and has no indexes.  Why the performance degradation when using three-part naming?  The serveradmin has recently been  defragging disks and I have theories but I have not been able to pinpoint the issue.

USE DB1
SELECT Count(Col1) FROM DB2.dbo.MyTable
(Duration: 2140)

USE DB2
SELECT Count(Col1) FROM DB2.dbo.MyTable
(Duration: 46)
SELECT Count(Col1) FROM dbo.MyTable
(Duration: 15)]]></description>
		<content:encoded><![CDATA[<p>Firstly, yours is a brilliant blog, both practically and philosophically.  I knew, someday, I would have a question for you.</p>
<p>Scenario: Investigating performance issue with third party app.<br />
The app uses multiple databases.  It routinely runs queries across databases.  In the below example MyTable contains only two records and has no indexes.  Why the performance degradation when using three-part naming?  The serveradmin has recently been  defragging disks and I have theories but I have not been able to pinpoint the issue.</p>
<p>USE DB1<br />
SELECT Count(Col1) FROM DB2.dbo.MyTable<br />
(Duration: 2140)</p>
<p>USE DB2<br />
SELECT Count(Col1) FROM DB2.dbo.MyTable<br />
(Duration: 46)<br />
SELECT Count(Col1) FROM dbo.MyTable<br />
(Duration: 15)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
