<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Różności ... &#187; PL/SQL</title>
	<atom:link href="http://www.jaceksen.pl/wordpress/?cat=27&#038;feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.jaceksen.pl/wordpress</link>
	<description>czyli moje notki</description>
	<lastBuildDate>Sun, 14 Nov 2021 16:21:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>PL/SQL temporary tables</title>
		<link>http://www.jaceksen.pl/wordpress/?p=3598</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=3598#comments</comments>
		<pubDate>Tue, 28 Feb 2012 13:41:09 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[Programowanie]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=3598</guid>
		<description><![CDATA[http://www.oracle-base.com/articles/8i/TemporaryTables.php]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=3598</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using PL/SQL Loops and Control Structures</title>
		<link>http://www.jaceksen.pl/wordpress/?p=3596</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=3596#comments</comments>
		<pubDate>Wed, 22 Feb 2012 18:07:51 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[Programowanie]]></category>
		<category><![CDATA[Skrypty SQL i PL/SQL]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=3596</guid>
		<description><![CDATA[http://docs.oracle.com/cd/B28359_01/appdev.111/b28370/controlstructures.htm]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=3596</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PL/SQL varrays.</title>
		<link>http://www.jaceksen.pl/wordpress/?p=3593</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=3593#comments</comments>
		<pubDate>Wed, 22 Feb 2012 11:56:02 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[Programowanie]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=3593</guid>
		<description><![CDATA[http://www.dba-oracle.com/plsql/t_plsql_varrays.htm]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=3593</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retrieve Top N records from a query</title>
		<link>http://www.jaceksen.pl/wordpress/?p=3586</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=3586#comments</comments>
		<pubDate>Wed, 25 Jan 2012 10:39:34 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[Programowanie]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=3586</guid>
		<description><![CDATA[http://www.techonthenet.com/oracle/questions/top_records.php]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=3586</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Declaring Collections with %TYPE</title>
		<link>http://www.jaceksen.pl/wordpress/?p=3584</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=3584#comments</comments>
		<pubDate>Mon, 23 Jan 2012 18:28:57 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[Programowanie]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=3584</guid>
		<description><![CDATA[Example 5-4 Declaring Collections with %TYPE DECLARE TYPE few_depts IS VARRAY(10) OF VARCHAR2(30); TYPE many_depts IS VARRAY(100) OF VARCHAR2(64); some_depts few_depts; /* If the type of some_depts changes from few_depts to many_depts, local_depts and global_depts will use the same type when this block is recompiled */ local_depts some_depts%TYPE; global_depts some_depts%TYPE; BEGIN NULL; END; /]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=3584</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ora-00054</title>
		<link>http://www.jaceksen.pl/wordpress/?p=3574</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=3574#comments</comments>
		<pubDate>Sun, 22 Jan 2012 20:08:57 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PL/SQL]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=3574</guid>
		<description><![CDATA[ORA-00054: resource busy and acquire with NOWAIT specified po zerwaniu sesji &#8211; nie można zrobić drop table aby sprawdzić jaka sesja trzyma: SELECT * FROM DBA_DML_LOCKS; szczegóły w kolumnie LOCK_ID1: SELECT * FROM DBA_LOCK_INTERNAL; źródła: http://www.dba-oracle.com/t_ora_00054_locks.htm]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=3574</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prosty CURSOR</title>
		<link>http://www.jaceksen.pl/wordpress/?p=3572</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=3572#comments</comments>
		<pubDate>Sun, 22 Jan 2012 19:02:08 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[Programowanie]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=3572</guid>
		<description><![CDATA[DECLARE CURSOR C1 IS SELECT ST_ID_OPISOWY_KROTKI, TP_ID_OPISOWY_KROTKI FROM STW.SRODKI_TRWALE; BEGIN FOR rekord1 IN C1 LOOP Dbms_Output.put_line(rekord1.ST_ID_OPISOWY_KROTKI); END LOOP; END; /]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=3572</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Associative arrays, cursors &#8211; PL/SQL</title>
		<link>http://www.jaceksen.pl/wordpress/?p=3496</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=3496#comments</comments>
		<pubDate>Sun, 27 Nov 2011 18:55:19 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[PL/SQL]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=3496</guid>
		<description><![CDATA[declare 02 type apollo_rec is record( 03 commander   varchar2(100), 04 launch date); 05 type apollo_type_arr is table of apollo_rec index by varchar2(100); 06 apollo_arr apollo_type_arr; 07 begin 08 apollo_arr('Apollo 11').commander := 'Neil Armstrong'; 09 apollo_arr('Apollo 11').launch :=   to_date('July 16, 1969','Month dd, yyyy'); 10 apollo_arr('Apollo 12').commander := 'Pete Conrad'; 11 apollo_arr('Apollo 12').launch :=   to_date('November 14, 1969','Month [...]]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=3496</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pl/sql package &#8211; prosty przykład</title>
		<link>http://www.jaceksen.pl/wordpress/?p=3487</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=3487#comments</comments>
		<pubDate>Fri, 25 Nov 2011 14:03:04 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[PL/SQL]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=3487</guid>
		<description><![CDATA[http://sueharper.blogspot.com/2006/10/running-plsql-code-using-sql-developer.html typy: http://dbahelp.co.uk/plsql.aspx rowtype: http://www.orafaq.com/wiki/PL/SQL_FAQ]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=3487</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PL/SQL &#8211; uruchamianie procedur</title>
		<link>http://www.jaceksen.pl/wordpress/?p=3483</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=3483#comments</comments>
		<pubDate>Wed, 23 Nov 2011 22:02:22 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[PL/SQL]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=3483</guid>
		<description><![CDATA[execute procedure_name execute procedure_name(&#8216;in_param&#8217;,'in_param&#8217;); execute package_name.procedure_name (&#8230;. select myPackage.myFunction(rec_id) from myTable; select myPackage.myFunction(argValue) from dual; SQL&#62; @pass2proc SQL&#62; CREATE OR REPLACE PROCEDURE PASS2PROC(VAL1 IN NUMBER, VAL2 OUT NUMBER) 2 AS 3 BEGIN 4 VAL2 := VAL1*2; 5 END PASS2PROC; 6 / Procedure created. SQL&#62; var ret1 number SQL&#62; exec pass2proc(1,:ret1); PL/SQL procedure successfully completed. SQL&#62; [...]]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=3483</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-01882 on SQL Developer</title>
		<link>http://www.jaceksen.pl/wordpress/?p=3480</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=3480#comments</comments>
		<pubDate>Wed, 23 Nov 2011 17:46:34 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=3480</guid>
		<description><![CDATA[Edit sqldeveloper.conf configuration file located in the folder SQLDeveloper / bin Add this line with the timezone: AddVMOption -Duser.timezone="Europe/Warsaw" Restart and try again.]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=3480</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PL/SQL &#8211; functions</title>
		<link>http://www.jaceksen.pl/wordpress/?p=3435</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=3435#comments</comments>
		<pubDate>Tue, 15 Nov 2011 18:44:07 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[Bazy danych]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[Programowanie]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=3435</guid>
		<description><![CDATA[PL/SQL Functions What is a Function in PL/SQL? A function is a named PL/SQL Block which is similar to a procedure. The major difference between a procedure and a function is, a function must always return a value, but a procedure may or may not return a value. The General Syntax to create a function [...]]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=3435</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PL/SQL &#8211; select into</title>
		<link>http://www.jaceksen.pl/wordpress/?p=3093</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=3093#comments</comments>
		<pubDate>Wed, 06 Apr 2011 09:59:12 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[PL/SQL]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=3093</guid>
		<description><![CDATA[SQL&#62; declare 2    v_authName author.author_last_name%type; 3  begin 4    select 5      author_last_name into v_authName 6    from 7      author 8    where 9      author_key = &#8216;A103&#8242;; 10 11    dbms_output.put_line(&#8216;Name: &#8216;&#124;&#124;v_authName); 12  end; 13  / SQL&#62; declare 2    v_author author%rowtype; 3  begin 4    select 5      * into v_author 6    from 7      author 8    where 9      author_key = &#8216;A103&#8242;; 10 [...]]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=3093</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dafault value (alter table &#8211; oracle)</title>
		<link>http://www.jaceksen.pl/wordpress/?p=3087</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=3087#comments</comments>
		<pubDate>Mon, 04 Apr 2011 16:56:25 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[Bazy danych]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=3087</guid>
		<description><![CDATA[alter table PROBY modify (&#8220;WYDANO&#8221; FLOAT(126) DEFAULT 0)]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=3087</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PL/SQL Associative Arrays</title>
		<link>http://www.jaceksen.pl/wordpress/?p=1846</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=1846#comments</comments>
		<pubDate>Fri, 07 Jan 2011 14:04:29 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[PL/SQL]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=1846</guid>
		<description><![CDATA[declare type assoc_arr is table of varchar2(255) index by varchar2(255); apollo_commanders assoc_arr; begin apollo_commanders(&#8216;Apollo 11&#8242;) := &#8216;Neil Armstrong&#8217;; apollo_commanders(&#8216;Apollo 12&#8242;) := &#8216;Pete Conrad&#8217;; apollo_commanders(&#8216;Apollo 13&#8242;) := &#8216;James Lovell&#8217;; apollo_commanders(&#8216;Apollo 14&#8242;) := &#8216;Alan Shepard&#8217;; apollo_commanders(&#8216;Apollo 15&#8242;) := &#8216;David Scott&#8217;; apollo_commanders(&#8216;Apollo 16&#8242;) := &#8216;John W. Young&#8217;; apollo_commanders(&#8216;Apollo 17&#8242;) := &#8216;Eugene A. Cernan&#8217;; dbms_output.put_line(apollo_commanders(&#8216;Apollo 11&#8242;)); dbms_output.put_line(apollo_commanders(&#8216;Apollo 14&#8242;)); end; [...]]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=1846</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PL/SQL &#8211; functions, zwrot wartości tablicy z funkcji.</title>
		<link>http://www.jaceksen.pl/wordpress/?p=1795</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=1795#comments</comments>
		<pubDate>Mon, 03 Jan 2011 12:16:12 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[PL/SQL]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=1795</guid>
		<description><![CDATA[Tu jest dobry artykuł o funkcjach. A function is a named PL/SQL Block which is similar to a procedure. The major difference between a procedure and a function is, a function must always return a value, but a procedure may or may not return a value. The General Syntax to create a function is: CREATE [...]]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=1795</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle notes &#8211; PL/SQL basics</title>
		<link>http://www.jaceksen.pl/wordpress/?p=1552</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=1552#comments</comments>
		<pubDate>Tue, 28 Dec 2010 11:16:39 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[Bazy danych]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=1552</guid>
		<description><![CDATA[PL/SQL Procedural Language SQL anonymous blocks &#8211; bez nazwy procedures/functions &#8211; stored in data dictionary packages &#8211; zgrupowane procedury i funkcje Data Types - scalar (binary_integer, integer, string &#8230;) - composite (nested tables, varrays, record &#8230;) r employees%rowtype; nested tables of numbers: TYPE &#8211; określamy jakiego jest typu linia 5 &#8211; konstruktor &#8211;  przypisujemy konstruktor [...]]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=1552</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle notki, constraints, sequences, views</title>
		<link>http://www.jaceksen.pl/wordpress/?p=1540</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=1540#comments</comments>
		<pubDate>Tue, 28 Dec 2010 10:56:26 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[Bazy danych]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=1540</guid>
		<description><![CDATA[alter table person add constraint pk_person primary key(id); compound primary key &#8211; złożony &#8211; na więcej niż jednej kolumnie. create table citeis(city varchar(30), state char2(2), constraint pk_cities primary key(city,state)); obydwie kolumny będą widziane jako NOT NULL &#8211; ale to wcale nie znaczy że są primary_keys select * from USER_CONSTRAINTS; select * from DBA_CONSTRAINTS; aby dowiedzieć [...]]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=1540</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle notki &#8211; installation.</title>
		<link>http://www.jaceksen.pl/wordpress/?p=1530</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=1530#comments</comments>
		<pubDate>Tue, 28 Dec 2010 10:29:22 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[Bazy danych]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=1530</guid>
		<description><![CDATA[database configuration assistant: c:&#62; dbca (w windowsach) aby zapisać konfigurację bazy danych w windowsach i ewentualnie puszczać tworzenie instancji automatycznie: c:\database&#62; setup -record -destinationFile c:\database\basic.rsp (jest to tzw. response file) uruchomi się instaler, ale na samym końcu nie nalży instalować tylko dać cancel potem: c:\database&#62; setup -silent -responseFile c:\\database\basic.rsp tworzenie bazy danych od podstaw: najpierw [...]]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=1530</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle &#8211; notki, SQL, PL/SQL</title>
		<link>http://www.jaceksen.pl/wordpress/?p=1524</link>
		<comments>http://www.jaceksen.pl/wordpress/?p=1524#comments</comments>
		<pubDate>Tue, 28 Dec 2010 10:16:42 +0000</pubDate>
		<dc:creator>Jacek</dc:creator>
				<category><![CDATA[Bazy danych]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[Programowanie]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.jaceksen.pl/wordpress/?p=1524</guid>
		<description><![CDATA[sql&#62; host &#8211; aby dostać się do promptu hosta c:&#62; echo %oracle_sid% lub echo $oracle_sid$ c:&#62; exit sql&#62; po zalaogowaniu można wydać komendę: sql&#62; define i wyświetlą się parametry informujące o tym jako kto jesteśmy podłączeni będąc podłączonym można podłączyć się jako inny user sql&#62; connect sys as sysdba Sprawdzenie jakie tabele są w schemacie [...]]]></description>
		<wfw:commentRss>http://www.jaceksen.pl/wordpress/?feed=rss2&amp;p=1524</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
