<?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>fallinglab &#187; SQL Server</title>
	<atom:link href="http://www.fallinglab.com/category/sql_server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fallinglab.com</link>
	<description>It's Not How Far You Fall, It's the Way You Land</description>
	<lastBuildDate>Wed, 17 Mar 2010 21:10:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Problema para crear una aplicación con Merb</title>
		<link>http://www.fallinglab.com/2008/11/17/problema-para-crear-una-aplicacion-con-merb/</link>
		<comments>http://www.fallinglab.com/2008/11/17/problema-para-crear-una-aplicacion-con-merb/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 19:12:40 +0000</pubDate>
		<dc:creator>gustavoe</dc:creator>
				<category><![CDATA[Merb]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.fallinglab.com/2008/11/17/problema-para-crear-una-aplicacion-con-merb/</guid>
		<description><![CDATA[Si, como yo, estás probando el framework Merb y obtenés este error cuando querés ejecutar el servidor:Loading init file from /home/fallinglab/dev/test/merb_test/config/init.rbLoading /home/fallinglab/dev/test/merb_test/config/environments/development.rb ~ Connecting to database.../usr/lib/ruby/gems/1.8/gems/dm-core-0.9.6/lib/dm-core/adapters/data_objects_adapter.rb:137:in `initialize': wrong number of arguments (8 for 1) (ArgumentError)Es, por lo que parece, debido que hay conflictos con la versión 2.0.0 de addressable. Por lo tanto desinstalando la versión [...]]]></description>
			<content:encoded><![CDATA[<p>Si, como yo, estás probando el framework <a href="http://www.merbivore.com/" title="Merb. All you need... nil you don't.">Merb</a> y obtenés este error cuando querés ejecutar el servidor:<br /><code><br />Loading init file from /home/fallinglab/dev/test/merb_test/config/init.rb<br />Loading /home/fallinglab/dev/test/merb_test/config/environments/development.rb<br /> ~ Connecting to database...<br />/usr/lib/ruby/gems/1.8/gems/dm-core-0.9.6/lib/dm-core/adapters/data_objects_adapter.rb:137:in `initialize': wrong number of arguments (8 for 1) (ArgumentError)<br /></code><br />Es, por lo que parece, debido que hay conflictos con la versión 2.0.0 de addressable. Por lo tanto desinstalando la versión 2.0.0 de addressable:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> gem uninstall addressable</pre></div></div>

<p>e instalando la versión 1.0.4:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> gem <span style="color: #c20cb9; font-weight: bold;">install</span> addressable <span style="color: #660033;">-v</span> 1.0.4</pre></div></div>

<p>debería funcionar bien.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fallinglab.com/2008/11/17/problema-para-crear-una-aplicacion-con-merb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Como desactivar todas las constraints en una base de datos de SQL Server</title>
		<link>http://www.fallinglab.com/2008/07/08/como-desactivar-todas-las-constraints-en-una-base-de-datos-de-sql-server/</link>
		<comments>http://www.fallinglab.com/2008/07/08/como-desactivar-todas-las-constraints-en-una-base-de-datos-de-sql-server/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 12:30:29 +0000</pubDate>
		<dc:creator>gustavoe</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.fallinglab.com/?p=8</guid>
		<description><![CDATA[Gracias al muy util sp_MSforeachtable se pueden desactivar todas las check constraints en una base de datos MS-SQL basta con ejecutar EXEC sp_MSforeachtable @command1="ALTER TABLE ? NOCHECK CONSTRAINT ALL" Para activarlas nuevamente: EXEC sp_MSforeachtable @command1="ALTER TABLE ? CHECK CONSTRAINT ALL" Esto anda solamente para SQL Server 2005 o superior]]></description>
			<content:encoded><![CDATA[<p>Gracias al muy util <code>sp_MSforeachtable</code> se pueden desactivar todas las check constraints en una base de datos MS-SQL basta con ejecutar</p>
<p><code>EXEC sp_MSforeachtable @command1="ALTER TABLE ? NOCHECK CONSTRAINT ALL"</code></p>
<p>Para activarlas nuevamente:</p>
<p><code>EXEC sp_MSforeachtable @command1="ALTER TABLE ? CHECK CONSTRAINT ALL"</code></p>
<p>Esto anda solamente para SQL Server 2005 o superior</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fallinglab.com/2008/07/08/como-desactivar-todas-las-constraints-en-una-base-de-datos-de-sql-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

