<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; 2012 RC0: Fix Setup Error: File format is not valid</title>
	<atom:link href="http://blog.sqlauthority.com/2011/12/10/sql-server-2012-rc0-fix-setup-error-file-format-is-not-valid/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2011/12/10/sql-server-2012-rc0-fix-setup-error-file-format-is-not-valid/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Tanu</title>
		<link>http://blog.sqlauthority.com/2011/12/10/sql-server-2012-rc0-fix-setup-error-file-format-is-not-valid/#comment-303060</link>
		<dc:creator><![CDATA[Tanu]]></dc:creator>
		<pubDate>Tue, 19 Jun 2012 06:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=16278#comment-303060</guid>
		<description><![CDATA[I don’t think the problem is with the extractor tool, I download the .ISO, burn it to DVD using native tool in windows 7.
After the burn finish, I can install the SQL server 2012 in windows 7 without problem, but when I tried to install it in windows 2008 R2 server, it gave me the ”File Format is not valid” message.
I think if the tool corrupt some files, the error message will also appear in windows 7, but it is not.]]></description>
		<content:encoded><![CDATA[<p>I don’t think the problem is with the extractor tool, I download the .ISO, burn it to DVD using native tool in windows 7.<br />
After the burn finish, I can install the SQL server 2012 in windows 7 without problem, but when I tried to install it in windows 2008 R2 server, it gave me the ”File Format is not valid” message.<br />
I think if the tool corrupt some files, the error message will also appear in windows 7, but it is not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jana</title>
		<link>http://blog.sqlauthority.com/2011/12/10/sql-server-2012-rc0-fix-setup-error-file-format-is-not-valid/#comment-224326</link>
		<dc:creator><![CDATA[Jana]]></dc:creator>
		<pubDate>Fri, 23 Dec 2011 09:38:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=16278#comment-224326</guid>
		<description><![CDATA[Hi Pinal...need some assistance regarding moving file groups...the requirement is as follows
-------------------------------------
- Move all non-clustered indexes to INDEX01 file group
- Move all user (U) type tables and clustered indexes to DATA01 file group
-------------------------
I need to perform teh above in 3 databases,and in each database we have 4 schemas,and in each database we have more than 100+ tables,can you please provied me some scripts if you have to move the tables all at a time or do we have any alternative to do this...

Thanks in advance
--Jana]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal&#8230;need some assistance regarding moving file groups&#8230;the requirement is as follows<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
- Move all non-clustered indexes to INDEX01 file group<br />
- Move all user (U) type tables and clustered indexes to DATA01 file group<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
I need to perform teh above in 3 databases,and in each database we have 4 schemas,and in each database we have more than 100+ tables,can you please provied me some scripts if you have to move the tables all at a time or do we have any alternative to do this&#8230;</p>
<p>Thanks in advance<br />
&#8211;Jana</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sourav Dutta</title>
		<link>http://blog.sqlauthority.com/2011/12/10/sql-server-2012-rc0-fix-setup-error-file-format-is-not-valid/#comment-215955</link>
		<dc:creator><![CDATA[Sourav Dutta]]></dc:creator>
		<pubDate>Mon, 12 Dec 2011 10:14:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=16278#comment-215955</guid>
		<description><![CDATA[“ Msg 7630 syntax error near ‘photos’  in the full text search condition ’Celebrity Photos’

•	But in case of the following codes I was not get the exact results. If I comment the second (2nd) line I get the exact results. But in case of function if I not using the second(2nd) line this will shows an error  “ Msg 7630 syntax error near ‘photos’  in the full text search condition ’Celebrity Photos’
Declare @txtKeyword varchar (500) =’Celebrity Photos’
Set @txtKeyword = replace (@txtKeyword, ‘ ‘,’ near ‘)
Select (len (ColumnName) – len (replace (ColumnName, @txtKeyword,’’)))/len (@txtKeyword) 
As Body_Count   from TableName

So please help me what can I do to get rid of that situation. It really needs your help.]]></description>
		<content:encoded><![CDATA[<p>“ Msg 7630 syntax error near ‘photos’  in the full text search condition ’Celebrity Photos’</p>
<p>•	But in case of the following codes I was not get the exact results. If I comment the second (2nd) line I get the exact results. But in case of function if I not using the second(2nd) line this will shows an error  “ Msg 7630 syntax error near ‘photos’  in the full text search condition ’Celebrity Photos’<br />
Declare @txtKeyword varchar (500) =’Celebrity Photos’<br />
Set @txtKeyword = replace (@txtKeyword, ‘ ‘,’ near ‘)<br />
Select (len (ColumnName) – len (replace (ColumnName, @txtKeyword,’’)))/len (@txtKeyword)<br />
As Body_Count   from TableName</p>
<p>So please help me what can I do to get rid of that situation. It really needs your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nakul Vachhrajani</title>
		<link>http://blog.sqlauthority.com/2011/12/10/sql-server-2012-rc0-fix-setup-error-file-format-is-not-valid/#comment-214686</link>
		<dc:creator><![CDATA[Nakul Vachhrajani]]></dc:creator>
		<pubDate>Sat, 10 Dec 2011 13:59:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=16278#comment-214686</guid>
		<description><![CDATA[I normally use the freeware - SlySoft Virtual Clone Drive - http://www.slysoft.com/en/download.html to &quot;mount&quot; the ISO image and use it as a virtual CD/DVD drive.

Quite frankly, while Microsoft ships quite a large amount of it&#039;s products via ISOs, it does not natively provide the ability to mount the ISO file. I found a Connect post that is marked as &quot;Won&#039;t Fix&quot; - http://connect.microsoft.com/WindowsServerFeedback/feedback/details/351231/mount-iso-files

For XP users, the solution in the form of a Virtual CD Control Panel - http://download.microsoft.com/download/7/b/6/7b6abd84-7841-4978-96f5-bd58df02efa2/winxpvirtualcdcontrolpanel_21.exe
However, please note that Vista and Windows 7 users will need the compatibility mode ON to use the Virtual CD control panel - where 3rd party products win without a doubt.]]></description>
		<content:encoded><![CDATA[<p>I normally use the freeware &#8211; SlySoft Virtual Clone Drive &#8211; <a href="http://www.slysoft.com/en/download.html" rel="nofollow">http://www.slysoft.com/en/download.html</a> to &#8220;mount&#8221; the ISO image and use it as a virtual CD/DVD drive.</p>
<p>Quite frankly, while Microsoft ships quite a large amount of it&#8217;s products via ISOs, it does not natively provide the ability to mount the ISO file. I found a Connect post that is marked as &#8220;Won&#8217;t Fix&#8221; &#8211; <a href="http://connect.microsoft.com/WindowsServerFeedback/feedback/details/351231/mount-iso-files" rel="nofollow">http://connect.microsoft.com/WindowsServerFeedback/feedback/details/351231/mount-iso-files</a></p>
<p>For XP users, the solution in the form of a Virtual CD Control Panel &#8211; <a href="http://download.microsoft.com/download/7/b/6/7b6abd84-7841-4978-96f5-bd58df02efa2/winxpvirtualcdcontrolpanel_21.exe" rel="nofollow">http://download.microsoft.com/download/7/b/6/7b6abd84-7841-4978-96f5-bd58df02efa2/winxpvirtualcdcontrolpanel_21.exe</a><br />
However, please note that Vista and Windows 7 users will need the compatibility mode ON to use the Virtual CD control panel &#8211; where 3rd party products win without a doubt.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
