<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>procedure &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/procedure/</link>
	<description>Feed of posts on WordPress.com tagged "procedure"</description>
	<pubDate>Sun, 29 Nov 2009 16:24:18 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[MySQL Stored Procedure : Variables in Cursor - Solutio ]]></title>
<link>http://sekarpdkt.wordpress.com/2009/11/29/mysql-work-around-for-handling-variables-in-cursor/</link>
<pubDate>Sun, 29 Nov 2009 13:26:59 +0000</pubDate>
<dc:creator>Sekar S</dc:creator>
<guid>http://sekarpdkt.wordpress.com/2009/11/29/mysql-work-around-for-handling-variables-in-cursor/</guid>
<description><![CDATA[MySQL stored procedures does not support variables in cursors. Here is a work around for handling th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>MySQL stored procedures does not support variables in cursors. Here is a work around for handling the same.</p>
<p>It uses simple logic of creating a temporary cursor table, which will store required cursor information. Add additional column for storing the status&#8230; Read the content one by one from the cursor table.</p>
<p><strong>Step #1:</strong> Create temporary <strong>cursorTable </strong>like normal table.Add a column to track, whether you have processed it or no</p>
<p><em>SET @myQuery = CONCAT(&#8216;CREATE TABLE IF NOT EXISTS cursorTable(<br />
ObjectType varchar(64) default  NULL,<br />
ObjectTypeID bigint unsigned NOT NULL,<br />
TableName varchar(64) default NULL,<br />
STATUS char(1) DEFAULT &#8220;N&#8221;,<br />
KEY STATUS(STATUS),<br />
KEY ObjectType(ObjectType),<br />
KEY ObjectTypeID(ObjectTypeID),<br />
KEY TableName(TableName)<br />
) &#8212; ENGINE=MEMORY &#8216; );<br />
CALL executeQuery(@myQuery);<br />
</em></p>
<p><em>SET  @myQuery = CONCAT(&#8220;INSERT INTO cursorTable<br />
SELECT &#8216;&#8221;,ObjectType,&#8221;&#8216;, T.&#8221;,TypeTableTypeField,&#8221;,UPPER(T.TABLENAME),&#8217;N&#8217;<br />
FROM &#8220;,@myDBName,&#8221;.&#8221;,TypeTable,&#8221; T<br />
where T.TableName IS NOT NULL<br />
GROUP BY T.TableName<br />
ORDER BY T.TableName<br />
&#8220;);<br />
CALL executeQuery(@myQuery);<br />
</em></p>
<p>Ex:</p>
<p>create table temptables.CursorTable select distinct myID, &#8216;N&#8217; Processed from mastertable where &#60;some condition&#62;;</p>
<p>As this is a standard statement, you can use prepared statement.</p>
<p>Step #2: declare cursorCount as 0&#60;<strong>zero</strong>&#62;. Note : It is a global variable. So no need to declare it earlier. It is visible for all procedures executed through the same connection</p>
<p>Ex :</p>
<p><em>set @cursorCount=0;</em></p>
<p>Step #3: Now set @cursorCount as actual counts need to be handled. Use following prepared statement. Trick is by using global variable ie <strong>&#8216;@&#8217;&#8230;</strong></p>
<p><em>SET  @myQuery = CONCAT(&#8220;select count(*) INTO @cursorCount<br />
from cursorTable<br />
where STATUS = &#8216;N&#8217;<br />
AND ObjectType = &#8216;&#8221;,ObjectType,&#8221;&#8216;<br />
&#8220;);<br />
CALL executeQuery(@myQuery);</em></p>
<p>Step #4: Now you handle it with in a while loop. With in while loop also, you read data from your cursorTable through select into global variable.</p>
<p><em>WHILE (@cursorCount&#62; 0) DO<br />
SET  @myQuery = CONCAT(&#8220;select TableName INTO @EXT_TblNm<br />
from cursorTable<br />
where STATUS = &#8216;N&#8217;<br />
AND ObjectType = &#8216;&#8221;,ObjectType,&#8221;&#8216;<br />
LIMIT 1&#8243;);<br />
CALL executeQuery(@myQuery);</em></p>
<p><em><br />
SET  @myQuery = CONCAT(&#8220;update cursorTable<br />
SET STATUS = &#8216;Y&#8217;<br />
where TableName = &#8216;&#8221;,@EXT_TblNm,&#8221;&#8216;<br />
AND ObjectType = &#8216;&#8221;,ObjectType,&#8221;&#8216;<br />
AND STATUS = &#8216;N&#8217;&#8221;);<br />
CALL executeQuery(@myQuery);<br />
</em><br />
&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. Process you cursor variables here</p>
<p><em>SET  @myQuery = CONCAT(&#8220;select count(*) INTO @cursorCount<br />
from cursorTable<br />
where STATUS = &#8216;N&#8217;<br />
AND ObjectType = &#8216;&#8221;,ObjectType,&#8221;&#8216;&#8221;);<br />
CALL executeQuery(@myQuery);<br />
END WHILE;<br />
</em></p>
<p>If require, drop your cursorTable here&#8230;</p>
<p>Hope it will be useful for some one.</p>
<p>Note : executeQuery(@myQuery);</p>
<p>It is a simple procedure, which logs all query along with execution time in my development environment. In production environment, it just executes the query. As I am logging all queries, it is easy for us to know actual query which failed.</p>
<p><em>DECLARE myLogID BIGINT UNSIGNED DEFAULT 0;<br />
SET @executeQuery = CONCAT(&#8220;insert into log(LOG) values(&#8216;&#8221;,REPLACE(userQuery,&#8217;\&#8221;,&#8217;\\\&#8221;),&#8221;&#8216;)&#8221;);<br />
PREPARE executeQueryStmt FROM @executeQuery;<br />
EXECUTE executeQueryStmt;<br />
DEALLOCATE PREPARE executeQueryStmt;</p>
<p>SELECT LAST_INSERT_ID() INTO myLogID;<br />
SET @executeQuery = userQuery;<br />
PREPARE executeQueryStmt FROM @executeQuery;<br />
EXECUTE executeQueryStmt;<br />
DEALLOCATE PREPARE executeQueryStmt;<br />
SET @executeQuery = CONCAT(&#8220;UPDATE log<br />
SET STATUS = &#8216;S&#8217;,<br />
StartTimeStamp = StartTimeStamp,<br />
EndTimeStamp = NULL<br />
where ID = &#8220;,myLogID);<br />
PREPARE executeQueryStmt FROM @executeQuery;<br />
EXECUTE executeQueryStmt;<br />
DEALLOCATE PREPARE executeQueryStmt;<br />
</em></p>
<p>S.Sekar</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Dossier compleet]]></title>
<link>http://roots2wings.wordpress.com/2009/11/27/dossier-compleet/</link>
<pubDate>Fri, 27 Nov 2009 18:16:32 +0000</pubDate>
<dc:creator>roots2wings</dc:creator>
<guid>http://roots2wings.wordpress.com/2009/11/27/dossier-compleet/</guid>
<description><![CDATA[Vandaag bericht gekregen van Femke (onze dossierbeheerder bij Buysse) dat onze laatste dossierstukke]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Vandaag bericht gekregen van Femke (onze dossierbeheerder bij Buysse) dat onze laatste dossierstukken toegekomen zijn:<br />
* de verklaring van de bank i.v.m. onze financiële middelen Als je wilt immigreren naar Canada, dan moet je dus aan een aantal voorwaarden voldoen, maar daarnaast moet je dus ook kunnen aantonen dat je een bepaald bedrag aan geld hebt. Voor ons gezin, met 3 personen, wil dat zeggen dat wij moeten kunnen bewijzen dat we $16,580 hebben. Detail: <a href="http://www.cic.gc.ca/English/immigrate/skilled/funds.asp">http://www.cic.gc.ca/English/immigrate/skilled/funds.asp</a><br />
* een recent uittreksel uit het Strafregister dat je aan moet vragen bij de Federale Overheidsdienst Justitie en dat stelt dat je geen veroordelingen hebt.</p>
<p> De vertalingen hadden we al eerder laten uitvoeren, dus Femke gaat volgende week ons dossier voor Parijs helemaal klaarmaken en voorzien van een begeleidend briefje.</p>
<p>Ondertussen hebben we ook iemand lang laten komen om een Energie Prestatie Certificaat (EPC) op te stellen. Dit is voortaan een document dat je verplicht voor moet kunnen leggen als je je huis wilt verkopen. Persoonlijk vind ik het allemaal een beetje geldklopperij, maar ja, zonder dit ding kan de verkoop niet doorgaan.<br />
Nu moeten we enkel nog eens goed nadenken of we ons huis in januari op de markt brengen, of dat we toch gaan wachten tot we een oproep medical krijgen&#8230;</p>
<p>Ondertussen heb ik ook via Inge Roggeman van Vlamingen in  de Wereld (<a href="http://www.viw.be/home.htm">http://www.viw.be/home.htm</a>) navraag gedaan of zij misschien een  Vlaming kennen die dezelfde procedure als ons doorloopt (Federal Skilled Worker visum zonder jobaanbod wegens een job op de POL-lijst in skill level 0). Die kans zal klein zijn, maar je weet maar nooit! En als die persoon dan zijn aanvraag nog voor de onze heeft ingestuurd, dan kunnen we daar kijken hoe snel/traag ze in Parijs zijn&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[วิธีการตัดชิ้นเนื้อไต]]></title>
<link>http://sclaimon.wordpress.com/2009/11/26/%e0%b8%a7%e0%b8%b4%e0%b8%98%e0%b8%b5%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%95%e0%b8%b1%e0%b8%94%e0%b8%8a%e0%b8%b4%e0%b9%89%e0%b8%99%e0%b9%80%e0%b8%99%e0%b8%b7%e0%b9%89%e0%b8%ad%e0%b9%84%e0%b8%95/</link>
<pubDate>Thu, 26 Nov 2009 16:56:54 +0000</pubDate>
<dc:creator>SoClaimon</dc:creator>
<guid>http://sclaimon.wordpress.com/2009/11/26/%e0%b8%a7%e0%b8%b4%e0%b8%98%e0%b8%b5%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%95%e0%b8%b1%e0%b8%94%e0%b8%8a%e0%b8%b4%e0%b9%89%e0%b8%99%e0%b9%80%e0%b8%99%e0%b8%b7%e0%b9%89%e0%b8%ad%e0%b9%84%e0%b8%95/</guid>
<description><![CDATA[3020950    วิธีการตัดชิ้นเนื้อไต    Renal Biopsy Procedure หลัก และการแปลผลพยาธิสภาพของชิ้นเนื้อ วิธ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>3020950    วิธีการตัดชิ้นเนื้อไต    Renal Biopsy Procedure</p>
<p>หลัก และการแปลผลพยาธิสภาพของชิ้นเนื้อ วิธีการในการตัดชิ้นเนื้อไต การเก็บชิ้นเนื้อให้ถูกต้อง เพื่อช่วยในการวินิจฉัย การพยากรณ์โรค และการรักษาโรคไต</p>
<p>(Principles, method of renal biopsy and proper tissue collection, and interpretation of biopsy findings for diagnosis, prognosis and treatment of the particular disease.)</p>
<p>(3020950 จุฬาลงกรณ์มหาวิทยาลัย)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[PLSQL Oracle Stored Procedure]]></title>
<link>http://rhde.wordpress.com/2009/11/26/plsql-oracle-stored-procedure/</link>
<pubDate>Thu, 26 Nov 2009 13:03:23 +0000</pubDate>
<dc:creator>rhde</dc:creator>
<guid>http://rhde.wordpress.com/2009/11/26/plsql-oracle-stored-procedure/</guid>
<description><![CDATA[Create Procedure Zum Anlegen oder Ändern einer Procedure wird das Recht &#8220;CREATE PROCEDURE]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Create Procedure</strong></p>
<p>Zum Anlegen oder Ändern einer Procedure wird das Recht &#8220;CREATE PROCEDURE&#8221; benötigt.</p>
<p>Anlegen:</p>
<pre>
create or replace procedure proc_ascii
as
  type t_ascii is varray(256) of char(1);
  a_ascii t_ascii;
begin null;
  a_ascii := t_ascii();
  a_ascii.extend(256);
  for i in 1 .. a_ascii.limit-1 loop
    a_ascii(i) := chr(i-1);
    dbms_output.put_line(i &#124;&#124; ' ' &#124;&#124; chr(i-1));
  end loop;
end;
</pre>
<p><strong>Drop Procedure</strong></p>
<p>Das Löschen einer Procedure erfolgt mit &#8220;DROP PROCEDURE -name-&#8221;.</p>
<p><strong>Aufruf Procedure</strong></p>
<p>Ausführen (1):</p>
<pre>exec proc_acsii</pre>
<p>Ausführen (2):</p>
<pre>begin proc_acsii;
end;</pre>
<p><strong>Kompilerfehler</strong></p>
<p>Wenn eine Fehlermeldung beim Anlegen kommt kann mit &#8220;show errors&#8221; die Meldung angezeigt werden.</p>
<p><strong>Parameter</strong></p>
<p>Parameter können innerhalb der Procedure nur lesend verwendet werden.</p>
<pre>
create or replace procedure proc_ascii(p_bis in number default 256)
as
  type t_ascii is table of char(1);
  a_ascii t_ascii;
begin null;
  a_ascii := t_ascii();
  a_ascii.extend(p_bis);
  for i in 1 .. p_bis loop
    a_ascii(i) := chr(i-1);
    dbms_output.put_line(i &#124;&#124; ' ' &#124;&#124; chr(i-1));
  end loop;
end;
</pre>
<p><b>Rückgaben</b></p>
<pre>
create or replace procedure proc_add(p_in in number, p_out out number)
as
begin null;
  p_out := p_in + 1;
end;
</pre>
<pre>
declare
  v_out number;
begin
  proc_add(10,v_out);
  dbms_output.put_line(v_out); /* 11 */
end;
</pre>
<pre>
declare
  v_out number;
begin
  proc_add(p_out=&#62;v_out,p_in=&#62;10);
  dbms_output.put_line(v_out); /* 11 */
end;
</pre>
<p>By-Reference:</p>
<pre>
create or replace procedure proc_add(p_inout in out number)
as
begin null;
  p_inout := p_inout + 1;
end;
</pre>
<pre>
declare
  v_inout number;
begin
  v_inout := 10;
  proc_add(v_inout);
  dbms_output.put_line(v_inout); /* 11 */
end;
</pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[What Strategic Planning is not?]]></title>
<link>http://asifjmir.wordpress.com/2009/11/26/what-strategic-planning-is-not/</link>
<pubDate>Thu, 26 Nov 2009 04:01:57 +0000</pubDate>
<dc:creator>Asif Mir</dc:creator>
<guid>http://asifjmir.wordpress.com/2009/11/26/what-strategic-planning-is-not/</guid>
<description><![CDATA[Clearly, strategic planning is no panacea. Strategic planning is simply a set of concepts, procedure]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Clearly, strategic planning is no panacea. Strategic planning is simply a set of concepts, procedures, and tools designed to help leaders, managers, and planners think and act strategically. Used in wise and skillful ways by a “coalition of the willing,” strategic planning can help organizations focus on producing effective decisions and actions that further the organization’s mission, meet in mandates, and satisfy key stakeholders. But strategic planning is not a substitute for strategic thinking and acting. Only caring and committed people can do that. And when used thoughtlessly, strategic planning can actually drive out precisely the kind of strategic thought and action it is supposed to promote.</p>
<p>Furthermore, strategic planning is not a substitute for leadership. There is simply no substitute for leadership when it comes to using strategic planning to enhance organizational performance. At least some key decision makers and process champions must be committed to the strategic planning process, or any attempts to use it are bound to fail.</p>
<p>In addition, strategic planning is not synonymous with creating an organizational strategy. Organizational strategies have numerous sources, both planned and unplanned. Strategic planning is likely to result in statement of organizational intentions, but what is realized in practice will be some combination of what is intended and what emerges along the way. Strategic planning can help organizations develop and implement effective strategies, but they should also remain open to unforeseen opportunities. Too much attention to strategic planning and excessive reverence for strategic plans can build organizations to other unplanned and unexpected—yet incredibly useful—sources of information, insight, and action.</p>
<p>The discipline necessary for strategic planning can be of two sorts. The first harkens back to Latin root of the word “discipline,” emphasizing instruction, training, education, and learning. The second embodies later interpretations of the word, emphasizing order, control, and punishment. Emphasis should be placed on education and learning, although there clearly are occasions when imposing order, taking control, and enforcing appropriate sanctions are appropriate. Certainly, key leaders, managers, and planners can best use strategic planning as an educational and learning tool, to help them figure out what is really important and what should be done about it. Sometimes this means following a particular sequence of steps and preparing formal strategic plans, but not necessarily. The ultimate goal of strategic planning should not be a rigid adherence to a particular process or an instance on the production of plans. Instead, strategic planning should promote wise strategic thought and action on behalf of an organization and its key stakeholders. What steps to follow, in what sequence, and whether or not to prepare formal plans are subsidiary concerns.</p>
<p>My Consultancy–<a title="Asif J. Mir" href="http://www.asifjmir.com/" target="_blank">Asif J. Mir </a>- Management Consultant–transforms organizations where people have the freedom to be creative, a place that brings out the best in everybody–an open, fair place where people have a sense that what they do matters. For details please visit <a title="Asif J. Mir" href="http://www.asifjmir.com/" target="_blank">www.asifjmir.com</a>, and my <a href="http://www.youtube.com/asifjmir">Lectures</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Philosophy, Policy And Procedure]]></title>
<link>http://driscollitsyourbusiness.wordpress.com/2009/11/25/philosophy-policy-and-procedure-2/</link>
<pubDate>Wed, 25 Nov 2009 20:45:41 +0000</pubDate>
<dc:creator>jldandco</dc:creator>
<guid>http://driscollitsyourbusiness.wordpress.com/2009/11/25/philosophy-policy-and-procedure-2/</guid>
<description><![CDATA[Every growing business develops a need for rules and regulations. It might begin with customer probl]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Every growing business develops a need for rules and regulations. It might begin with customer problems, employees or suppliers, but before too long there will be a need in all of these areas for formal administrative procedures. I can&#8217;t say for sure where the threshold is, it may be when you have two employees or perhaps at 20, but as your business grows, so do the rules, regulations and restrictions.</p>
<p>This is a crucial transition period for any organization. Items such as normal working hours, vacation schedules, customer relations and salaries, all of which originally took care of themselves, now require some formality.</p>
<p>The new restrictions generally prove to be inadequate. The transition rarely goes smoothly as the first &#8220;rules&#8221; don&#8217;t make anybody happy. Exceptions will be made, more rules, more problems and more frustration will follow. It is at this time that founders and managers often become frustrated while others become confused.</p>
<p>Responding to problems with rules, regulations and restrictions, is a common trap for a growing business, a trap which many well established companies never escape. It doesn&#8217;t need to be that way. If a business takes the time to articulate its philosophy on the major issues that it will face, the problems can be resolved in an orderly and consistent manner.</p>
<p>Philosophy, policy and procedure hold the solution to this transition. Start with the articulation of your company&#8217;s philosophy, establish policies that embody those philosophies and implement procedures that will insure that your business operates consistent with your established policy.</p>
<p>It&#8217;s not uncommon for a company to make well intended statements about its philosophy. Unless these statements are well thought out, formalized and supported with consistent policies and procedures to insure their implementation however, they will cause more problems that they will solve.</p>
<p>There are many businesses that profess that their employees are their most important asset. Then they attempt to pay the employees as little as possible while buying expensive equipment for them to operate. It is clear which is the most important asset.</p>
<p>There is nothing wrong with a company that recognizes that its machinery is its most important asset. Actions must be consistent however. If the employees are the most important asset, personnel policies should reflect that importance.</p>
<p>A company&#8217;s philosophy should be articulated in a statement of purpose that contains a definition of the business that the company is in and its objectives for that business. It should include well thought out positions on all major elements of the business such as customers, employees, community and suppliers. It will form the basis for the logical development of company polices and procedures as it grows.</p>
<p>A company that believes their employees are their most important asset might go on to state that they will only employ above average performers and that they will endeavor to create an environment that will enable highly motivated individuals to contribute to the fullest extent of their abilities. Policies will need to be established to insure that the company operates consistent with that philosophy.</p>
<p>For example, if the company is committed to employing above average performers, it must be prepared to develop compensation programs that are above average. If your employees are truly your most important asset and your business philosophy is to employ the best, it would be inconsistent to have a low wage scale.</p>
<p>Once you establish a policy to compensate above average performers with above average wages, you must establish procedures to evaluate performance and to determine what above average compensation is in your area. Your evaluation system must provide reward for the achievers, assistance for those who would like to be achievers and an exit mechanism for those who don&#8217;t fit your requirements.</p>
<p>From a statement of philosophy concerning your relationship with employees, a natural progression towards the development of policies and procedures for salary administration, performance review, termination and other personnel related matters will evolve. Now isn&#8217;t that better than waiting until your most important assets are about to walk out the door. It&#8217;s the right way to handle all aspects of your business.</p>
<p>Because its your business, start with philosophy, policy and procedures in place of rules, regulations and restrictions.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[SCRIBEFIRE3FhoTalT2eSCRIBEFIRE]]></title>
<link>http://firebirdlikebrasil.wordpress.com/2009/11/25/scribefire3fhotalt2escribefire/</link>
<pubDate>Wed, 25 Nov 2009 11:01:37 +0000</pubDate>
<dc:creator>exodusthesmith</dc:creator>
<guid>http://firebirdlikebrasil.wordpress.com/2009/11/25/scribefire3fhotalt2escribefire/</guid>
<description><![CDATA[SCRIBEFIREOZmtvGSaSCRIBEFIRE]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>SCRIBEFIREOZmtvGSaSCRIBEFIRE</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Split]]></title>
<link>http://firebirdlikebrasil.wordpress.com/2009/11/24/split/</link>
<pubDate>Tue, 24 Nov 2009 19:05:05 +0000</pubDate>
<dc:creator>exodusthesmith</dc:creator>
<guid>http://firebirdlikebrasil.wordpress.com/2009/11/24/split/</guid>
<description><![CDATA[O objetivo desta função é separar valores de um string, retornando registros separados para cada uma]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>O objetivo desta função é separar valores de um string, retornando registros separados para cada uma.</p>
<p><strong>Ex:</strong></p>
<p>SELECT *   <br />FROM P_SPLIT (‘joao, maria, paulo, vanessa, claudia, marcos’, ‘,’)</p>
<p><strong>Retorna:</strong></p>
<p>joao   <br />maria    <br />paulo    <br />vanessa    <br />claudia    <br />marcos</p>
<pre style="font-family:courier new;">CREATE PROCEDURE P_SPLIT (
    itexto VARCHAR(4000),
    iseparador CHAR(1))
RETURNS (
    osplit VARCHAR(20))
AS
/*
* Autor:        Fabricio
* Data:         2009/11/23
* Desc:         Simula a função split comum nas linguagens de programação
* Parâmetros:
*   @itexto         String contendo o texto que irá ser separado
*   @iseparador     Caracter que será utilizado para separar o texto recebido
*/
DECLARE VARIABLE vtexto VARCHAR(4000);
DECLARE VARIABLE vposicao INTEGER;
DECLARE VARIABLE vposicao_inicial INTEGER;
DECLARE VARIABLE vsplit VARCHAR(4000);
BEGIN
    vtexto = itexto;
    vposicao_inicial = 1;
    vposicao = 1;

    IF (iseparador IS NULL OR itexto IS NULL OR iseparador = '') THEN
    BEGIN
        -- Sai da função sem executar
    END
    ELSE
    BEGIN
        WHILE (CHAR_LENGTH(vtexto) &#62; 0) DO
        BEGIN
            vposicao = POSITION (:iseparador, vtexto, vposicao_inicial);
            IF (vposicao &#60;= 0) THEN
            BEGIN
                vsplit = SUBSTRING (:vtexto FROM :vposicao_inicial FOR
                        CHAR_LENGTH (:vtexto) - vposicao_inicial + 1);
                IF (NOT :vsplit IS NULL AND NOT :vsplit = '') THEN
                BEGIN
                    osplit = :vsplit;
                    SUSPEND;
                END
                BREAK;
            END
            vsplit = SUBSTRING (:vtexto FROM :vposicao_inicial
                    FOR :vposicao - vposicao_inicial);
            IF (NOT :vsplit IS NULL AND NOT :vsplit = '') THEN
            BEGIN
                osplit = :vsplit;
            END
            vsplit = NULL;
            vposicao_inicial = :vposicao + 1;
            SUSPEND;
        END
    END
END</pre>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=34ccf04b-ee2e-871d-b036-76d122b690be" /></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9fmtkaty.wordpress.com/2009/11/24/procedure/</link>
<pubDate>Tue, 24 Nov 2009 18:10:51 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9fmtkaty.wordpress.com/2009/11/24/procedure/</guid>
<description><![CDATA[Copy the table shown on the next page. Collect five substances from your teacher. perform the tests ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><ol>
<li>Copy the table shown on the next page.</li>
<li>Collect five substances from your teacher.</li>
<li>perform the tests described below to identify the properties of the substance. Dont have to do in order, but you must do them all.</li>
<li>Make sure the data table is complete before you begin part two.</li>
<li>Use the black sheet of paper for all samples, place a small amount for each, but make sure they dont touch.</li>
<li>Describe appearance of each powder.</li>
<li>Use a hand lens/microscope to look at it. Record observations.</li>
<li>Dispose of powders and paper.</li>
<li>Use one sheet of wax paper/spot plate. Place small amounts ofpowder on each thing.</li>
<li>Add drop of water.</li>
<li>Dispose of paper and powders.</li>
<li>Place powder on new wax paper/clean spot.</li>
<li>Add drop of acetic acid or hydrochloric acid. Record.</li>
<li>Dispose of substances.</li>
<li>Place powder on wax sheet/spot plate.</li>
<li>Add drop of  iodine. Record.</li>
<li>Dispose of substances.</li>
<li>Collect unknown saple. Recordlatter of number.</li>
<li>Determine the properties by repeating the five tests above. Record in data table.</li>
</ol>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9justin.wordpress.com/2009/11/24/procedure/</link>
<pubDate>Tue, 24 Nov 2009 05:45:15 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9justin.wordpress.com/2009/11/24/procedure/</guid>
<description><![CDATA[Procedure: Copy the table shown on the next page Collect all five substances Perform the tests descr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Procedure:</strong></p>
<ol>
<li>Copy the table shown on the next page</li>
<li>Collect all five substances</li>
<li>Perform the tests described below to identify the properties of the substances</li>
<li>Complete the table before beginning part 2</li>
<li>Use one sheet of black paper for all the sample. Place a small amount of each powder in different places on the paper, without any touching another substance</li>
<li>Describe the appearance and record your observations in the data table</li>
<li>Use a hand lens or microscope to examine the grains of each powder. Record your observations in the data table</li>
<li>Dispose of the powders and the black paper in the container provided</li>
<li>Use on large sheet of wax paper or a spot plate for all your samples. Place a small amount of each powder on the wax paper or spot plate</li>
<li>Add a drop of water to each powder. Record your observations in the data table.</li>
<li>Dispose of the powders and the wax paper in the container provided. Clean the spot plate</li>
<li>Place a small amount of each powder on a new sheet of wax paper or a clean spot plate</li>
<li>Add a drop of 5% acetic acid solution or 5% hydrochloric acid solution to each powder. Record your observations in the data table</li>
<li>Dispose of the powders and the wax paper in the container provided. Clean the spot plate</li>
<li>Place a small amount of each powder on a new sheet of wax paper or a clean spot plate</li>
<li>Add a drop of iodine solution to each powder. Record your observation on the data table</li>
<li>Dispose of the powders and the wax paper in the container provided. clean the spot plate</li>
<li>Collect an unknown from your teacher.  Record the letter or number of the sample in the data table next to the word “unknown”</li>
<li>Determine the properties of the unknown sample  by repeating, the five tests above, and record your observations in the data table</li>
</ol>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9megan.wordpress.com/2009/11/24/procedure/</link>
<pubDate>Tue, 24 Nov 2009 05:40:35 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9megan.wordpress.com/2009/11/24/procedure/</guid>
<description><![CDATA[Part One: Copy the table on page 101 Recieve 5 substances from your teacher Preform all the tests on]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Part One:</strong></p>
<ol>
<li>Copy the table on page 101</li>
<li>Recieve 5 substances from your teacher</li>
<li>Preform all the tests on page 100 to identify the properties of the substances</li>
<li><em>Complete the table before starting part 2</em></li>
</ol>
<p><em><strong>Test 1- Appearance</strong></em></p>
<p>      5 .    On a small black sheet of paper, place a small amount of each powder in different places. <em>Remembering to not let them touch each other</em></p>
<p>      6.       Record/describe the appearance of each powder</p>
<p><strong><em>Test 2 &#8211; Crystal Shape</em></strong></p>
<p>      7.       Record/describe the grains of each powder. Use a hand lens or microscope</p>
<p>      8.        Dispose the powders and black paper</p>
<p><strong><em>Test 3 &#8211; Behavior in Water</em></strong></p>
<p>      9.        Using a largo sheet of wax paper/spot plate place a small amount of each powder .</p>
<p>     10.       Add a drop of water to each powder and record what you observe.</p>
<p>     11.        Dispose the powders and wax paper. Clean the spot plate</p>
<p><strong><em>Test 4- Behavior in Acids</em></strong></p>
<p>    12.         Place a small amount of each powder on wax paper or a spot plate</p>
<p>    13.         Add a drop of acetic or hydrocloric acid solution (5%) to each powder. record what you observe.</p>
<p>    14.         Dispose the powders and wax paper. Clean the spot plate</p>
<p><strong><em>Test 5- Behavior in Iodine</em></strong></p>
<p>    15.         Place a small amount of each powder on a sheet of wax paper or clean spot plate.</p>
<p>    16.         Add a drop of Iodine to each. Record what you observe.</p>
<p>    17.        Dispose of the powders and wax paper. Clean the spot plate well.</p>
<p><strong>Part Two : <em>Identifying unknown Substances</em></strong></p>
<p>    18.       Collect an unknown substance from your teacher and list it under &#8220;unknown&#8221;on your chart.</p>
<p>    19.        Determine the properties by repeating the 5 steps in part One. Record your observations on the chart.</p>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9kennedyl.wordpress.com/2009/11/24/procedure/</link>
<pubDate>Tue, 24 Nov 2009 05:37:11 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9kennedyl.wordpress.com/2009/11/24/procedure/</guid>
<description><![CDATA[1. copy table 2. collect 5 substances from your teacher 3. to identify the properties of the substan]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>1. copy table</p>
<p>2. collect 5 substances from your teacher</p>
<p>3. to identify the properties of the substances perform test described you dont have to do the tests in order but you do have to do all of them</p>
<p>you have to fill the data table before you begin activity #2</p>
<p>5. use 1 sheet of black paper 4 samples. place a small amount of each powder in different places on same sheet of paper. powders can&#8217;t touch</p>
<p>6. describe appearance or each powder, record observations</p>
<p>7. use hand lens or microscope to examine or record observations</p>
<p>8. dispose of powders and paper</p>
<p>9. use 1 sheet of wax paper/ spot plate place small amounts of powder on each thing</p>
<p>10. add drop of water</p>
<p>11. dispose of paper  and powder</p>
<p>12. place powder on new wax paper/ clean spot</p>
<p>13. add drop of acetic acid or hydrochloric acid record</p>
<p>14. dispose of substances</p>
<p>15. place powder on wax sheet/ spot plate</p>
<p>16. add drop of iodine record</p>
<p>17. dispose of substances</p>
<p>18. collect unknown sample. record letter of number</p>
<p>19. determine the properties by repeating the 5 tests above. Record in data table</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9paige.wordpress.com/2009/11/24/procedure/</link>
<pubDate>Tue, 24 Nov 2009 05:34:04 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9paige.wordpress.com/2009/11/24/procedure/</guid>
<description><![CDATA[#1 Procedure 1) Copy the table shown on the next page into your notebook. 2) Collect five substances]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h1 style="text-align:center;"><span style="color:#ff0000;">#1 Procedure</span></h1>
<p style="text-align:left;"><span style="color:#0000ff;">1) Copy the table shown on the next page into your notebook.</span></p>
<p style="text-align:left;"><span style="color:#0000ff;">2) Collect five substances from your teacher.</span></p>
<p style="text-align:left;"><span style="color:#0000ff;">3) Preform the tests described below to identify the properties of the substances. You do not have to do the texts in the order shown.</span></p>
<p style="text-align:left;"><span style="color:#0000ff;">4) Make sure the data  table is completely filled in before you begin part two.</span></p>
<h1 style="text-align:center;"><span style="color:#ff0000;">Test one Apperance</span></h1>
<p style="text-align:left;"><span style="color:#0000ff;">5) Use one sheet of black paper for all your sample. Place a small amount of powder in a different place on the same sheet. Don&#8217;t let them touch.</span></p>
<p style="text-align:left;"><span style="color:#0000ff;">6) Describe what you see.</span></p>
<h1 style="text-align:center;"><span style="color:#ff0000;">Test two Crystal Shape</span></h1>
<p style="text-align:left;"><span style="color:#0000ff;">7)Use a hand lens to describe how the powders look like, record in your table.</span></p>
<p style="text-align:left;"><span style="color:#0000ff;">8)Dispose of the sheet after you are done, and get a new one.</span></p>
<h1 style="text-align:center;"><span style="color:#ff0000;">Test three behaviour in water</span></h1>
<p style="text-align:left;"><span style="color:#0000ff;">9) Use one large sheet of wax for your samples. Put a small amount of each powder on your sheet.</span></p>
<p style="text-align:left;"><span style="color:#0000ff;">10) Add a drop of water to each powder then record in your data table.</span></p>
<p style="text-align:left;"><span style="color:#0000ff;">11) Dispose of the sheet when your done, then get a new one.</span></p>
<h1 style="text-align:center;"><span style="color:#ff0000;">Test four behaviour in acid</span></h1>
<p style="text-align:left;"><span style="color:#0000ff;">12) Place a small amount of powder on your new sheet.</span></p>
<p style="text-align:left;"><span style="color:#0000ff;">13) Add a drop of Acetic acid  to each powder, the record on your data table.</span></p>
<p style="text-align:left;"><span style="color:#0000ff;">14) Dispose of your sheet.</span></p>
<h1 style="text-align:center;"><span style="color:#ff0000;">Test five behaviour in iodine</span></h1>
<p style="text-align:left;"><span style="color:#0000ff;">15) Place a small amount of each powder on a new sheet of wax paper.</span></p>
<p style="text-align:left;"><span style="color:#0000ff;">16) Add a drop of iodine solution to each powder then observe and write in your data table.</span></p>
<p style="text-align:left;"><span style="color:#0000ff;">17) Dispose of your sheet.</span></p>
<h1 style="text-align:center;"><span style="color:#ff0000;">Part two unknown powder(s)</span></h1>
<p style="text-align:left;"><span style="color:#0000ff;">18) Collect an unkown sample from your teacher. Record the letter or number of the same in your data table.</span></p>
<p style="text-align:left;"><span style="color:#0000ff;">19) Determine the properties of the unknown sample by repeating the five steps above. Record your observations.</span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9katiel.wordpress.com/2009/11/24/procedure/</link>
<pubDate>Tue, 24 Nov 2009 05:29:56 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9katiel.wordpress.com/2009/11/24/procedure/</guid>
<description><![CDATA[Copy down chart shown on page 101 Collect five samples of the substances from your teacher Preform t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><ol>
<li>Copy down chart shown on page 101</li>
<li>Collect five samples of the substances from your teacher</li>
<li>Preform tests below</li>
<li>Make sure data table is filled before you start part 2</li>
</ol>
<p><strong>appearance</strong></p>
<ol>
<li>Use one sheet of paper. place a small amount of each substance on the paper make sure they are not touching eachother.</li>
<li>Describe Appearance</li>
</ol>
<p><strong><em>Crystal Shape</em></strong></p>
<ol>
<li>use a lens to examine the grains of powder. record observations</li>
<li>Dispose</li>
</ol>
<p><strong><em>Behavior in Water</em></strong></p>
<ol>
<li>use large sheet of wax paper. place small amounts of powder on the wax paper</li>
<li>add a drop of water to each powder. record</li>
<li>dispose</li>
</ol>
<p><strong><em>Behavior in Acid</em></strong></p>
<ol>
<li>place small amount of powder on a new piece of wax paper</li>
<li>Add a drop of  5% acetic solution or 5% Hydrochloric Acid to each powder</li>
<li>dispose of paper</li>
</ol>
<p><strong><em>Behavior in Iodine</em></strong></p>
<ol>
<li>Place small amount of powder on new piece of wax paper.</li>
<li>Add a drop of iodine to powder</li>
<li>Dispose</li>
</ol>
<p><strong><em>Part 2</em></strong></p>
<ol>
<li>Collect unknown substance from teacher. Record letter or number onto data table next to unknown</li>
<li>Determine Properties of a sample by repeating The five tests above </li>
</ol>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9mckenzie.wordpress.com/2009/11/24/procedure/</link>
<pubDate>Tue, 24 Nov 2009 00:44:58 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9mckenzie.wordpress.com/2009/11/24/procedure/</guid>
<description><![CDATA[part 1- examining 5 substances: copy the table on page 101 of the text collect the 5 substances from]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>part 1- examining 5 substances:</strong></p>
<ol>
<li><span style="color:#333333;">copy the table on page 101 of the text</span></li>
<li><span style="color:#333333;">collect the 5 substances from your teacher</span></li>
<li><span style="color:#333333;">preform all the tests listed below</span></li>
<li><span style="color:#333333;">record data in the table after every test, and before you begin part 2</span></li>
</ol>
<p><span style="color:#808080;">test1-appereance</span></p>
<ol>
<li><span style="color:#333333;">Use one sheet of paper for all your samples and place a small amount of each sample in different places on the sheet. Make sure they are not touching.</span></li>
<li><span style="color:#333333;">Describe the apperance of the samples and record data in table</span></li>
</ol>
<p><span style="color:#808080;">test2-crystal shape</span></p>
<ol>
<li><span style="color:#333333;">Use the hand lens or a microscope to examine the grains of each powder. record data</span></li>
<li><span style="color:#333333;">dispose of the substances</span></li>
</ol>
<p><span style="color:#808080;">test3-behavoir in water</span></p>
<ol>
<li><span style="color:#333333;">use the wax paper for all your samples and place a small amount of water on each sample. record data</span></li>
<li><span style="color:#333333;">dispose of the powders and paper</span></li>
</ol>
<p><span style="color:#808080;">test4-behavoir in acid</span></p>
<ol>
<li><span style="color:#333333;">place a small amount of each powder on  a new sheet of wax paper</span></li>
<li><span style="color:#333333;">add a drop of either 5% acetic acid or 5% hydrocloric acid solution to each powder. record data</span></li>
<li><span style="color:#333333;">dispose of powders and paper</span></li>
</ol>
<p><span style="color:#808080;">test5- behavoir in iodine</span></p>
<ol>
<li><span style="color:#333333;">place a small amount of each substance on a new sheet of was paper</span></li>
<li><span style="color:#333333;">add a drop of iodine solution to each. record data</span></li>
<li><span style="color:#333333;">dispose of powders and paper</span></li>
</ol>
<p><strong>part 2- unknown substance:</strong></p>
<ol>
<li><span style="color:#333333;">collect an unknown subsatnce from your teacher and place it in your chart</span></li>
<li><span style="color:#333333;">determine the properties of the sample using the tests above. record data in your chart</span></li>
</ol>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9michael.wordpress.com/2009/11/24/procedure/</link>
<pubDate>Tue, 24 Nov 2009 00:41:07 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9michael.wordpress.com/2009/11/24/procedure/</guid>
<description><![CDATA[Copy the table shown. Collect five substances. Perform the tests show below. Make sure you have crea]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><ol>
<li>Copy the table shown.</li>
<li>Collect five substances.</li>
<li>Perform the tests show below.</li>
<li>Make sure you have created a data table before beginning.</li>
</ol>
<p><strong>Test 1: Appearance </strong></p>
<ol>
<li>Use one sheet of black paper. Place a small amount of powder in different places on the same sheet of paper.</li>
<li>Describe and record the appearance of each powder in the data table.</li>
</ol>
<p><strong>Test 2: Crystal Shape</strong></p>
<ol>
<li>Use a microscope to observe and record in your data table the grains of each powder.</li>
<li>Dispose of waste.</li>
</ol>
<p><strong>Test 3: Behavior in Water</strong></p>
<ol>
<li>Use on sheet of wax paper for the samples. Place a small amount of each powder on it.</li>
<li>Add a drop of water to each powder. Record your observations in the data table.</li>
<li>Dispose of waste.</li>
</ol>
<p><strong>Test 4: Behavior in Acid</strong></p>
<ol>
<li>Place a small amount of each powder on a sheet of wax paper.</li>
<li>Add a drop of 5% acetic acid solution of 5% hydrochloric acid solution to each powder and record your observation in the data table.</li>
<li>Dispose of waste.</li>
</ol>
<p><strong>Test 5: Behavior in Iodine</strong></p>
<ol>
<li>Place a small amount of each powder on a sheet of wax paper.</li>
<li>Add a drop of iodine solution to each powder and record you observation in the data table.</li>
<li>Dispose of waste.</li>
</ol>
<p><strong>Part 2- Identifying Unknown Substances</strong></p>
<ol>
<li>Collect the unknown sample, and record the letter or number of the sample in the data table under &#8220;Unknown&#8221;</li>
<li>Determine the properties of the sample by repeating the 5 tests above, and record your observations in the data table.</li>
</ol>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9thomas.wordpress.com/2009/11/24/procedure/</link>
<pubDate>Tue, 24 Nov 2009 00:37:23 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9thomas.wordpress.com/2009/11/24/procedure/</guid>
<description><![CDATA[copy the table shown on the next page into your notebook collect five substances from your teacher p]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><ol>
<li>copy the table shown on the next page into your notebook</li>
<li>collect five substances from your teacher</li>
<li>perform the tests described below to identify the properties of the substances. you do not have to do the tests in  the order shown below, but you must do all of them.</li>
<li>make sure the data table is complety filled in before you begin part 2 of the activity.</li>
<li>use one sheet of black paper for all your samples. place a small amount on the sheet of each powder in differant places on the same sheet of black paper. make sure that your powder samples are not touching each other.</li>
<li>describe the appearance of each powder. record your observations in the data table.</li>
<li>use a hand lens or microscope to examine the grans of each powder. record your observations in the data table.</li>
<li>dispose of the powders and the black paper in the container provided</li>
<li>use on large sheet of wax paper or a spot plate for all your samples. place a small amount of each powder on the wax paper or spot plate</li>
<li>add a drop of water to each powder. record your observations in the data table.</li>
<li>dispose of the powders and the wax paper in the container provided. clean the spot plate.</li>
<li>place a small amount of each powder on a new sheet of wax paper or a clean spot plate.</li>
<li>add a drop of 5% acetic acid sloution or 5% hydrochilic acid solution to each powder. record your observations in the data table.</li>
<li>dispose of the powders and the wax paper in the container provided. clean the spot plate.</li>
<li>place a small amount of each powder on a new sheet of wax paper or a clean spot plate.</li>
<li>add a drop of iodine solution to each powder. record your observation on the data table.</li>
<li>dispose of the powders and the wax paper in the container provided. clean the spot plate.</li>
<li>collect an unknown from your teacher. record the letter or number of the sample in the data table next to the word &#8220;unknown&#8221;</li>
<li>determine the properties of the unknown sample  by repeating, the five tests abouve, and record your observations in the data table.</li>
</ol>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9bryan.wordpress.com/2009/11/24/procedure/</link>
<pubDate>Tue, 24 Nov 2009 00:32:52 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9bryan.wordpress.com/2009/11/24/procedure/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'></div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9gordan.wordpress.com/2009/11/24/procedure/</link>
<pubDate>Tue, 24 Nov 2009 00:27:12 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9gordan.wordpress.com/2009/11/24/procedure/</guid>
<description><![CDATA[1. Copy the table shown on  the next page in your textbook. 2. Collect five substances from your tea]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>1. Copy the table shown on  the next page in your textbook.</strong></p>
<p><strong>2. Collect five substances from your teacher.</strong></p>
<p><strong>3. Perform the tests below to identify the properties of the substances. You do not have to do the tests in order, but you must perform them all.</strong></p>
<p><strong>4. Make sure the data is totally filled out before you begin activity 2.</strong></p>
<p><strong>5. Use one sheet of black paper for all your samples, place a small amount of each powder in different places. Make sure the substances are not touching one another.</strong></p>
<p><strong>6. Describe the appearance of each substance.</strong></p>
<p><strong>7. Use a hand lens or microscope to examine the grains of each powder, record your observations in the data table.</strong></p>
<p><strong>8. Dispose of the powders in the container provided.</strong></p>
<p><strong>9. Use one sheet of black paper for all your samples.</strong></p>
<p><strong>10. Add a drop of water to each substance and record any data.</strong></p>
<p><strong>11. Dispose of the powders in the container provided.</strong></p>
<p><strong>12. Place a small amount of each powder on the black sheet, make sure they are not touching.</strong></p>
<p><strong>13. Add a drop of 5% acetic acid or 5% hydrolic acid to each substance and record any data.</strong></p>
<p><strong>14. Dispose of the powders in container provided.</strong></p>
<p><strong>15. Place a small amount of each powder on a new sheet of black paper.</strong></p>
<p><strong>16. Add a drop of idodine to each substance and record any data.</strong></p>
<p><strong>17. Dispose of the powders in container provided, and clean the spot thoroughly.</strong></p>
<p><strong>18. Collect the unknown substance from your teacher and perform each of the tests below.</strong></p>
<p><strong>19. Determine the properties of the unknown sample. </strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9amy.wordpress.com/2009/11/23/procedure/</link>
<pubDate>Mon, 23 Nov 2009 23:18:56 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9amy.wordpress.com/2009/11/23/procedure/</guid>
<description><![CDATA[part 1 &#8211; examinig five substances 1 copy the table shown on the next page into your notebook 2]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>part 1 &#8211; examinig five substances</p>
<p>1 copy the table shown on the next page into your notebook</p>
<p>2. collect five substances from your teacher</p>
<p>3. perform the test described below to identify the properties of the substances. you do not have to do the test in the order show below, but you must do all of them.</p>
<p>4. make sure the data table is completly filled in before you begin part 2 of the activity.</p>
<p>test 1- Apperance</p>
<p>5. use one sheet of  black paper for all your samples. place a small amount of each powder in different places on the same sheet of black paper. make sure that your power samples are not touching each other</p>
<p>6. describe the apperance of each powder. record your observation in the data table</p>
<p>&#160;</p>
<p>test 2-crystal shape</p>
<p>7. use a microscope to examine the grains of each powder. record your observations in the data table.</p>
<p>8.dispose of the powders and the black paper in the container provided.</p>
<p>&#160;</p>
<p>test 3- behaviour in water</p>
<p>9. use one large sheet of wax paper or a spot plate for all your samples.place a small amount of each powders and the wax paper in the container provide. clean the spot plate.</p>
<p>10-add a drop of water to each powder. record your observations in the data table.</p>
<p>11-dispose of the powders and the wax paper in the container provided. clean the spot plate.</p>
<p>&#160;</p>
<p>test 4- behaviour in acid</p>
<p>12- place a samall amount of each powder on a new sheet of wax paper or a clean spot plate.</p>
<p>13- add a drop of 5% acetic acid solution or 5% hydrochlo acid solution to each powder. record your observations in the data table.</p>
<p>14- dispose of the powers and the wax paper in the container provided. clean the spot plate.</p>
<p>&#160;</p>
<p>test 5- behaviour in iodine</p>
<p>15. place a small amount of each powder on a new sheet of wax paper or a clean spot plate.</p>
<p>16. add a drop of iodine solution of each powder. record your observations in the data table.</p>
<p>17. dispose of the powders and the wax paper in the container provided. clean the spot plate thoroughly</p>
<p>&#160;</p>
<p>part 2-identifying unknow substances</p>
<p>18.collect an unknow sample from your teacher. record the letter or  number of the sample in the data table next to the word &#8220;unknow&#8221;</p>
<p>19. determine  the properties of the unknow sample by repeating the five test above, and record your observations in the data table.</p>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9amanda.wordpress.com/2009/11/23/procedure/</link>
<pubDate>Mon, 23 Nov 2009 23:15:16 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9amanda.wordpress.com/2009/11/23/procedure/</guid>
<description><![CDATA[1) copy the table shown on the next page into your note-book                                        ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>1) copy the table shown on the next page into your note-book                                                                                                                           </p>
<p>2) collect five substances from your teachers</p>
<p>3) perform the test described below to identify the properties of the substance. you do not have to do the test in order  shown below but you must do all</p>
<p>4) make sure the data table is completely filled in before you begin part 2 of the activity</p>
<p>TEST 1 APPERANCE- 5) use one sheet of black paper for all your samples. place a small amount of each powder in different places on the sabe sheet of black paper. Make sure that your powder samples are not touching each other.</p>
<p>6) describe the appearance of each powder. record your observations</p>
<p>TEST 2 CRYSTAL SHAPE- 7) use a hand lens or microscope to examine the grains of each powder. record your observations in the data table.</p>
<p> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> dispose of the powders and the black paper or a spot plate for all your samples. place a small amount of each powder on the wax paper.</p>
<p>10) add a drop of water to each powder.</p>
<p>11) dispose of the powders and the wax paper and new sheet of wax paper in the container provided</p>
<p>TEST 3 &#8211; 12) place a small amount of each powder on a new sheet of wax paper or a clean spot plate.</p>
<p>13) add a drop of 5% hydrochloric acid</p>
<p>14) dispose of the powders and the wax paper in the container provided</p>
<p>15) place a small amount of each powder on a new sheet of wax paper</p>
<p>16) add a drop of iodine solution to each powder</p>
<p>17) dispose od the powders and the wax paper in the container provided</p>
<p>18) collect an unknown sample from your teacher</p>
<p>19) determine the properties of the unknown sample by repeating the five tests above.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9alexs.wordpress.com/2009/11/23/procedure/</link>
<pubDate>Mon, 23 Nov 2009 23:11:37 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9alexs.wordpress.com/2009/11/23/procedure/</guid>
<description><![CDATA[Part 1: Examining Five Substances Copy the table sown on pg. 101 and retrieve the 5 substances from ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><em><strong>Part 1: Examining Five Substances</strong></em></p>
<ol>
<li>Copy the table sown on pg. 101 and retrieve the 5 substances from your teacher.</li>
<li>All the tests below must be done but do not have to be done in order. The table must be complete before part 2 is begun.</li>
</ol>
<p>Test 1: Appearance</p>
<ol>
<li>Put a small amount of each substance on a sheet of black paper. *Note: Make sure the substances are not touching</li>
<li>Describe the appearance of each and record the data on the chart.</li>
</ol>
<p>Test 2: Crystal Shape</p>
<ol>
<li>Examine the grain of each powder using the hand lens and record the data</li>
<li>Dispose of the materials into the container provided.</li>
</ol>
<p>Test 3: Behaviour in water</p>
<ol>
<li>Put a small amount of each powder on a large sheet of wax paper or spot plate.</li>
<li>Add a drop of water to each substance and recod your observations.</li>
<li>Dispose of or clean the materials.</li>
</ol>
<p>Test 4: Behaviour in Acid</p>
<ol>
<li>Put a small amount of each powder on a large sheet of wax paper or spot plate.</li>
<li>Add a drop of 5% acetic acid solution or 5% hydrochloric acid solution to each powder and record your observations</li>
<li>Dispose of or clean the materials.</li>
</ol>
<p>Test 5: Behaviour in Iodine</p>
<ol>
<li>Put a small amount of each powder on a large sheet of wax paper or spot plate.</li>
<li>Add a drop of Iodine to each substance and record your observations</li>
<li>Dispose of or clean the materials.</li>
</ol>
<p><em><strong>Part 2: Identifying unknown substances</strong></em></p>
<ol>
<li>Retrieve the unknown sample from your teacher and record the number/letter of the substance on your table</li>
<li>Repeat the five tests for the unknown substance and record all your findings on the data table.</li>
</ol>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9caitlynn.wordpress.com/2009/11/23/procedure/</link>
<pubDate>Mon, 23 Nov 2009 23:07:19 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9caitlynn.wordpress.com/2009/11/23/procedure/</guid>
<description><![CDATA[copy the chart on pg.101 on to a seperate peice of paper get the 5 different substances from your te]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><ol>
<li>copy the chart on pg.101 on to a seperate peice of paper</li>
<li>get the 5 different substances from your teacher</li>
<li>Do the tests below to identify the substances properties.</li>
<li>make sure your chart is filled out before starting step 2.</li>
</ol>
<p><span style="color:#ff00ff;">Test 1-Appearance</span></p>
<ol>
<li><span style="color:#000000;">All samples go on 1 sheet of black paper. place each sample on the paper, not letting any sample touch another.</span></li>
<li>Describe and record each substance on your chart.</li>
</ol>
<p><span style="color:#ff00ff;">Test 2-Crystal shape</span></p>
<ol>
<li>Using a hand lens examine the grains in each substance then record the shape of the grains in your chart.</li>
<li>throw all the substances including the black paper away.</li>
</ol>
<p><span style="color:#ff00ff;">Test 3- behaviour in water</span></p>
<ol>
<li>place each substance on a peice of wax paper.</li>
<li>add a drop of water to each substance.Record in chart.</li>
<li>throw out powders and wax paper.</li>
</ol>
<p><span style="color:#ff00ff;">Test 4-Behaivior in acid</span></p>
<ol>
<li>put all substances on a new piece of wax paper.</li>
<li>Place a drop of 5% acetic acid or 5% hydrochloric acid on each substance.Record in chart.</li>
<li>throw away substances and wax paper.</li>
</ol>
<p><span style="color:#ff00ff;">Test 5-Behaviour in iodine</span></p>
<ol>
<li>Put each substance on a new sheet of wax paper.</li>
<li>Place a drop of iodine on each substance.Record in chart.</li>
<li>throw away substances and wax paper.</li>
</ol>
<p><span style="color:#0000ff;">PART 2: identifying unknown substances</span></p>
<ol>
<li>Add the substance unknown to your chart and collect it from your teacher.</li>
<li>use the tests above for the unknown substance and record in your chart.</li>
</ol>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9kennedyw.wordpress.com/2009/11/23/procedure/</link>
<pubDate>Mon, 23 Nov 2009 21:28:15 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9kennedyw.wordpress.com/2009/11/23/procedure/</guid>
<description><![CDATA[1. Copy the table shown on pg. 101 (Science in Action 9 Textbook). 2. Collect the five substances fr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>1. Copy the table shown on pg. 101 (Science in Action 9 Textbook).</p>
<p>2. Collect the five substances from your teacher.</p>
<p>3. Perform the tests below to identify the properties of the substances. You don&#8217;t have to do the tests in the order shown but you must do all of them.</p>
<p>4. Make sure the data table is completely filled in before you begin part 2 of the activity.</p>
<p><strong>Part 1</strong></p>
<p>Test #1</p>
<p>5. Use one sheet of black paper for all your samples. Place a small amount of each powder in different places on the same sheet of black paper. Make sure that your powder samples aren&#8217;t touching.</p>
<p>6.Describe the appearance of each powder. Record all observations.</p>
<p>Test#2</p>
<p>7. Use a hand lens or microscope to examine the grains of each powder. Record.</p>
<p>8. Dispose of the powders and the black paper.</p>
<p>Test#3</p>
<p>9. Use one large sheet of wax paper or a spot plate for all your samples. Place a small amount of powder on it.</p>
<p>10. Add a drop of water to each powder. Record.</p>
<p>11.Dispose of powders and papers.</p>
<p>Test #4</p>
<p>12. Place a small amount of each powder on a new sheet of paper or a spot plate.</p>
<p>13. Add a drop of 5% acetic acid solution or 5%hydrolic acid solution to each powder.</p>
<p>14. Dispose of all powder and paper.</p>
<p>Test#5</p>
<p>15. Place some of each powder on the paper.</p>
<p>16. Add a drop of Iodine to each type of powder.</p>
<p>17. Record all observations.</p>
<p><strong>Part 2</strong></p>
<p>18. Collect the unknown substance from your teacher.</p>
<p>19. Repeat all above tests to determine the substance. Record all observations.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Procedure]]></title>
<link>http://science9geoff.wordpress.com/2009/11/23/procedure/</link>
<pubDate>Mon, 23 Nov 2009 21:27:52 +0000</pubDate>
<dc:creator>science9fmt</dc:creator>
<guid>http://science9geoff.wordpress.com/2009/11/23/procedure/</guid>
<description><![CDATA[Part 1: Examining Five Substances Copy the table shown on the next page, collect 5 substances from y]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Part 1: Examining Five Substances</p>
<ol>
<li>Copy the table shown on the next page, collect 5 substances from your teacher and prefoorm tests as described below to identify the properties of a substance. Do the tests in order.</li>
<li>Make sure that the data table is completely filled in before you begin part two of the activity.</li>
<li>Test 1: Appearance &#8211; Place a small amount of each substance on one big sheet of black paper and make sure they arent touching.</li>
<li>Describe the observation of the powders and physical appearance.</li>
<li>Test 2: Crystal Shape &#8211; Use a magnifying object to examine each grain of the different powders. Record your observastion</li>
<li>Dispose of the powders and black paper in the container provided.</li>
<li>Test 3: Behavior in Water &#8211; Use a large sheet of wax paper and place a small amount of each powder on the sheet.</li>
<li>Add a drop of water and record the change and then dispose of powders in contains provided.</li>
<li>Test 4: Behavior in acid &#8211; Place the powders on a new sheet of wax paper.</li>
<li>Add a drop of 5% acetic solution or 5% Hydrocloric acid to each powder.</li>
<li>Record observaino and dispose of powders and paper in the container provided.</li>
<li>Test 5: Behavior in Iodine &#8211; Place the powders on a new sheet of wax paper and add a drop of iodine solution then record your observations.</li>
<li>Dispose of powders and paper in the container provided.</li>
</ol>
<p>Part 2: Identifying Unkown Substances</p>
<ol>
<li>Collect an unkown Sample from your teacher.</li>
<li>Determine the properties of the unkown sample by repeating the five steps above</li>
<li>record your observations in the data table.</li>
</ol>
</div>]]></content:encoded>
</item>

</channel>
</rss>
