<?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>ebs &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/ebs/</link>
	<description>Feed of posts on WordPress.com tagged "ebs"</description>
	<pubDate>Fri, 25 Dec 2009 18:01:14 +0000</pubDate>

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

<item>
<title><![CDATA[Initialize a new EBS with script]]></title>
<link>http://ec2lab.com/2009/12/19/initialize-an-new-ebs-with-script/</link>
<pubDate>Sat, 19 Dec 2009 08:42:58 +0000</pubDate>
<dc:creator>webtoprint</dc:creator>
<guid>http://ec2lab.com/2009/12/19/initialize-an-new-ebs-with-script/</guid>
<description><![CDATA[AWS EBS-based instances are a really neat idea, but they don&#8217;t have any additional storage. Yo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>AWS EBS-based instances are a really neat idea, but they don&#8217;t have any additional storage. You need to create, attach and initialize an EBS with the same letter as a normal AMI-based instance.</p>
<p>For example you use a number of non-EBS and EBS instances in a cluster and they perform the same function. You probably want to keep them configured the same way. So you need an additional EBS for drive D: for an instance loaded from an EBS.</p>
<p>Assume you created and attached a new EBS. Now you need to initialize the disk, create a volume, format it, assign a letter, etc.</p>
<p>One way of doing it is through a storage MMC. The other is to script it using <a title="about diskpart" href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/diskpart.mspx?mfr=true"><em>diskpart </em></a>command line utility.</p>
<p>Create a script file with the following commands (remove the comments):</p>
<ul>
<li>rescan<em> &#8211; rescans all disks</em></li>
<li>select disk 1 <em>- selects disk 1 for manipulations (use the number you need)</em></li>
<li>create partition primary<em> &#8211; assume you are creating a primary partition</em></li>
<li>assign letter=d <em>- we have disk C with the instance, so the next one is D</em></li>
<li>convert dynamic <em>- you can omit this to leave the disk as basic, but I prefer dynamic</em></li>
</ul>
<p>Save the file and call from a command like like this: <em>diskpart /S c:\my-disk-script.txt &#62; c:\my-disk-log.txt</em></p>
<p><em>Diskpart </em>will read the script and initialize the disk. Wrap it all in a batch file to add disk formatting commands.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to freeze an EBS instance with no way to recover]]></title>
<link>http://fusiontech.wordpress.com/2009/12/10/how-to-freeze-an-ebs-instance-with-no-way-to-recover/</link>
<pubDate>Thu, 10 Dec 2009 14:57:02 +0000</pubDate>
<dc:creator>Espen Barroso-Gomez</dc:creator>
<guid>http://fusiontech.wordpress.com/2009/12/10/how-to-freeze-an-ebs-instance-with-no-way-to-recover/</guid>
<description><![CDATA[Or: FND_USER table and blocking locks.. I don&#8217;t mean recover as in backup, by the way. Some di]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Or: FND_USER table and blocking locks.. I don&#8217;t mean recover as in backup, by the way.</p>
<p>Some disclaimers: This scenario happened in an 11.5.10 system, and seems to have been a general problem not specific to our site, but as I haven&#8217;t been able to research it further, I don&#8217;t know if it could happen elsewhere as well. And even if I couldn&#8217;t think of a way around it, some of you might <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Furthermore, the following shouldn&#8217;t be a problem for those using the new User Management (UMX) HTML interface to manage EBS users, instead of the older, Forms based &#8220;Administer Users&#8221; interface. (UMX became available as a patch to 11.5.10, if I remember correctly).</p>
<p>Since the only resolution to this I (and Oracle support) know of, is to shutdown abort the running production EBS database, which is rather grave, I&#8217;m hereby noting down our preventive work-around, which banished this issue from our site.</p>
<p>The issue (which happened twice in a couple of weeks):</p>
<p>During normal operation in a non-peak period, typically in the late morning, the Oracle E-Business Suite system would suddenly not accept any more logins. Over the course of perhaps 15 minutes after this, existing users started having trouble accessing different HTML/JSP pages, and after that, the whole system effectively froze up.</p>
<p>The first time this happened, there was no time for troubleshooting, except to discover that there were lots of sessions waiting to get a lock for the FND_USER table, so we had to shut down the services and abort the database. After a call to Oracle support revealed that they did not know of any other way around our situation.</p>
<p>The second time, I was a little more prepared, and though I couldn&#8217;t react in time to kill the blocking sessions fast enough the resolve the situation, I did have time to detect a pattern (I&#8217;ll get to this in a second).</p>
<p>So the issue in a little more detail, was that &#8211; as is normal &#8211; each new user session wanted to get hold of their entry in the FND_USER table, to update the TIMESTAMP field. And the already existing sessions also expect to be able to do this once in a while. This was not possible, since one session sat with a blocking lock for it&#8217;s own entry. I found this strange, and at least expected to be able to resolve everything by contacting the user to confirm I could kill the session, and by this letting the waiting sessions go on with their business.</p>
<p>But every time the blocker was killed, the next session waiting in line, took over and did not release the lock. And since every user who experienced some kind of hang situation in their session, restarted their browsers and tried to log back in, the waiting line grew much more quickly than it was possible to kill off sessions.</p>
<p>Since there was just a limited amount of time available to experiment with this, I still have no clear understanding of this behaviour. (I had to resort to bouncing/aborting the system at this occasion as well, since that can be done fairly quickly, albeit with the possible necessity of some cleanup work afterwards.)</p>
<p>But the pattern was simply that someone with System Administrator rights had opened the FND_USER entry (in a Form, the correct way) for the SYSADMIN user, for changing its list of Responsibilities. And they had left the Form window open long enough for another user to try the same thing, which was all that&#8217;s needed. So if you have a test EBS system you&#8217;re not afraid to crash; this could be a useful exercise: Open the SYSADMIN user, change for example an end-date of one of the Responsibilities (back and forth), leave it open, and have another user with Rights attempt to change some other aspect of the SYSADMIN user. If the second session hangs, waiting for the first, have some other users try to log in and out normally, possibly starting up Forms. If you see the above described behaviour, well, then you know it needs to be prevented.</p>
<p>It&#8217;s simple enough to avoid, of course. The only policy necessary at our site, instated after the second instance of this issue, was: &#8220;Every change to EBS user properties must immediately be followed by closing the form in question&#8221;. </p>
<p>As I said, simple enough, and probably very obvious to most EBS sites. But users don&#8217;t necessarily think that way, figuring instead that the System is all-powerful and can protect itself against stuff like this. By the way, for those who are wondering, we did also take this opportunity to put in place similar policies for other forms than just the user management. Anyway, the issue never arose again.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ojspCompile.pl - a Functional Consultants unlikely friend.]]></title>
<link>http://redstackstephen.wordpress.com/2009/12/07/ojspcompile-pl-a-functional-consultants-unlikely-friend/</link>
<pubDate>Tue, 08 Dec 2009 01:40:01 +0000</pubDate>
<dc:creator>redstackstephen</dc:creator>
<guid>http://redstackstephen.wordpress.com/2009/12/07/ojspcompile-pl-a-functional-consultants-unlikely-friend/</guid>
<description><![CDATA[Often, in Oracle E-Business Suite Release 12 (R12) during an implementation or after patching, the p]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Often, in Oracle E-Business Suite Release 12 (R12) during an implementation or after patching, the pre-compiled jsp&#8217;s need to be recompiled because you aren&#8217;t seeing the change you expect. You can selectively recompile jsp&#8217;s using this program, but I like to just blow away everything and start fresh. Support documentation states &#8220;AD utilities to perform this action, for example after patches are applied which replaced 1 or more JSP pages&#8221; but I frequently have to use this tool manually after patching to see the expected results.</p>
<p>This is my go-to first step after patching or configuration changes that aren&#8217;t giving me what I expect.</p>
<p>My process is as follows:</p>
<ol>
<li>Bring down Apache with adapcctl.sh in $INST_TOP/admin/scripts</li>
<table border="1">
<tbody>
<tr>
<td bgcolor="#B2B2CC"><font face="Courier">[appldemo@demoR12 ~]$ $INST_TOP/admin/scripts/adapcctl.sh stop</font></td>
</tr>
</tbody>
</table>
<li>Clear the cache directory by renaming it and recreating it.</li>
<table border="1">
<tbody>
<tr>
<td bgcolor="#B2B2CC"><font face="Courier">[appldemo@demoR12 ~]$ mv $COMMON_TOP/_pages $COMMON_TOP/_pages_07DEC09<br />
[appldemo@demoR12 ~]$ mkdir $COMMON_TOP/_pages</font>
</td>
</tr>
</tbody>
</table>
<li>Start ojspCompile with the parameters &#45;&#45;flush &#45;&#45;compile -p [number of parallel processes]</li>
<table border="1">
<tbody>
<tr>
<td bgcolor="#B2B2CC"><font face="courier">[appldemo@demoR12 ~]$ $FND_TOP/patch/115/bin/ojspCompile.pl &#45;&#45;flush &#45;&#45;compile -p 8</font>
</td>
</tr>
</tbody>
</table>
<li>Confirm the process completes successfully</li>
<table border="1">
<tbody>
<tr>
<td bgcolor="#B2B2CC"><font face="courier">starting&#46;&#46;&#46;(compiling all)<br />
using 10i internal ojsp ver: 10<br />
synchronizing dependency file:<br />
  loading deplist&#46;&#46;&#46;7983<br />
  enumerating jsps&#46;&#46;&#46;7983<br />
  updating dependency&#46;&#46;&#46;0<br />
initializing compilation:<br />
  eliminating children&#46;&#46;&#46;5894 (-2089)<br />
translating and compiling:<br />
  translating jsps&#46;&#46;&#46;5894/5894 in 10m29s<br />
  compiling jsps&#46;&#46;&#46;5894/5894 in 44m27s<br />
Finished!<br />
</font>
</td>
</tr>
</tbody>
</table>
<li>Almost Done! &#8211; Just Restart Apache!</li>
<table border="1">
<tbody>
<tr>
<td bgcolor="#B2B2CC"><font face="courier">[appldemo@demoR12 ~]$ $INST_TOP/admin/scripts/adapcctl.sh start<br />
</font>
</td>
</tr>
</tbody>
</table>
</ol>
<p>Checkout My Oracle Support Article ID: 435550.1 for more information.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[PRP book production]]></title>
<link>http://danielbeltra.wordpress.com/2009/12/07/book-for-the-climate-change-conference/</link>
<pubDate>Mon, 07 Dec 2009 18:15:29 +0000</pubDate>
<dc:creator>danielbeltra</dc:creator>
<guid>http://danielbeltra.wordpress.com/2009/12/07/book-for-the-climate-change-conference/</guid>
<description><![CDATA[For the next two weeks in Copenhagen, Denmark, leaders, and their representatives, from around the w]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://danielbeltra.wordpress.com/files/2009/12/img_0838.jpg"><img class="alignnone size-full wp-image-132" title="IMG_0838" src="http://danielbeltra.wordpress.com/files/2009/12/img_0838.jpg" alt="" width="450" height="300" /></a></p>
<p><strong>For the next two weeks</strong> in Copenhagen, Denmark, leaders, and their representatives, from around the world will gather to negotiate an agreement which will hopefully stop, or at least slow, the advance of global warming/climate change. Attendees of the UN Climate Change Copenhagen conference will be considering economics, science and politics when making their decisions about a compromise, but they also might be thinking about a photo book that will be provided to them by Prince Charles.</p>
<p>The book, <em>Rainforests: Lifebelt for an Endangered Planet</em> is one of the final stages of Daniel&#8217;s involvement with the <a href="http://www.rainforestsos.org">Prince&#8217;s Rainforest Project</a> (PRP) Award. The PRP is a non-governmental-organization whose goal is to reduce global warming/climate change by slowing the spread of tropical deforestation, the world&#8217;s largest source of carbon emissions. To help gain traction and attention for this goal, <a href="http://www.sony.co.uk/hub/1201538224713">Sony</a> funded a <a href="http://www.worldphotographyawards.org/2009.aspx">contest award in the World Photography Awards</a> which provided the winner (Daniel) with a commission to photographically document deforestation for a month each in the Brazilian Amazon, the Congo, and Indonesia. The photos shot for the PRP would be used in exhibitions in London, Paris, Berlin, New York, one million booklets for distribution (<a href="http://www.rainforestsos.org/book">online here</a>), and, finally and most importantly, a limited edition book to be given by Prince Charles to attendees of the Copenhagen Climate Change conference. <em>Rainforests: </em>is that book.</p>
<p>The process to put together a photo book from scratch in less than eight months was a huge challenge to undertake. First, Daniel shot over 40,000 photos in the course of three month-long trips to the aforementioned tropical rainforest regions. Daniel dipped into his ample archive of photos he shot for <a href="http://www.greenpeace.org">Greenpeace</a> in the Amazon and Indonesia to add in images of subjects that weather or time constraints prevented him from photographing this year for the PRP, giving the project a fuller scope to display the challenges the rainforests face (the vast majority are from the commissions this year, 2009, however).</p>
<p>Then, these were edited down by Daniel and myself to around 1,000 photos here in Seattle. <a href="http://www.smith-design.com/portfolio">Stuart Smith</a>, a photo book editor and designer in London, winnowed these 1,000 down to 500, and then prepared small proof prints of the 500 to physically edit the book down on the floor and walls of his office.</p>
<p><a href="http://danielbeltra.wordpress.com/files/2009/12/20091006_london_120a.jpg"><img class="alignnone size-medium wp-image-126" title="20091006_london_120A" src="http://danielbeltra.wordpress.com/files/2009/12/20091006_london_120a.jpg?w=200" alt="" width="200" height="300" /></a><a href="http://danielbeltra.wordpress.com/files/2009/12/20091006_london_132.jpg"><img class="alignnone size-medium wp-image-125" title="20091006_london_132" src="http://danielbeltra.wordpress.com/files/2009/12/20091006_london_132.jpg?w=200" alt="" width="200" height="300" /></a></p>
<p>(before/after)</p>
<p>Of the 500, 100 were chosen to go into the book.</p>
<p>After all this was done, the hardbound book just had to be printed. And for the amount of effort it took to get the photo book done in time for the conference, it makes sense to get it printed as accurately as possible, since many of Daniel&#8217;s photos have a high level of contrast and can be a bit challenging to reproduce nicely. Not to mention that the book covers an important subject and might/hopefully leave an impression on some very influential people.</p>
<p>To do this, Daniel took a brief trip over to Verona, Italy, to visit <a href="http://www.ebs-bortolazzi.com/home.html">Editoriale Bortolazzi Stei (EBS)</a>, a great company where some of the best photo and art books in the world are printed. Though a visit to Italy might typically imply a relaxing tour of fine food and wine, visiting a Roman Coliseum: <a href="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0001.jpg"><img class="alignnone size-full wp-image-105" title="200910_verona_0001" src="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0001.jpg" alt="" width="450" height="300" /></a></p>
<p>(Above, the <a href="http://en.wikipedia.org/wiki/Verona_Arena">Verona Arena</a>.)</p>
<p>Daniel instead spent the better part of four days here, at the EBS facility:</p>
<p><a href="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0028.jpg"><img class="alignnone size-full wp-image-130" title="200910_verona_0028" src="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0028.jpg" alt="" width="450" height="300" /></a></p>
<p>So I bet you&#8217;re wondering how are the best photo books in the world are put together?</p>
<p>Here&#8217;s how:</p>
<p>First the pages are adjusted on EBS&#8217;s calibrated monitors by a pre-press technician from proof prints that Daniel brought:</p>
<p><a href="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0043.jpg"><img class="alignnone size-full wp-image-108" title="200910_verona_0043" src="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0043.jpg" alt="" width="450" height="300" /></a></p>
<p>Then, manual adjustments are applied to the individual pages to produce a plate that prints another proof, which gets further adjusted to a finer tolerance.</p>
<p><a href="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0076.jpg"><img class="alignnone size-full wp-image-111" title="200910_verona_0076" src="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0076.jpg" alt="" width="450" height="300" /></a></p>
<p><a href="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0035.jpg"><img class="alignnone size-full wp-image-106" title="200910_verona_0035" src="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0035.jpg" alt="" width="450" height="675" /></a></p>
<p><a href="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0040.jpg"><img class="alignnone size-full wp-image-107" title="200910_verona_0040" src="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0040.jpg" alt="" width="450" height="337" /></a></p>
<p>Above, Stuart Smith looks at proof pages, while waiting for more pages to be printed.</p>
<p>Then, once it gets really close for all four pages in a sheet of paper, Daniel and Stuart would go down to the pressroom floor and make final adjustments:</p>
<p><a href="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0081.jpg"><img class="alignnone size-full wp-image-114" title="200910_verona_0081" src="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0081.jpg" alt="" width="450" height="300" /></a></p>
<p><a href="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0080.jpg"><img class="alignnone size-full wp-image-113" title="200910_verona_0080" src="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0080.jpg" alt="" width="450" height="300" /></a></p>
<p>Above, Alessandra Agostini reviews book sheets with a printer technician.</p>
<p><a href="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0077.jpg"><img class="alignnone size-full wp-image-112" title="200910_verona_0077" src="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0077.jpg" alt="" width="450" height="300" /></a></p>
<p>To make the final sheet of pages adjustments are made in the press, as opposed to on the source plate, of the individual levels of cyan, yellow, magenta and black inks. Each button above controls the ink intensity for a portion of the sheet.</p>
<p>Once the printer has made a final proof print that is to Daniel&#8217;s standards, he o.k.&#8217;s it with a signature, after which point there is no going back.</p>
<p><a href="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0083.jpg"><img class="alignnone size-full wp-image-115" title="200910_verona_0083" src="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0083.jpg" alt="" width="450" height="300" /></a></p>
<p>The press then starts humming along and produces 500 sheets, which have 4 pages to a side:</p>
<p><a href="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0065.jpg"><img class="alignnone size-full wp-image-110" title="200910_verona_0065" src="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0065.jpg" alt="" width="450" height="300" /></a></p>
<p><a href="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0121.jpg"><img class="alignnone size-full wp-image-123" title="200910_verona_0121" src="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0121.jpg" alt="" width="450" height="300" /></a></p>
<p>Then, finally after all this is done, the sheets are turned upside down and printed on the back, which is an even more stressful time, since any mistakes would ruin 500 sheets of paper in one fail swoop.</p>
<p>Once all the pages were finished, they were stacked tidily in the warehouse to await cutting and binding:</p>
<p><a href="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0096.jpg"><img class="alignnone size-full wp-image-118" title="200910_verona_0096" src="http://danielbeltra.wordpress.com/files/2009/12/200910_verona_0096.jpg" alt="" width="450" height="300" /></a></p>
<p>All in all, producing <em>Rainforests:</em> was a fascinating experience to be a part of and a greatly satisfying challenge to complete, though we might have gained a few gray hairs and wrinkles in the process. <em>Rainforests:</em> has many fantastically beautiful and haunting images in it, printed perfectly. The book sequence and layout of the photos which Stuart put together tells a very linear story about tropical deforestation that is very accessible and easy to understand.</p>
<p>Everyone involved in its production, from Daniel on down, should be very proud of and pleased with the book. We learned a lot about the process and will be better prepared when Daniel makes his next book, which will hopefully be very soon.</p>
<p>-JN</p>
<p>(The book itself is 96 11&#8243;x16&#8243; pages, in which 100 photos are used, 65 of which are full pages, weighing in around two pounds.)</p>
<p>Update: More blog links to info about the PRP <a href="http://danielbeltra.wordpress.com/2009/10/16/prince-charles-awards-daniel-beltra-prp-prize/">here</a> and <a href="http://danielbeltra.wordpress.com/2009/10/31/prp-online-booklet-is-live/">here</a>, fyi.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[EBS - they really are in business.]]></title>
<link>http://thedogsinthestreet.net/2009/12/07/ebs-they-really-are-in-business/</link>
<pubDate>Mon, 07 Dec 2009 17:35:50 +0000</pubDate>
<dc:creator>www.thedogsinthestreet.net</dc:creator>
<guid>http://thedogsinthestreet.net/2009/12/07/ebs-they-really-are-in-business/</guid>
<description><![CDATA[A sensible banker who has the foresight to know that there is life beyond the current economic uncer]]></description>
<content:encoded><![CDATA[A sensible banker who has the foresight to know that there is life beyond the current economic uncer]]></content:encoded>
</item>
<item>
<title><![CDATA[Raz&oacute;n #5 para migrar a Windows Server 2008 R2]]></title>
<link>http://chiabaron.wordpress.com/2009/11/30/razn-5-para-migrar-a-windows-server-2008-r2/</link>
<pubDate>Mon, 30 Nov 2009 13:37:47 +0000</pubDate>
<dc:creator>chiabaron</dc:creator>
<guid>http://chiabaron.wordpress.com/2009/11/30/razn-5-para-migrar-a-windows-server-2008-r2/</guid>
<description><![CDATA[5. Administración de servidores más sencilla y eficaz   Aunque siempre es conveniente aumentar las c]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="776"><a href="http://www.microsoft.com/windowsserver2008/en/us/why-upgrade.aspx">5. Administración de servidores más sencilla y eficaz</a></td>
</tr>
<tr>
<td width="776"> </td>
</tr>
<tr>
<td width="776">Aunque siempre es conveniente aumentar las capacidades de su sistema operativo de servidores, el aspecto negativo siempre ha recaído en la complejidad y las cargas de trabajo adicionales que reciben a diario los administradores de servidores. Windows Server 2008 R2 específicamente aborda este problema con mucho trabajo que se puede observar en todas sus consolas de administración. Las funciones de estas herramientas incluyen:</td>
</tr>
<tr>
<td width="776">· Mejor administración del consumo de energía del centro de datos, como se comprobó anteriormente</td>
</tr>
<tr>
<td width="776">· Mejor administración remota, incluso un Administrador de servidores que se instala remotamente</td>
</tr>
<tr>
<td width="776">· Funciones de administración mejoradas a través de Active Directory Domain Services y Active Directory Federated Services actualizados y simplificados</td>
</tr>
<tr>
<td width="776">Windows Server 2008 R2 a su vez mejora la función conocida PowerShell que se encuentra en Windows Server 2008. PowerShell 2.0 maximiza enormemente la versión anterior con la introducción de más de 240 nuevos cmdlets preintegrados, así como una nueva interfaz gráfica de usuario (GUI) que proporciona funciones de desarrollo de nivel profesional para crear nuevos cmdlets. La nueva GUI incluye sintaxis a todo color, nuevas capacidades para depurar scripts en producción y nuevas herramientas de prueba.</td>
</tr>
</tbody>
</table>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[MD5 hashing performance on AWS Small Instance (windows)]]></title>
<link>http://ec2lab.com/2009/11/25/md5-hashing-performance-on-aws-small-instance-windows/</link>
<pubDate>Wed, 25 Nov 2009 22:30:11 +0000</pubDate>
<dc:creator>webtoprint</dc:creator>
<guid>http://ec2lab.com/2009/11/25/md5-hashing-performance-on-aws-small-instance-windows/</guid>
<description><![CDATA[It&#8217;s a good idea to verify files after data import from an HDD -&gt; S3 -&gt; EBS. I ran a sim]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>It&#8217;s a good idea to verify files after data import from an HDD -&#62; S3 -&#62; EBS.</p>
<p>I ran a simple .net app to read the import log and check an MD5 hash of the copied file against the hash recorded in the log.</p>
<p>A single drive EBS is slower than the average SATA drive when it comes to reads: 23MB/s on a streaming read with  Qlen=1 and file size between 50k and 20MB.</p>
<p><a href="http://cloudcracker.wordpress.com/files/2009/11/aws-md5-test.png"><img class="alignnone size-medium wp-image-18" title="aws-md5-performance-test" src="http://cloudcracker.wordpress.com/files/2009/11/aws-md5-test.png?w=300" alt="" width="300" height="278" /></a></p>
<p>Smaller files give even slower performance, which is kind of expected, but it was performing much better on a RAID0 with 2 SATAII drives.</p>
<p><a href="http://cloudcracker.wordpress.com/files/2009/11/ebs-performance-small-files.png"><img class="alignnone size-medium wp-image-19" title="ebs-performance-small-files" src="http://cloudcracker.wordpress.com/files/2009/11/ebs-performance-small-files.png?w=300" alt="" width="300" height="278" /></a></p>
<p>It took hh:mm to read and hash &#8230; files total of &#8230;.GB</p>
<h2>Conclusion</h2>
<p>Learn to get more with less.</p>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[AWS import-export]]></title>
<link>http://ec2lab.com/2009/11/22/aws-import-export/</link>
<pubDate>Sun, 22 Nov 2009 09:29:17 +0000</pubDate>
<dc:creator>webtoprint</dc:creator>
<guid>http://ec2lab.com/2009/11/22/aws-import-export/</guid>
<description><![CDATA[I shipped just under 1TB of data to AWS for importing into S3. They were surprisingly responsive whe]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I shipped just under 1TB of data to AWS for importing into S3.</p>
<p>They were surprisingly responsive when I inquired about letting an overseas customers import some data. It&#8217;s probably still a limited beta. Not all are that lucky. Be patient. They&#8217;ll open it up for everyone.</p>
<p>S3 -&#62; EBS app</p>
<p>The first hurdle is moving the data from S3 to EBS. They cannot import it to EBS directly.</p>
<p>AWS generated an import log that has date-time, source name, target name, MD5 and copying result, which was 200,OK for all. I wrote a simple app to read the log and copy the files from a bucket to a folder on an EBS.</p>
<p>The app is configurable which folders it copies. I launched 4 instances of the app for 4 copying threads. Not the best piece of engineering, but it works and took me only a few hrs to write and test.</p>
<p>Performance</p>
<p>Very, very disappointing. Extremely disappointing on the networking side. Look at the screenshot:</p>
<p><a href="http://cloudcracker.wordpress.com/files/2009/11/aws-s3-ebs-copy.png"><img class="alignnone size-medium wp-image-14" title="aws-s3-ebs-copy" src="http://cloudcracker.wordpress.com/files/2009/11/aws-s3-ebs-copy.png?w=300" alt="aws-s3-ebs-copy" width="300" height="228" /></a></p>
<p>The disk didn&#8217;t look that bad.</p>
<p>Average Queue: about 2</p>
<p>Peak writes: almost 10MB/s</p>
<p>The network was a complete disappointment: 50Mbit/s at peaks</p>
<p>I do not know if this is S3 or Ec2 or just this instance (small). At this stage I blame S3. Copying large chunks of data between 2 EC2 instances went through with a blazing trail.</p>
<p>Copying is still in progress. Down to 3 threads now, but it&#8217;s not running any faster, so the machines is not overloaded.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[I Love Banhammers!]]></title>
<link>http://devilgeek.wordpress.com/2009/11/20/i-love-banhammers/</link>
<pubDate>Fri, 20 Nov 2009 16:14:12 +0000</pubDate>
<dc:creator>devilgeek</dc:creator>
<guid>http://devilgeek.wordpress.com/2009/11/20/i-love-banhammers/</guid>
<description><![CDATA[Gamepolitics.com reported late yesterday that the AbingtonIP patent law firm may be planning a class]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Gamepolitics.com reported late yesterday that the AbingtonIP patent law firm may be planning a class-action lawsuit against Microsoft for the recent bans on over 1 million XBox Live accounts. Their argument is not everyone who was banned was involved in any kind of illegal activity, such as piracy or hacking. They also claim Microsoft may have done this so close to the launch of Modern Warfare 2 to boost XBox Live subscription revenues. The full story can be found <a href="http://gamepolitics.com/2009/11/19/law-firm-sniffing-around-xbox-live-class-action-suit" target="_blank">here</a>.</p>
<p>Personally, I have no problem with people getting banned. Having seen the gold farmers in games like World of Warcraft, Warhammer Online, and Aion, I&#8217;ve grown a bit&#8230;jaded about banning, in that I don&#8217;t think its done enough. Besides, its practically common knowledge amongst the gaming community that people hack their consoles. I&#8217;ve heard of people hacking PS3&#8217;s, XBox 360&#8217;s, Wii&#8217;s, PS2&#8217;s, PSP&#8217;s, and even iPhone&#8217;s. I had a friend a while back who would hack original XBox&#8217;s for a small fee. I will agree that the release of Modern Warfare 2 provided a prime opportunity for Microsoft; an opportunity to combat the hacking and piracy of their consoles.</p>
<p>On a side note, I&#8217;m glad I don&#8217;t live in New York. Otherwise I&#8217;d have to hear &#8220;<a href="http://kotaku.com/5408922/ny-testing-emergency-broadcasts-over-gaming-networks" target="_blank">beeeeeeep beeeeeeep</a>&#8221; in the middle of playing one of my games.</p>
<p>Semper whatever.</p>
<p>The DevilGeek</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[091109 f(x) @ EBS TokTok Boni Hani]]></title>
<link>http://blossomlicious.wordpress.com/2009/11/17/091109-fx-ebs-toktok-boni-hani/</link>
<pubDate>Wed, 18 Nov 2009 03:32:18 +0000</pubDate>
<dc:creator>non</dc:creator>
<guid>http://blossomlicious.wordpress.com/2009/11/17/091109-fx-ebs-toktok-boni-hani/</guid>
<description><![CDATA[091109 EBS TokTok Boni Hani &#8211; f(x) cut 1 091109 EBS TokTok Boni Hani &#8211; f(x) cut 2 091109]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><a href="http://www.swfcabin.com/open/1258171667">091109 EBS TokTok Boni Hani &#8211; f(x) cut 1</a></p>
<p style="text-align:center;"><a href="http://www.youtube.com/watch?v=-At0u8hypXE">091109 EBS TokTok Boni Hani &#8211; f(x) cut 2</a></p>
<p style="text-align:center;"><a href="http://www.youtube.com/watch?v=KhnCLaOoJoY">091109 EBS TokTok Boni Hani &#8211; f(x) cut 3</a></p>
<p style="text-align:center;"><a href="http://www.youtube.com/watch?v=Oml4j0NDoME">091109 EBS TokTok Boni Hani &#8211; f(x) cut 4 </a></p>
<blockquote><p>Da click en cada link para qeu puedas ver el video (: Son cuts <strong>muuy</strong> pequeñísimos, cada uno dura de 2 a 5 segundos.</p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Regresa la esencia Ella Baila Sola con Marta Botía y Rocío Pavón bajo el nombre de EBS]]></title>
<link>http://ebsfan.wordpress.com/2009/11/14/regresa-la-esencia-ella-baila-sola-con-marta-botia-y-rocio-pavon-bajo-el-nombre-de-ebs/</link>
<pubDate>Sat, 14 Nov 2009 19:06:54 +0000</pubDate>
<dc:creator>cedequack</dc:creator>
<guid>http://ebsfan.wordpress.com/2009/11/14/regresa-la-esencia-ella-baila-sola-con-marta-botia-y-rocio-pavon-bajo-el-nombre-de-ebs/</guid>
<description><![CDATA[No sé si alguien logrará entender, ni si yo sabré transmitir la emoción que me puede embargar ahora ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="alignnone size-full wp-image-6" title="ebs foto_estudio_001" src="http://ebsfan.wordpress.com/files/2009/11/ebs-foto_estudio_001.jpg" alt="ebs foto_estudio_001" width="600" height="399" /><a href="http://www.slide.com/s/ir2ycdj17z9FZIjOSOEA6R2Cj2Yrvcn2?referrer=hlnk" target="_blank"><br />
</a></p>
<p>No sé si alguien logrará entender, ni si yo sabré transmitir la emoción que me puede embargar ahora mismo, en este momento en el que, por fruto del mas puro azar, he conocido el regreso de ELLA BAILA SOLA.</p>
<p>Han sido NUEVE largos años de espera desde que en el año 2000 un sábado por la tarde bajaba desde la residencia de estudiantes al centro de la ciudad de Cuenca (ciudad natal de Marilia), para intentar que la dependienta de la tienda me vendiese el último disco que sacaría el grupo dos días antes de ponerse a la venta. No lo conseguí, pero sí logré que lo sacase y ver esa portada que me mantendría en vela dos días más hasta que un lunes por la mañana aprovechando el descanso entre clases me hice con él y pude escuchar las que, intuía por sus letras, serían las últimas canciones de Marta y Marilia juntas.</p>
<p><span style="text-decoration:underline;">&#8220;Sentir&#8221;</span> (<a href="http://www.ebs-blog.com/" target="_blank">ve a su sitio web para descargar la canción</a>)</p>
<p style="text-align:center;"><a href="http://www.youtube.com/watch?v=y6mFKWi5Rro" target="_blank">Link al vídeo</a></p>
<p style="text-align:center;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/y6mFKWi5Rro&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/y6mFKWi5Rro&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p style="text-align:center;"><img class="alignnone size-full wp-image-7" title="ebs foto_estudio_002" src="http://ebsfan.wordpress.com/files/2009/11/ebs-foto_estudio_002.jpg" alt="ebs foto_estudio_002" width="600" height="900" /></p>
<p style="text-align:left;">Pocos meses después llegó la nefasta noticia que me dejó tocado musicalmente, su separación. No obstante ellas habían hecho que yo descubriese la música, su sentido, habían conseguido que, lo que hasta el momento eran simples notas, me acompañasen en una etapa de mi vida llena de cambios, que junto con sus ritmos, me harían rellenar ese espacio de sentimientos que me faltaba para completar huecos de un incierto futuro que me esperaba a la vuelta de la esquina.</p>
<p>▬ <a href="http://www.ebs-blog.com/" target="_blank">Sitio web de Rocío y Marta, EBS</a></p>
<p>Sí, en estos momentos estoy feliz cuando escribo estas líneas. Es una felicidad extraña, cercana y similar a la que sentía cuando de repente, en la radio, escuchaba al locutor decir &#8220;y aquí está lo nuevo de Ella Baila Sola&#8230;&#8221; (y es que por aquel entonces no disponía de internet para enterarme. Una felicidad cercana pero no igual. Más que nunca hoy Ella Baila Sola. Marta Botía sigue dentro del grupo al que han dado el nombre del segundo álbum de Marta y Marilia, EBS, siglas conocidas para los que íbamos a sus conciertos y seguíamos su carrera musical. Pero Marilia se ha ido, ni siquiera se sabe nada acerca del disco que debió haber sacado hace ya años. En EBS es sustituída por Rocío Pavón, una preciosa voz melódica que no desentona con las armonías del grupo que me conquistó, pero cuya presencia ahora, por deferencia a la voz de Marilia y su recuerdo, se me antoja como una sana y necesaria &#8220;traición&#8221; entre comillas, que espero que remita con el paso del tiempo.</p>
<p>Al fin y al cabo gracias a Marta Botía y esta nueva voz, es por lo que, por muy increíble que me parezca sin ser totalmente consciente de lo grande que es esta noticia para mí, vuelven a bailar solas de nuevo. Cuando a finales de octubre vaya a la tienda y diga &#8220;quiero el nuevo disco de Ella Baila Sola&#8221;&#8230; cuántos momentos de conciertos, risas, karaokes y vivencias con su música de fondo se me vendrán a la cabeza&#8230;</p>
<p style="text-align:center;"><img class="alignnone size-full wp-image-5" title="ebs foto_estudio_003" src="http://ebsfan.wordpress.com/files/2009/11/ebs-foto_estudio_003.jpg" alt="ebs foto_estudio_003" width="600" height="399" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Mortgage lending in Ireland - easy to see who wants to lend and who doesn't]]></title>
<link>http://thedogsinthestreet.net/2009/11/12/mortgage-lending-in-ireland-easy-to-see-who-wants-to-lend-and-who-doesnt/</link>
<pubDate>Thu, 12 Nov 2009 08:37:54 +0000</pubDate>
<dc:creator>www.thedogsinthestreet.net</dc:creator>
<guid>http://thedogsinthestreet.net/2009/11/12/mortgage-lending-in-ireland-easy-to-see-who-wants-to-lend-and-who-doesnt/</guid>
<description><![CDATA[It is very easy to see who is lending and who simply doesn&#8217;t wish to lend at the moment. Just ]]></description>
<content:encoded><![CDATA[It is very easy to see who is lending and who simply doesn&#8217;t wish to lend at the moment. Just ]]></content:encoded>
</item>
<item>
<title><![CDATA[Essential Business Server Replacement Mode Install]]></title>
<link>http://onehundredwatt.wordpress.com/2009/11/07/essential-business-server-replacement-mode-install/</link>
<pubDate>Fri, 06 Nov 2009 19:54:52 +0000</pubDate>
<dc:creator>Steve</dc:creator>
<guid>http://onehundredwatt.wordpress.com/2009/11/07/essential-business-server-replacement-mode-install/</guid>
<description><![CDATA[I recently had an issue with the System Centre Essentials on the Management Server of an Essential B]]></description>
<content:encoded><![CDATA[I recently had an issue with the System Centre Essentials on the Management Server of an Essential B]]></content:encoded>
</item>
<item>
<title><![CDATA[Monday Night Set Ups]]></title>
<link>http://tradebuz.wordpress.com/2009/11/02/monday-night-set-ups/</link>
<pubDate>Tue, 03 Nov 2009 04:58:11 +0000</pubDate>
<dc:creator>Kos</dc:creator>
<guid>http://tradebuz.wordpress.com/2009/11/02/monday-night-set-ups/</guid>
<description><![CDATA[Take your pick.   MOS Short on a breakdown with increased volume or long with a stop below yesterday]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a rel="attachment wp-att-2382" href="http://tradebuz.wordpress.com/2009/11/02/monday-night-set-ups/mos-11-02/" target="_blank"><img class="alignright size-thumbnail wp-image-2382" title="MOS 11.02" src="http://tradebuz.wordpress.com/files/2009/11/mos-11-02.png?w=150" alt="MOS 11.02" width="150" height="77" /></a>Take your pick.   MOS Short on a breakdown with increased volume or long with a stop below yesterdays low of day</p>
<p><a rel="attachment wp-att-2388" href="http://tradebuz.wordpress.com/2009/11/02/monday-night-set-ups/agu-11-02/" target="_blank"><img class="alignright size-thumbnail wp-image-2388" title="AGU 11.02" src="http://tradebuz.wordpress.com/files/2009/11/agu-11-02.png?w=150" alt="AGU 11.02" width="150" height="84" /></a>AGU play it long or short.  Need to see volume on a breakdown to confirm.</p>
<p>&#160;</p>
<p><a href="http://acrossthecurve.com/?p=9877" target="_blank"><img class="alignright size-thumbnail wp-image-2400" title="EBS 11.02.09" src="http://tradebuz.wordpress.com/files/2009/11/ebs-11-02-09.png?w=150" alt="EBS 11.02.09" width="150" height="121" /></a>Like EBS here for a low capital risk entry as its at the bottom of a long- forming a triangle [200d EMA support] AND it was announced today that the biotech antrax vaccine manufacturer is being added to the S&#38;P 500.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[EBS 09 ¡¡¡Grandes Novedades!!!]]></title>
<link>http://lupitasalgado.wordpress.com/2009/11/01/ebs-09-%c2%a1%c2%a1%c2%a1grandes-novedades/</link>
<pubDate>Sun, 01 Nov 2009 05:59:50 +0000</pubDate>
<dc:creator>lupitasalgado</dc:creator>
<guid>http://lupitasalgado.wordpress.com/2009/11/01/ebs-09-%c2%a1%c2%a1%c2%a1grandes-novedades/</guid>
<description><![CDATA[Nuevamente con Grandes Novedades!!! Ahora en México, Odyssey Nail Systems una marca reconocida mundi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Nuevamente con Grandes Novedades!!!</strong><br />
Ahora en México, Odyssey Nail Systems una marca reconocida mundialmente.</strong><br />
<strong>&#8220;Made by the Best, for the Best&#8221;</strong><br />
<img src="http://lupitasalgado.wordpress.com/files/2009/10/ebs09-069.jpg" alt="EBS09 069" title="EBS09 069" width="205" height="299" class="aligncenter size-full wp-image-368" /><br />
<strong>Hola a todos!!!<br />
El <strong>Campeón Mundial &#8220;Trang Nugyen&#8221; </strong>creador de la marca; presente en México para el &#8220;Gran Lanzamiento&#8221; de su línea de productos,  y demostrarnos el dominio que tiene del acrílico y su gran talento.<br />
Acompañado por grandes talentos como <strong>Catherine Wong y Carla Colier</strong>, todos visitando nuestro país por primera vez.<br />
Quiero contarles, <strong>que para mí es un logro más, el formar parte del equipo de ONS, Odyssey Nail Systems México </strong>y platicarles que fué una experiencia única, conocer a personas tan importantes en este maravilloso mundo de las uñas y poder compartir momentos increibles con todos ellos..!!</p>
<p><strong>Trang y Catherine, haciendo sus demostraciones con una habilidad increible..!! Verlos trabajar es facinante..!! </strong></p>
<p><img src="http://lupitasalgado.wordpress.com/files/2009/11/ebs09-018.jpg?w=300" alt="ONS Lupita Salgado" title="ONS Lupita Salgado" width="300" height="200" class="aligncenter size-medium wp-image-418" /><br />
<img src="http://lupitasalgado.wordpress.com/files/2009/11/ebs09-023.jpg?w=300" alt="ONS Lupita Salgado" title="ONS Lupita Salgado" width="300" height="200" class="aligncenter size-medium wp-image-417" /><br />
Que satisfacción estar con <strong>Ghenna González</strong>, ahora <strong>&#8220;Directora de Odyssey Nail Systems México&#8221;..!!<br />
</strong>Qué tal..?? Gracias por compartir tu talento..!!<br />
<img src="http://lupitasalgado.wordpress.com/files/2009/11/ebs09-0021.jpg?w=217" alt="Lupita Salgado y Ghenna González" title="Lupita Salgado y Ghenna González" width="217" height="300" class="aligncenter size-medium wp-image-412" /></p>
<p><strong>Imagínense venir desde Singapur para enseñarnos su técnica de aplicación..!! </strong></p>
<p>Es increible, nunca me imaginé tener la gran oportunidad de aprender de ella y estar a su lado..!!!<br />
Es una persona muy dulce y muy sencilla, una Dama..!! <strong>Gracias Catherine, aprendí mucho de tí..!!!</strong></p>
<p><img src="http://lupitasalgado.wordpress.com/files/2009/11/ebs09-001.jpg?w=300" alt="Lupita Salgado y Catherine Wong" title="Lupita Salgado y Catherine Wong" width="300" height="200" class="aligncenter size-medium wp-image-409" /><br />
<strong>Que orgullo estar a un lado del Campeón Mundial y su esposa la presidenta de la línea ONS..!!</strong><br />
<strong>Gracias &#8220;Teacher Trang&#8221;, aprendí mucho de su trabajo y sobre todo fué una gran experiencia de vida conocerlo..!! </strong>Quiero decirles que los dos son personas muy sencillas y muy agradables, apesar de lo importantes que son, nunca demostraron sentirse superiores a nadie..!!</p>
<p><strong>Que emoción..!! </strong><br />
<img src="http://lupitasalgado.wordpress.com/files/2009/10/ebs09-026.jpg?w=300" alt="EBS09 Lupita Salgado" title="EBS09 Lupita Salgado" width="300" height="200" class="aligncenter size-medium wp-image-405" /><br />
Sabú, Técnico de Nail Factory conviviendo con el equipo de ONS, aquí no hay rivalidad ni envidias..!!<br />
<img src="http://lupitasalgado.wordpress.com/files/2009/10/ebs09-027.jpg?w=300" alt="EBS09 Lupita Salgado" title="EBS09 Lupita Salgado" width="300" height="200" class="aligncenter size-medium wp-image-403" /><br />
<strong>El Equipo de Educadores de ONS México..!!</strong></p>
<p>Formado por; Lorena Ochoa, Linda Alvarez, Griselada Martínez, Janett Súarez, Karen Castro, Anahi Coria, Gris Rodríguez, Eva Montelongo, Fernando Martínez, Adair Alexis, Gloria Longa, Lupita Villaruel, Ghenna González y yo (Lupita Salgado), acompañados por Catherine Wong y Vannie<br />
<strong>Es una gran oportunidad y responsabilidad, pertenecer a éste equipo..!!</strong><br />
Gracias a todos, somos un Excelente Equipo..!!<br />
<img src="http://lupitasalgado.wordpress.com/files/2009/10/ebs09-0711.jpg" alt="Equipo ONS México Lupita Salgado" title="Equipo ONS México Lupita Salgado" width="300" height="224" class="aligncenter size-full wp-image-399" /><br />
<strong>El Seminario a su máxma capacidad..!!!</strong></p>
<p>Fué increible escuchar al <strong>Campeón del Mundo, compartir sus conocimientos con todos nosotros..!!</strong><br />
Aprendimos los pasos exactos para realizar uñas de competencia y la manufactura del acrílico.. eh..!!<br />
Qué tal..?? </p>
<p>Al seminario acudieron técnicos de varias marcas como <strong>Nail Factory, Organic, NSI y otras</strong>; eso habla de que no hay fronteras para el conocimiento..!! <strong>Y de que todos somos compañeros..!!</strong></p>
<p><strong>Además de Trang y Catherine, no podía faltar la participación de Ghenna, porsupuesto..!!  </strong></p>
<p><strong>Realmente fué una experiencia fantástica..!!</strong><br />
<img src="http://lupitasalgado.wordpress.com/files/2009/10/ebs09-024.jpg?w=300" alt="EBS09 Lupita Salgado" title="EBS09 Lupita Salgado" width="300" height="200" class="aligncenter size-medium wp-image-390" /><br />
<strong>El trabajo de Catherine Wong es extraordinario..!! En su mano derecha, vean que hermoso diseño..!!</strong><br />
<img src="http://lupitasalgado.wordpress.com/files/2009/10/ebs09-012.jpg?w=300" alt="EBS09 Lupita Salgado" title="EBS09 Lupita Salgado" width="300" height="200" class="aligncenter size-medium wp-image-388" /><br />
La mano izquierda de <strong>Catherine Wong</strong>, <strong>vean el trabajo tan detallado..!! Es impresionante verdad?? </strong>Lo mejor de todo es que en el seminario, aprendimos la técnica para hacer la cara del gato..!!<br />
<img src="http://lupitasalgado.wordpress.com/files/2009/10/ebs09-014.jpg?w=229" alt="EBS09 Lupita Salgado" title="EBS09 Lupita Salgado" width="229" height="300" class="aligncenter size-medium wp-image-384" /><br />
<img src="http://lupitasalgado.wordpress.com/files/2009/10/ebs09-013.jpg?w=199" alt="EBS09 Lupita Salgado" title="EBS09 Lupita Salgado" width="199" height="300" class="aligncenter size-medium wp-image-386" /></p>
<p>Estas son las 10 nuevas colecciones que presentaron en la <strong>EBS</strong> y que son lanzamiento mundial, <strong>su presentación lo dice todo.., la calidad es lo mas importante!!! </strong><br />
<img src="http://lupitasalgado.wordpress.com/files/2009/10/ebs09-016.jpg?w=300" alt="EBS09 Lupita Salgado" title="EBS09 Lupita Salgado" width="300" height="200" class="aligncenter size-medium wp-image-381" /><br />
<strong>Una muestra del maravilloso trabajo de <strong>Trang y Catherine</strong>, son hermosas no???</strong><br />
Las uñas inferiores las realizó Trang y las superiores Catherine en las manos de Vannie, esposa de Trang y presidenta de ONS.<br />
<img src="http://lupitasalgado.wordpress.com/files/2009/10/ebs09-020.jpg?w=300" alt="EBS09 Lupita Salgado" title="EBS09 Lupita Salgado" width="300" height="200" class="aligncenter size-medium wp-image-375" /><br />
Este es el diseño que utilicé en la presentación de <strong>Odyssey Nail Systems</strong>, me dió mucho gusto que al <strong>Campeón Mundial, Trang Nguyen y a Catherine Wong les encantaron..!!!<br />
Se imaginan que satisfacción..!! Catherine hasta fotos les tomó..!! </strong></p>
<p><img src="http://lupitasalgado.wordpress.com/files/2009/10/ebs09-068.jpg?w=300" alt="EBS09 068" title="EBS09 068" width="300" height="225" class="aligncenter size-medium wp-image-371" /><br />
<strong>Visita mi página Web www.lupitasalgado.com y encontrarás este diseño y la técnica para realizarlo.</strong> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Todo un éxito resulto el lanzamiento en Mexico de Odyssey Nail Systems]]></title>
<link>http://odysseygto.wordpress.com/2009/10/31/exitodeons/</link>
<pubDate>Sat, 31 Oct 2009 17:20:06 +0000</pubDate>
<dc:creator>odysseygto</dc:creator>
<guid>http://odysseygto.wordpress.com/2009/10/31/exitodeons/</guid>
<description><![CDATA[&nbsp; Por fin el gran día llego , el pasado 25 de octubre fue la presentación de ONS en Mexico Cont]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>&#160;</p>
<p>Por fin el gran día llego , el pasado 25 de octubre fue la presentación de ONS en Mexico</p>
<p>Contando con la presencia de sus fundadores el Master Trang Nguyen  y   su esposa Vann Luu ademas de la presidenta de otros grandes maestos como son: Catherine Wong  , Carla Collier   y  Ghenna González , Max Estrada entre otros.</p>
<p><img class="aligncenter size-full wp-image-44" title="PA260095" src="http://odysseygto.wordpress.com/files/2009/10/pa260095.jpg" alt="PA260095" width="450" height="337" /></p>
<p><img class="aligncenter size-full wp-image-47" title="PA260099" src="http://odysseygto.wordpress.com/files/2009/10/pa260099.jpg" alt="PA260099" width="450" height="337" /></p>
<p><img class="aligncenter size-full wp-image-42" title="PA260070" src="http://odysseygto.wordpress.com/files/2009/10/pa260070.jpg" alt="PA260070" width="450" height="337" /></p>
<p><img class="aligncenter size-full wp-image-48" title="PA260102" src="http://odysseygto.wordpress.com/files/2009/10/pa260102.jpg" alt="PA260102" width="450" height="337" /></p>
<p><img class="aligncenter size-full wp-image-41" title="PA260067" src="http://odysseygto.wordpress.com/files/2009/10/pa260067.jpg" alt="PA260067" width="450" height="337" /></p>
<p><img class="aligncenter size-full wp-image-35" title="PA260023" src="http://odysseygto.wordpress.com/files/2009/10/pa260023.jpg" alt="PA260023" width="450" height="337" /></p>
<p>En el stand se dieron cita cientos de persona que acudieron a disfrutar de la maestría de  Trang , el arte de Catherine, la elegancia de Carla y que decir de nuestra anfitriona Ghenna González.</p>
<p><img class="aligncenter size-full wp-image-31" title="PA260019" src="http://odysseygto.wordpress.com/files/2009/10/pa260019.jpg" alt="PA260019" width="450" height="337" /></p>
<p><img class="aligncenter size-full wp-image-36" title="PA260059" src="http://odysseygto.wordpress.com/files/2009/10/pa260059.jpg" alt="PA260059" width="450" height="337" /></p>
<p><img class="aligncenter size-full wp-image-37" title="PA260061" src="http://odysseygto.wordpress.com/files/2009/10/pa260061.jpg" alt="PA260061" width="450" height="337" /></p>
<p><img class="aligncenter size-full wp-image-38" title="PA260060" src="http://odysseygto.wordpress.com/files/2009/10/pa260060.jpg" alt="PA260060" width="450" height="337" /></p>
<p><img class="aligncenter size-full wp-image-40" title="PA260065" src="http://odysseygto.wordpress.com/files/2009/10/pa260065.jpg" alt="PA260065" width="450" height="337" /></p>
<p>ONS Mexico presento una propuesta diferente a los asistentes del EBS no solo presente a los técnicos y master trabajando con la gente y en plataforma , si no que sedio a la tarea de realizar un mega seminario en el que los asistentes pudieron tener una catedra de lo quesignifica convinar el arte con la tecnica.</p>
<p><img class="aligncenter size-medium wp-image-50" title="PA270138" src="http://odysseygto.wordpress.com/files/2009/10/pa270138.jpg?w=300" alt="PA270138" width="300" height="225" /></p>
<p><img class="aligncenter size-medium wp-image-49" title="PA270126" src="http://odysseygto.wordpress.com/files/2009/10/pa270126.jpg?w=300" alt="PA270126" width="300" height="225" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Consultar relacion entre PO &amp; Requisition]]></title>
<link>http://amosqueda.wordpress.com/2009/10/30/consultar-relacion-entre-po-requisition/</link>
<pubDate>Fri, 30 Oct 2009 22:55:46 +0000</pubDate>
<dc:creator>devdb</dc:creator>
<guid>http://amosqueda.wordpress.com/2009/10/30/consultar-relacion-entre-po-requisition/</guid>
<description><![CDATA[Consulta para mostrar la relación entre Requisiton y PO select r.segment1 "Req Num", p.segment1 "PO ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Consulta para mostrar la relación entre Requisiton y PO<!--more--><br />
<code>select r.segment1 "Req Num",<br />
p.segment1 "PO Num"<br />
from po_headers_all p,<br />
po_distributions_all d,<br />
po_req_distributions_all rd,<br />
po_requisition_lines_all rl,<br />
po_requisition_headers_all r<br />
where p.po_header_id = d.po_header_id<br />
and d.req_distribution_id = rd.distribution_id<br />
and rd.requisition_line_id = rl.requisition_line_id<br />
and rl.requisition_header_id = r.requisition_header_id </code></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cambiar organización en R12]]></title>
<link>http://amosqueda.wordpress.com/2009/10/27/cambiar-organizacion-en-r12/</link>
<pubDate>Tue, 27 Oct 2009 16:16:32 +0000</pubDate>
<dc:creator>devdb</dc:creator>
<guid>http://amosqueda.wordpress.com/2009/10/27/cambiar-organizacion-en-r12/</guid>
<description><![CDATA[Después de trabajar con versiones anteriores a Oracle EBS R12, el cambio de organización o de unidad]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Después de trabajar con versiones anteriores a Oracle EBS R12, el cambio de organización o de unidad operativa para ver los datos de alguna vista<br />
hacia uso de <em>dbms_application_info.set_client_info(ORG_ID);</em><br />
<!--more--><br />
Sin embargo, eso cambio ahora en R12 hay un nuevo api o al menos se debe usar</p>
<p style="padding-left:30px;"><em>mo_global.init(’AP’);<br />
mo_global.set_policy_context(’S&#8217;,ORG_ID);</em></p>
<p><em> </em></p>
<p><em><span style="font-style:normal;">el valor &#8216;S&#8217; indica que es una simple organización de contexto, se debe reemplazar ORG_ID por la unidad operativa que se desea usar.</span></em><br />
También encontré que se pueden usar múltiples unidades operativas asociadas a un perfil de seguridad (en ingles. security profile), para ello se debe<br />
usar</p>
<p style="padding-left:30px;"><em>mo_global.set_org_access(NULL,SECURITY_PROFILE_ID,’ASO’); </em></p>
<p>donde se deberá reemplazar <em>SECURITY_PROFILE_ID</em> por el id del profile que deseamos usar, el valor  <em>&#8216;ASO&#8217;</em> es la abreviatura (short name)  de la aplicación<br />
asociada a la responsabilidad que utilizaremos para ejecutar el sql.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Acústico de EBS en la terraza Rockola.fm]]></title>
<link>http://rockolafm.wordpress.com/2009/10/27/acustico-de-ebs-en-la-terraza-rockola-fm/</link>
<pubDate>Tue, 27 Oct 2009 09:14:47 +0000</pubDate>
<dc:creator>anikarockola</dc:creator>
<guid>http://rockolafm.wordpress.com/2009/10/27/acustico-de-ebs-en-la-terraza-rockola-fm/</guid>
<description><![CDATA[Te contamos que habían vuelto, te explicamos cómo, ahora no podíamos por menos invitaros a escucharl]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/nAftmcNtvRs&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/nAftmcNtvRs&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p style="text-align:left;">Te contamos que habían vuelto, te explicamos <a href="http://rockolafm.wordpress.com/2009/10/12/ella-ya-no-baila-sola/">cómo</a>, ahora no podíamos por menos invitaros a escucharlas.</p>
<p>EBS (el nuevo proyecto de <a href="http://www.rockola.fm/artista/Ella+Baila+Sola">Ella Baila Sola</a>) ha estado en nuestra oficina (ayer a mediodía) para brindarnos la oportunidad de conocer más detalles sobre el proyecto y para escucharlas en directo (como no podía ser menos), ¿no te pica la curiosidad por saber cómo va a ser este nuevo proyecto con raíces en el anterior?.</p>
<p style="text-align:left;"><img class="aligncenter size-medium wp-image-2749" title="Imagent 068" src="http://rockolafm.wordpress.com/files/2009/10/imagent-068.jpg?w=300" alt="Imagent 068" width="300" height="199" /><br />
En los 90 Marta y Marilia se hicieron famosas con el dúo <a href="http://www.rockola.fm/artista/Ella+Baila+Sola">Ella Baila Sola</a>. Ahora Marta, con Rocío (no Marilia), vuelve recuperando el sonido acústico. En un juego de voces agudas y graves, sus timbres se unen (sin saber bien en qué punto) para crear armonía, pero ¿qué parámetros siguen?.</p>
<p>Hoy hemos revivido aquello que hace tiempo dejamos de ver. Guitarras y taburetes, pero con una voz distinta, más dulce. Uniendo nuevas fuerzas han defendido el que supone el primer trabajo de la formación, “Despierta” (que, por cierto, sale hoy a la venta), y la continuación renovada del proyecto. Por eso, no es de extrañar que haya habido sonrisas para apoyarse y varios choques de palmas entre ellas.</p>
<p style="text-align:left;"><img class="aligncenter" title="Imagent 062" src="../files/2009/10/imagent-062.jpg?w=300" alt="Imagent 062" width="300" height="199" /><br />
Bromeando, tocando y respondiendo preguntas. Así es como EBS se ha presentado hoy en la terraza de Rockola.fm.</p>
<p style="text-align:left;">Aparte de tocarnos algunas canciones del nuevo disco, hablarnos del pasado y hablarnos del futuro, han hecho un breve recorrido por tres de los temas que más sonaron en el anterior dueto, ¿te atreves a intentar adivinar cuáles?.</p>
<p>Como ya sabes, pronto colgaremos el vídeo que resume lo que ha pasado en este acústico que ha contado, además, con la participación de algunos amigos que han venido a escucharlas en directo e, incluso, a hacerlas alguna que otra pregunta.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Utilizando FNDLOAD]]></title>
<link>http://amosqueda.wordpress.com/2009/10/26/utilizando-fndload/</link>
<pubDate>Mon, 26 Oct 2009 23:23:16 +0000</pubDate>
<dc:creator>devdb</dc:creator>
<guid>http://amosqueda.wordpress.com/2009/10/26/utilizando-fndload/</guid>
<description><![CDATA[Es una util herramienta para mover desarrollos entre instancias, a continuación algunos ejemplos: Si]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Es una util herramienta para mover desarrollos entre instancias, a continuación algunos ejemplos:</p>
<p>Sintaxis<br />
FNDLOAD <em>login</em>0 Y <em>mode</em> ConfigFile DataFile [ entity[ param1.. paramN]]</p>
<ul>
<li>login            :  usuario/contraseña ej. apps/apps</li>
<li>mode          :  modo de uso, download o upload</li>
<li>ConfigFile :  Ruta completa + el nombre del archivo de configuración</li>
<li>DataFile    :   Ruta completa + el nombre del archivo donde se almacenan los datos</li>
<li>Entity         :  Nombre de la entidad,  podría entenderse como los parámetros para el archivo de configuración</li>
<li>Param        :   Parámetros</li>
</ul>
<p><!--more--><br />
Entonces quedaría FNDLOAD apps/apps 0 Y UPLOAD $FND_TOP/patch/115/import/afcppstl.lct defincion1.ldt</p>
<p><strong>Bi Publisher</strong><br />
===============================================================================================<br />
Descargar definición de datos y plantillas</p>
<pre>FNDLOAD apps/apps 0 Y DOWNLOAD $XDO_TOP/patch/115/import/xdotmpl.lct my_file.ldt XDO_DS_DEFINITIONS APPLICATION_SHORT_NAME="app" DATA_SOURCE_CODE="code"</pre>
<p><strong>Printer Styles</strong><br />
===============================================================================================</p>
<pre>FNDLOAD apps/apps 0 Y DOWNLOAD $FND_TOP/patch/115/import/afcppstl.lct my_file.ldt STYLE PRINTER_STYLE_NAME="printer style name"</pre>
<p><strong>Lookups</strong><br />
===============================================================================================</p>
<pre>FNDLOAD apps/apps 0 Y DOWNLOAD $FND_TOP/patch/115/import/aflvmlu.lct my_file.ldt FND_LOOKUP_TYPE APPLICATION_SHORT_NAME="FND" LOOKUP_TYPE="lookup name"</pre>
<p><strong>Descriptive Flexfield with all of specific Contexts</strong><br />
===============================================================================================</p>
<pre>FNDLOAD apps/apps 0 Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct file_name.ldt DESC_FLEX P_LEVEL=’COL_ALL:REF_ALL:CTX_ONE:SEG_ALL’ APPLICATION_SHORT_NAME="FND" DESCRIPTIVE_FLEXFIELD_NAME="desc_flex_name" P_CONTEXT_CODE="context name"</pre>
<p><strong>Key Flexfield Structures</strong><br />
===============================================================================================</p>
<pre>FNDLOAD apps/apps O Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct file_name.ldt KEY_FLEX P_LEVEL=’COL_ALL:FQL_ALL:SQL_ALL:STR_ONE:WFP_ALL:SHA_ALL:CVR_ALL:SEG_ALL’
APPLICATION_SHORT_NAME="FND" ID_FLEX_CODE="key flex code" P_STRUCTURE_CODE="structure name"</pre>
<p><strong>Concurrent Programs</strong><br />
===============================================================================================</p>
<pre>FNDLOAD apps/apps O Y DOWNLOAD $FND_TOP/patch/115/import/afcpprog.lct file_name.ldt
PROGRAM APPLICATION_SHORT_NAME="application shortname" CONCURRENT_PROGRAM_NAME="concurrent name"</pre>
<p><strong>Value Sets</strong><br />
===============================================================================================</p>
<pre>FNDLOAD apps/apps O Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct file_name.ldt VALUE_SET_VALUE FLEX_VALUE_SET_NAME="value set name"</pre>
<p><strong>Value Sets with values</strong><br />
===============================================================================================</p>
<pre>FNDLOAD apps/apps O Y DOWNLOAD $FND_TOP/patch/115/import/afffload.lct file_name.ldt VALUE_SET FLEX_VALUE_SET_NAME="value set name"</pre>
<p><strong>Profile Options</strong><br />
===============================================================================================</p>
<pre>FNDLOAD apps/apps O Y DOWNLOAD $FND_TOP/patch/115/import/afscprof.lct file_name.ldt PROFILE PROFILE_NAME="profile option" APPLICATION_SHORT_NAME="application shortname"</pre>
<p><strong>Request Groups</strong><br />
===============================================================================================</p>
<pre>FNDLOAD apps/apps O Y DOWNLOAD $FND_TOP/patch/115/import/afcpreqg.lct file_name.ldt REQUEST_GROUP REQUEST_GROUP_NAME="request group" APPLICATION_SHORT_NAME="application shortname"</pre>
<p><strong>Request Sets</strong><br />
===============================================================================================</p>
<pre>FNDLOAD apps/apps O Y DOWNLOAD $FND_TOP/patch/115/import/afcprset.lct file_name.ldt REQ_SET APPLICATION_SHORT_NAME="FND" REQUEST_SET_NAME="request set"</pre>
<p><strong>Responsibilities</strong><br />
===============================================================================================</p>
<pre>FNDLOAD apps/apps O Y DOWNLOAD $FND_TOP/patch/115/import/afscursp.lct my_file.ldt FND_RESPONSIBILITY RESP_KEY="responsibility"</pre>
<p><strong>Menus</strong><br />
===============================================================================================</p>
<pre>FNDLOAD apps/apps O Y DOWNLOAD $FND_TOP/patch/115/import/afsload.lct my_file.ldt MENU MENU_NAME="menu_name"</pre>
<p><strong>Alerts</strong><br />
===============================================================================================</p>
<pre>FNDLOAD apps/apps O Y DOWNLOAD $ALR_TOP/patch/115/import/alr.lct my_file.ldt ALR_ALERTS APPLICATION_SHORT_NAME="application shortname"</pre>
</div>]]></content:encoded>
</item>

</channel>
</rss>
