<?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; Importance of Database Schemas in SQL Server</title>
	<atom:link href="http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Sun, 12 Feb 2012 09:22:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Parag Chitodkar</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-178273</link>
		<dc:creator><![CDATA[Parag Chitodkar]]></dc:creator>
		<pubDate>Thu, 13 Oct 2011 06:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-178273</guid>
		<description><![CDATA[Hi Pinal,
   I ma new in Datawarehousing, ca u suggest me any books related to SQL datawarehousing for ETL like SSIS, SSRS etc.
I am having more than 8 yrs. exp in Microsoft tech.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,<br />
   I ma new in Datawarehousing, ca u suggest me any books related to SQL datawarehousing for ETL like SSIS, SSRS etc.<br />
I am having more than 8 yrs. exp in Microsoft tech.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Square Brothers Hosting</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-144176</link>
		<dc:creator><![CDATA[Square Brothers Hosting]]></dc:creator>
		<pubDate>Mon, 27 Jun 2011 12:20:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-144176</guid>
		<description><![CDATA[Pinal,

I want to mirror a db with more than 7 lakh entries on two identical servers. Every hour it has to be done. it will be great help if you could post schema for the same.]]></description>
		<content:encoded><![CDATA[<p>Pinal,</p>
<p>I want to mirror a db with more than 7 lakh entries on two identical servers. Every hour it has to be done. it will be great help if you could post schema for the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ankur</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-136570</link>
		<dc:creator><![CDATA[Ankur]]></dc:creator>
		<pubDate>Wed, 25 May 2011 10:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-136570</guid>
		<description><![CDATA[My personal opinions is SQL takes more server load than mysql.
First I learned mysql then I am on SQL server.
Well main IMP advantage of SQL server is you can use it in VB or ASP or in ay other things.]]></description>
		<content:encoded><![CDATA[<p>My personal opinions is SQL takes more server load than mysql.<br />
First I learned mysql then I am on SQL server.<br />
Well main IMP advantage of SQL server is you can use it in VB or ASP or in ay other things.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Himanshu</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-122530</link>
		<dc:creator><![CDATA[Himanshu]]></dc:creator>
		<pubDate>Wed, 09 Mar 2011 11:38:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-122530</guid>
		<description><![CDATA[I was looking this command 
ALTER SCHEMA MySchema2 TRANSFER MySchema1.MyTable;

But I didn&#039;t get it. Any way I found it from another source.]]></description>
		<content:encoded><![CDATA[<p>I was looking this command<br />
ALTER SCHEMA MySchema2 TRANSFER MySchema1.MyTable;</p>
<p>But I didn&#8217;t get it. Any way I found it from another source.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giri</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-119796</link>
		<dc:creator><![CDATA[Giri]]></dc:creator>
		<pubDate>Mon, 21 Feb 2011 05:35:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-119796</guid>
		<description><![CDATA[I am working on multiple schema&#039;s. these are the sample query&#039;s from different schema

SELECT [DepartmentID],[DepartmentName],[Description]
  FROM [DemoDB].[dbo].[Department]

SELECT [EmpID],[EmpName],[DepartmentID]
  FROM [DemoDB].[BOA].[Employee]

SELECT [EmpID],[EmpName],[DepartmentID]
  FROM [DemoDB].[BHW].[Employee]

All table which is created in dbo schema are default and master tables. The following SP is created in dbo schema

SP
===================
ALTER PROCEDURE [dbo].[GetEmployeeDetails] 
	@DeptID	int
AS
BEGIN
	SET NOCOUNT ON;
    SELECT E.EmpID, E.EmpName, D.DepartmentName FROM Employee E
    INNER JOIN dbo.Department D ON D.DepartmentID = E.DepartmentID
    WHERE E.DepartmentID = @DeptID
END
===================

when i try to run the SP from different users [BOA/ BHW] my SP is throwing error &quot;Invalid object name &#039;Employee&#039;&quot;.

if the run the query in NEW QUERY window with specified user logged in then the query is executing properly. but my SP is not working.

I want to run the SP to retrieve the data from table who ever logged in to the database. when ever i create any user it will copy all the default table to the newly created user by creating new schema with the new username.  my all master table will be in dbo schema and other tables will be copied to each schema, like

BOA.Employee [Linked to master table]
BHW.Employee [Linked to master table]
dbo.Department  [Master Table]

i want the solution to the SP which are created in dbo, it should get the data specific to the user logged in to the DB. If i logged in with BOA then it should retrieve the data from BOA tables..]]></description>
		<content:encoded><![CDATA[<p>I am working on multiple schema&#8217;s. these are the sample query&#8217;s from different schema</p>
<p>SELECT [DepartmentID],[DepartmentName],[Description]<br />
  FROM [DemoDB].[dbo].[Department]</p>
<p>SELECT [EmpID],[EmpName],[DepartmentID]<br />
  FROM [DemoDB].[BOA].[Employee]</p>
<p>SELECT [EmpID],[EmpName],[DepartmentID]<br />
  FROM [DemoDB].[BHW].[Employee]</p>
<p>All table which is created in dbo schema are default and master tables. The following SP is created in dbo schema</p>
<p>SP<br />
===================<br />
ALTER PROCEDURE [dbo].[GetEmployeeDetails]<br />
	@DeptID	int<br />
AS<br />
BEGIN<br />
	SET NOCOUNT ON;<br />
    SELECT E.EmpID, E.EmpName, D.DepartmentName FROM Employee E<br />
    INNER JOIN dbo.Department D ON D.DepartmentID = E.DepartmentID<br />
    WHERE E.DepartmentID = @DeptID<br />
END<br />
===================</p>
<p>when i try to run the SP from different users [BOA/ BHW] my SP is throwing error &#8220;Invalid object name &#8216;Employee&#8217;&#8221;.</p>
<p>if the run the query in NEW QUERY window with specified user logged in then the query is executing properly. but my SP is not working.</p>
<p>I want to run the SP to retrieve the data from table who ever logged in to the database. when ever i create any user it will copy all the default table to the newly created user by creating new schema with the new username.  my all master table will be in dbo schema and other tables will be copied to each schema, like</p>
<p>BOA.Employee [Linked to master table]<br />
BHW.Employee [Linked to master table]<br />
dbo.Department  [Master Table]</p>
<p>i want the solution to the SP which are created in dbo, it should get the data specific to the user logged in to the DB. If i logged in with BOA then it should retrieve the data from BOA tables..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abhinaw</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-106221</link>
		<dc:creator><![CDATA[Abhinaw]]></dc:creator>
		<pubDate>Fri, 17 Dec 2010 04:52:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-106221</guid>
		<description><![CDATA[Thanks

very nice article]]></description>
		<content:encoded><![CDATA[<p>Thanks</p>
<p>very nice article</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Koteswarrao</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-89351</link>
		<dc:creator><![CDATA[Koteswarrao]]></dc:creator>
		<pubDate>Sat, 25 Sep 2010 05:45:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-89351</guid>
		<description><![CDATA[Hi, pinal,

what exactly the difference between schema and role , i need to  read permission to the user when i opened a windows in ssms it is showing schemas - datareader and role - datareader what should i select, i understand about the schema what u said as above but little bit confusing about schemas and roles.

Thanks pinal]]></description>
		<content:encoded><![CDATA[<p>Hi, pinal,</p>
<p>what exactly the difference between schema and role , i need to  read permission to the user when i opened a windows in ssms it is showing schemas &#8211; datareader and role &#8211; datareader what should i select, i understand about the schema what u said as above but little bit confusing about schemas and roles.</p>
<p>Thanks pinal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Newbieman</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-81868</link>
		<dc:creator><![CDATA[Newbieman]]></dc:creator>
		<pubDate>Tue, 27 Jul 2010 15:23:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-81868</guid>
		<description><![CDATA[Mr. Pinal,

Here is my scenario: I transferred a database with two different schema namely dbo, and hilmarc to a new server.  Both server is SQL Server 2005, the problem is every time  i try to run my query with schema name hilmarc on the new server  i get the error message &quot;Invalid object name&quot; but when i put the name of the schema hilmarc  before the name of the table it&#039;s working.  

What i want to know is how can i execute my query without indicating the schema name. I have a lots of query to change if i need to include the schema. 

Please help. Thanks!]]></description>
		<content:encoded><![CDATA[<p>Mr. Pinal,</p>
<p>Here is my scenario: I transferred a database with two different schema namely dbo, and hilmarc to a new server.  Both server is SQL Server 2005, the problem is every time  i try to run my query with schema name hilmarc on the new server  i get the error message &#8220;Invalid object name&#8221; but when i put the name of the schema hilmarc  before the name of the table it&#8217;s working.  </p>
<p>What i want to know is how can i execute my query without indicating the schema name. I have a lots of query to change if i need to include the schema. </p>
<p>Please help. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mr. kwofie Joseph</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-67205</link>
		<dc:creator><![CDATA[Mr. kwofie Joseph]]></dc:creator>
		<pubDate>Tue, 27 Apr 2010 18:17:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-67205</guid>
		<description><![CDATA[I am a student and I want to know more about SQL server, how is it differ from the others.]]></description>
		<content:encoded><![CDATA[<p>I am a student and I want to know more about SQL server, how is it differ from the others.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran Mohammed</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-62873</link>
		<dc:creator><![CDATA[Imran Mohammed]]></dc:creator>
		<pubDate>Sat, 13 Mar 2010 16:28:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-62873</guid>
		<description><![CDATA[@Jamie

According to me there should not be any performance issue if you create multiple Schema&#039;s considering.

SQL Experts can give more details.

~ IM.]]></description>
		<content:encoded><![CDATA[<p>@Jamie</p>
<p>According to me there should not be any performance issue if you create multiple Schema&#8217;s considering.</p>
<p>SQL Experts can give more details.</p>
<p>~ IM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-62867</link>
		<dc:creator><![CDATA[Jamie]]></dc:creator>
		<pubDate>Sat, 13 Mar 2010 14:53:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-62867</guid>
		<description><![CDATA[If there are two schema in one database, is there an impact on the database performance? If yes, please provide more details. Thank you.]]></description>
		<content:encoded><![CDATA[<p>If there are two schema in one database, is there an impact on the database performance? If yes, please provide more details. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arshad</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-62593</link>
		<dc:creator><![CDATA[arshad]]></dc:creator>
		<pubDate>Wed, 10 Mar 2010 06:57:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-62593</guid>
		<description><![CDATA[Dear Pinal,

Please brief me the use of casting any variable to varbinary for comparison of varchar type data

WHere cast(@Username as varbinary(20))=cast(Username as varbinary(20))]]></description>
		<content:encoded><![CDATA[<p>Dear Pinal,</p>
<p>Please brief me the use of casting any variable to varbinary for comparison of varchar type data</p>
<p>WHere cast(@Username as varbinary(20))=cast(Username as varbinary(20))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tzally Frish</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-60925</link>
		<dc:creator><![CDATA[Tzally Frish]]></dc:creator>
		<pubDate>Wed, 10 Feb 2010 08:52:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-60925</guid>
		<description><![CDATA[Dear Pinal,

One may encounter many people with a great deal of knowledge and experience. Yet it is a great pleasure reading vast knowledge that is clearly and simply put - especialy when the material in itself is not necessarily simple.
After reading some of your papers here I cannt escape Albert Einstein&#039;s strong opinion the importance of simplicity.

Thnaks and all the best,

Tzally]]></description>
		<content:encoded><![CDATA[<p>Dear Pinal,</p>
<p>One may encounter many people with a great deal of knowledge and experience. Yet it is a great pleasure reading vast knowledge that is clearly and simply put &#8211; especialy when the material in itself is not necessarily simple.<br />
After reading some of your papers here I cannt escape Albert Einstein&#8217;s strong opinion the importance of simplicity.</p>
<p>Thnaks and all the best,</p>
<p>Tzally</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PAmelah</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-60139</link>
		<dc:creator><![CDATA[PAmelah]]></dc:creator>
		<pubDate>Sat, 23 Jan 2010 12:45:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-60139</guid>
		<description><![CDATA[Warm greetings. I have have applitiated your explanation about database schema. Then, I w&#039;d like to know its different from Database disign.
Thanks]]></description>
		<content:encoded><![CDATA[<p>Warm greetings. I have have applitiated your explanation about database schema. Then, I w&#8217;d like to know its different from Database disign.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tarun</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-57261</link>
		<dc:creator><![CDATA[Tarun]]></dc:creator>
		<pubDate>Mon, 02 Nov 2009 06:24:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-57261</guid>
		<description><![CDATA[Hi Pinal,

I have created 2 schemas in one database and trying to run the script in order to create tables under schemas. but problem is that script has another schema inside it and when i run that script its giving me error like: 
&quot;
User does not have permission to perform this action.
Msg 2759, Level 16, State 0, Line 2
CREATE SCHEMA failed due to previous errors.&quot;

E.g

I have 2 schemas say Tarun1,Tarun2 under abc database. now I want to add some table under Tarun1, Tarun2 schema.

Here is script: 
-- Create schema for common tables
create schema CM_FRAMEWORK_TABLES
;

-- Create common tables
create table CM_FRAMEWORK_TABLES.Table1(
	ID 	nvarchar(20) not null,
	TYPE	nvarchar(50) not null,
	SCRIPT	varbinary(max),
	   primary key(ID, TYPE)
)
;

Can we add CM_Framework_Tables schema under Tarun1 schema? If yes then please suggest me how we can do that? what Kind of permissions we need?


Waiting for your reply!
Thanks in advance

Tarun]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>I have created 2 schemas in one database and trying to run the script in order to create tables under schemas. but problem is that script has another schema inside it and when i run that script its giving me error like:<br />
&#8221;<br />
User does not have permission to perform this action.<br />
Msg 2759, Level 16, State 0, Line 2<br />
CREATE SCHEMA failed due to previous errors.&#8221;</p>
<p>E.g</p>
<p>I have 2 schemas say Tarun1,Tarun2 under abc database. now I want to add some table under Tarun1, Tarun2 schema.</p>
<p>Here is script:<br />
&#8211; Create schema for common tables<br />
create schema CM_FRAMEWORK_TABLES<br />
;</p>
<p>&#8211; Create common tables<br />
create table CM_FRAMEWORK_TABLES.Table1(<br />
	ID 	nvarchar(20) not null,<br />
	TYPE	nvarchar(50) not null,<br />
	SCRIPT	varbinary(max),<br />
	   primary key(ID, TYPE)<br />
)<br />
;</p>
<p>Can we add CM_Framework_Tables schema under Tarun1 schema? If yes then please suggest me how we can do that? what Kind of permissions we need?</p>
<p>Waiting for your reply!<br />
Thanks in advance</p>
<p>Tarun</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: khrizthian</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-55729</link>
		<dc:creator><![CDATA[khrizthian]]></dc:creator>
		<pubDate>Tue, 08 Sep 2009 22:44:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-55729</guid>
		<description><![CDATA[Thnx Pinal, now I Understand schemas, I would like more about how to use it and examples if possible.

Khrizthian]]></description>
		<content:encoded><![CDATA[<p>Thnx Pinal, now I Understand schemas, I would like more about how to use it and examples if possible.</p>
<p>Khrizthian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Tkatch</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-55712</link>
		<dc:creator><![CDATA[Brian Tkatch]]></dc:creator>
		<pubDate>Tue, 08 Sep 2009 13:37:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-55712</guid>
		<description><![CDATA[@sunil

Perhaps you can use an IDENTITY COLUMN storing just the number, and format it when the user want to see it.]]></description>
		<content:encoded><![CDATA[<p>@sunil</p>
<p>Perhaps you can use an IDENTITY COLUMN storing just the number, and format it when the user want to see it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kuldip</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-55683</link>
		<dc:creator><![CDATA[Kuldip]]></dc:creator>
		<pubDate>Tue, 08 Sep 2009 04:45:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-55683</guid>
		<description><![CDATA[Nice explanation of schema i don&#039;t know the 
advantages of schema before that article.]]></description>
		<content:encoded><![CDATA[<p>Nice explanation of schema i don&#8217;t know the<br />
advantages of schema before that article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sunil</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-55666</link>
		<dc:creator><![CDATA[sunil]]></dc:creator>
		<pubDate>Mon, 07 Sep 2009 12:53:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-55666</guid>
		<description><![CDATA[hi pinal,
           I have to create a primary key in the following format
ERD001,the value of numerical part will increase on subsequent inserts,like ERD002,ERD003,ERD004]]></description>
		<content:encoded><![CDATA[<p>hi pinal,<br />
           I have to create a primary key in the following format<br />
ERD001,the value of numerical part will increase on subsequent inserts,like ERD002,ERD003,ERD004</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stanley</title>
		<link>http://blog.sqlauthority.com/2009/09/07/sql-server-importance-of-database-schemas-in-sql-server/#comment-55658</link>
		<dc:creator><![CDATA[Stanley]]></dc:creator>
		<pubDate>Mon, 07 Sep 2009 07:19:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=6735#comment-55658</guid>
		<description><![CDATA[Dear Pinal,

Greetings to you. I would like to maintain two database. one for storing the data from the GUI and another database for reporting service(SSRS).

Now i want to move the data from orginal database to reporting database. how can i handle, either through trigger or any other method.

Need advice.

Thanks in advance.

Stanley Christopher R]]></description>
		<content:encoded><![CDATA[<p>Dear Pinal,</p>
<p>Greetings to you. I would like to maintain two database. one for storing the data from the GUI and another database for reporting service(SSRS).</p>
<p>Now i want to move the data from orginal database to reporting database. how can i handle, either through trigger or any other method.</p>
<p>Need advice.</p>
<p>Thanks in advance.</p>
<p>Stanley Christopher R</p>
]]></content:encoded>
	</item>
</channel>
</rss>

