<?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>Soheib Blog</title>
	<atom:link href="http://www.soheib.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.soheib.com</link>
	<description>Continues learning and sharing</description>
	<lastBuildDate>Tue, 19 Jun 2012 08:46:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>Report Manager Export in Pipe Delimited Format New Option Adding</title>
		<link>http://www.soheib.com/technical-knowledge/report-manager-export-in-pipe-delimited-format-new-option-adding/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=report-manager-export-in-pipe-delimited-format-new-option-adding</link>
		<comments>http://www.soheib.com/technical-knowledge/report-manager-export-in-pipe-delimited-format-new-option-adding/#comments</comments>
		<pubDate>Wed, 13 Jun 2012 09:46:37 +0000</pubDate>
		<dc:creator>Soheib</dc:creator>
				<category><![CDATA[MS Reporting Services]]></category>
		<category><![CDATA[Technical Knowledge]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[report manager]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://www.soheib.com/?p=624</guid>
		<description><![CDATA[In one of the projects that I worked for, I had to export data from the report manager in Pipe Delimited format. None of the export options that come standard include Pipe Delimited. So, here is a solution that I found that might be useful to you as well. I appreciate if you leave some [...]]]></description>
				<content:encoded><![CDATA[<p>In one of the projects that I worked for, I had to export data from the report manager in Pipe Delimited format. None of the export options that come standard include Pipe Delimited. So, here is a solution that I found that might be useful to you as well. I appreciate if you leave some feedback in the comment’s area or if you have any other suggestions.</p>
<p><strong>Solution:</strong></p>
<p><strong>1)</strong> The first thing we need to do is to edit the configuration file for reporting services. This file is called: RSReportServer.config</p>
<p><strong>2)</strong> By default this configuration file is located in the \Program Files\Microsoft SQL Server\MSSQL.<em>n</em>\Reporting Services\ReportServer</p>
<p><strong>3)</strong> Save a copy of the file in case you need to roll back your changes</p>
<p><strong>4)</strong> Open the original file in Notepad or a code editor. Do not use Textpad</p>
<p><strong>5)</strong> Add the following code to your &lt;Render&gt; node:</p>
<div id="codeSnippetWrapper" style="text-align: left; line-height: 12pt; background-color: #f4f4f4; margin: 20px 0px 10px; width: 97.5%; font-family: 'Courier New', courier, monospace; direction: ltr; max-height: 200px; font-size: 8pt; overflow: auto; cursor: text; border: silver 1px solid; padding: 4px;">
<pre id="codeSnippet" style="text-align: left; line-height: 12pt; background-color: #f4f4f4; margin: 0em; width: 100%; font-family: 'Courier New', courier, monospace; direction: ltr; color: black; font-size: 8pt; overflow: visible; border-style: none; padding: 0px;"><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">Extension</span> <span style="color: #ff0000;">Name</span><span style="color: #0000ff;">="PIPE"</span> <span style="color: #ff0000;">Type</span><span style="color: #0000ff;">="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering"</span><span style="color: #0000ff;">&gt;</span>        <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">OverrideNames</span><span style="color: #0000ff;">&gt;</span>            <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">Name</span> <span style="color: #ff0000;">Language</span><span style="color: #0000ff;">="en-US"</span><span style="color: #0000ff;">&gt;</span>TXT (Pipe delimited)<span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">Name</span><span style="color: #0000ff;">&gt;</span>        <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">OverrideNames</span><span style="color: #0000ff;">&gt;</span>        <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">Configuration</span><span style="color: #0000ff;">&gt;</span>          <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">DeviceInfo</span><span style="color: #0000ff;">&gt;</span>            <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">FieldDelimiter</span><span style="color: #0000ff;">&gt;</span>|<span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">FieldDelimiter</span><span style="color: #0000ff;">&gt;</span>            <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">FileExtension</span><span style="color: #0000ff;">&gt;</span>txt<span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">FileExtension</span><span style="color: #0000ff;">&gt;</span>          <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">DeviceInfo</span><span style="color: #0000ff;">&gt;</span>        <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">Configuration</span><span style="color: #0000ff;">&gt;</span>      <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">Extension</span><span style="color: #0000ff;">&gt;</span></pre>
<p>&nbsp;</p>
</div>
<p><strong>6)</strong> Save the file</p>
<p><strong>7)</strong> Go to the Report Manager <a href="http://localhost/reports">http://localhost/reports</a> and open any report</p>
<p>8) Use the export option and you should see Pipe Delimited listed</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image15.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb15.png" alt="image" width="620" height="185" border="0" /></a></p>
<p>&nbsp;</p>
<p>I hope this is helpful to you and don’t forget to leave some feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.soheib.com/technical-knowledge/report-manager-export-in-pipe-delimited-format-new-option-adding/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SQL Job Scheduler History</title>
		<link>http://www.soheib.com/technical-knowledge/sql-job-scheduler-history/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sql-job-scheduler-history</link>
		<comments>http://www.soheib.com/technical-knowledge/sql-job-scheduler-history/#comments</comments>
		<pubDate>Tue, 12 Jun 2012 14:02:13 +0000</pubDate>
		<dc:creator>Soheib</dc:creator>
				<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[Technical Knowledge]]></category>
		<category><![CDATA[job history]]></category>
		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://www.soheib.com/?p=618</guid>
		<description><![CDATA[Here is an easy way to get list of jobs ran in the past with status. Do you know of a better or simpler way to get the output? If so, please use the comment area to share your code. &#160; 1: CREATE PROCEDURE [dbo].[pr_check_JobHistory] @dateparam DATETIME = NULL 2: 3: AS 4: &#160; 5: [...]]]></description>
				<content:encoded><![CDATA[<p>Here is an easy way to get list of jobs ran in the past with status. Do you know of a better or simpler way to get the output? If so, please use the comment area to share your code.</p>
<p>&#160;</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span><span class="kwrd">CREATE</span>  <span class="kwrd">PROCEDURE</span> [dbo].[pr_check_JobHistory] @dateparam DATETIME = <span class="kwrd">NULL</span></pre>
<pre><span class="lnum">   2:  </span>                                             </pre>
<pre class="alt"><span class="lnum">   3:  </span><span class="kwrd">AS</span></pre>
<pre><span class="lnum">   4:  </span>&#160;</pre>
<pre class="alt"><span class="lnum">   5:  </span><span class="kwrd">BEGIN</span></pre>
<pre><span class="lnum">   6:  </span>  <span class="kwrd">IF</span> @dateparam <span class="kwrd">IS</span> <span class="kwrd">NULL</span></pre>
<pre class="alt"><span class="lnum">   7:  </span>  <span class="kwrd">SET</span> @dateparam = GETDATE();</pre>
<pre><span class="lnum">   8:  </span>  </pre>
<pre class="alt"><span class="lnum">   9:  </span>  <span class="kwrd">SELECT</span> sysjobhistory.server,</pre>
<pre><span class="lnum">  10:  </span>         sysjobs.name</pre>
<pre class="alt"><span class="lnum">  11:  </span>         <span class="kwrd">AS</span></pre>
<pre><span class="lnum">  12:  </span>         job_name,</pre>
<pre class="alt"><span class="lnum">  13:  </span>         <span class="kwrd">CASE</span> sysjobhistory.run_status</pre>
<pre><span class="lnum">  14:  </span>           <span class="kwrd">WHEN</span> 0 <span class="kwrd">THEN</span> <span class="str">'Failed'</span></pre>
<pre class="alt"><span class="lnum">  15:  </span>           <span class="kwrd">WHEN</span> 1 <span class="kwrd">THEN</span> <span class="str">'Succeeded'</span></pre>
<pre><span class="lnum">  16:  </span>           <span class="kwrd">ELSE</span> <span class="str">'???'</span></pre>
<pre class="alt"><span class="lnum">  17:  </span>         <span class="kwrd">END</span></pre>
<pre><span class="lnum">  18:  </span>         <span class="kwrd">AS</span></pre>
<pre class="alt"><span class="lnum">  19:  </span>         run_status,</pre>
<pre><span class="lnum">  20:  </span>         Isnull(<span class="kwrd">Substring</span>(<span class="kwrd">CONVERT</span>(<span class="kwrd">VARCHAR</span>(8), run_date), 1, 4) + <span class="str">'-'</span> +</pre>
<pre class="alt"><span class="lnum">  21:  </span>                       <span class="kwrd">Substring</span>(<span class="kwrd">CONVERT</span>(<span class="kwrd">VARCHAR</span></pre>
<pre><span class="lnum">  22:  </span>                                 (8), run_date), 5, 2) + <span class="str">'-'</span> +</pre>
<pre class="alt"><span class="lnum">  23:  </span>                <span class="kwrd">Substring</span>(<span class="kwrd">CONVERT</span>(<span class="kwrd">VARCHAR</span>(</pre>
<pre><span class="lnum">  24:  </span>                          8), run_date), 7, 2), <span class="str">''</span>)</pre>
<pre class="alt"><span class="lnum">  25:  </span>         <span class="kwrd">AS</span></pre>
<pre><span class="lnum">  26:  </span>         [Run <span class="kwrd">DATE</span>],</pre>
<pre class="alt"><span class="lnum">  27:  </span>         Isnull(<span class="kwrd">Substring</span>(<span class="kwrd">CONVERT</span>(<span class="kwrd">VARCHAR</span>(7), run_time+1000000), 2, 2) + <span class="str">':'</span></pre>
<pre><span class="lnum">  28:  </span>                 +</pre>
<pre class="alt"><span class="lnum">  29:  </span>                       <span class="kwrd">Substring</span>(<span class="kwrd">CONVERT</span>(<span class="kwrd">VARCHAR</span>(7), run_time+1000000), 4, 2</pre>
<pre><span class="lnum">  30:  </span>                        )</pre>
<pre class="alt"><span class="lnum">  31:  </span>                +</pre>
<pre><span class="lnum">  32:  </span>                <span class="str">':'</span> +</pre>
<pre class="alt"><span class="lnum">  33:  </span>                <span class="kwrd">Substring</span>(<span class="kwrd">CONVERT</span>(<span class="kwrd">VARCHAR</span>(7), run_time+1000000), 6, 2), <span class="str">''</span>)</pre>
<pre><span class="lnum">  34:  </span>         <span class="kwrd">AS</span></pre>
<pre class="alt"><span class="lnum">  35:  </span>         [Run <span class="kwrd">TIME</span>],</pre>
<pre><span class="lnum">  36:  </span>         Isnull(<span class="kwrd">Substring</span>(<span class="kwrd">CONVERT</span>(<span class="kwrd">VARCHAR</span>(7), run_duration+1000000), 2, 2) +</pre>
<pre class="alt"><span class="lnum">  37:  </span>                 <span class="str">':'</span> +</pre>
<pre><span class="lnum">  38:  </span>                       <span class="kwrd">Substring</span>(<span class="kwrd">CONVERT</span>(<span class="kwrd">VARCHAR</span>(7), run_duration+1000000),</pre>
<pre class="alt"><span class="lnum">  39:  </span>                       4,</pre>
<pre><span class="lnum">  40:  </span>                       2)</pre>
<pre class="alt"><span class="lnum">  41:  </span>                + <span class="str">':'</span> +</pre>
<pre><span class="lnum">  42:  </span>                <span class="kwrd">Substring</span>(<span class="kwrd">CONVERT</span>(<span class="kwrd">VARCHAR</span>(7), run_duration+1000000), 6, 2),</pre>
<pre class="alt"><span class="lnum">  43:  </span>         <span class="str">''</span></pre>
<pre><span class="lnum">  44:  </span>         ) <span class="kwrd">AS</span></pre>
<pre class="alt"><span class="lnum">  45:  </span>         [Duration],</pre>
<pre><span class="lnum">  46:  </span>         sysjobhistory.step_id,</pre>
<pre class="alt"><span class="lnum">  47:  </span>         sysjobhistory.step_name,</pre>
<pre><span class="lnum">  48:  </span>         sysjobhistory.MESSAGE</pre>
<pre class="alt"><span class="lnum">  49:  </span>  <span class="kwrd">FROM</span>   msdb.dbo.sysjobhistory</pre>
<pre><span class="lnum">  50:  </span>         <span class="kwrd">INNER</span> <span class="kwrd">JOIN</span> msdb.dbo.sysjobs</pre>
<pre class="alt"><span class="lnum">  51:  </span>           <span class="kwrd">ON</span> msdb.dbo.sysjobhistory.job_id = msdb.dbo.sysjobs.job_id</pre>
<pre><span class="lnum">  52:  </span>  <span class="kwrd">WHERE</span>  sysjobhistory.run_date = Datepart(yyyy, @dateparam) * 10000 +</pre>
<pre class="alt"><span class="lnum">  53:  </span>                                         Datepart(mm, @dateparam) * 100 +</pre>
<pre><span class="lnum">  54:  </span>                                  Datepart</pre>
<pre class="alt"><span class="lnum">  55:  </span>                                  (</pre>
<pre><span class="lnum">  56:  </span>                                         dd, @dateparam)</pre>
<pre class="alt"><span class="lnum">  57:  </span>         --<span class="kwrd">AND</span> sysjobs.name = @JobName --remove this line <span class="kwrd">if</span> you want <span class="kwrd">to</span> show <span class="kwrd">all</span> jobs <span class="kwrd">for</span> the specified <span class="kwrd">day</span></pre>
<pre><span class="lnum">  58:  </span>  <span class="kwrd">ORDER</span>  <span class="kwrd">BY</span> instance_id <span class="kwrd">DESC</span></pre>
<pre class="alt"><span class="lnum">  59:  </span>END</pre>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
]]></content:encoded>
			<wfw:commentRss>http://www.soheib.com/technical-knowledge/sql-job-scheduler-history/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move database files .mdf &amp; .ldf to different physical location</title>
		<link>http://www.soheib.com/technical-knowledge/move-database-files-mdf-ldf-to-different-physical-location/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=move-database-files-mdf-ldf-to-different-physical-location</link>
		<comments>http://www.soheib.com/technical-knowledge/move-database-files-mdf-ldf-to-different-physical-location/#comments</comments>
		<pubDate>Fri, 08 Jun 2012 15:59:47 +0000</pubDate>
		<dc:creator>Soheib</dc:creator>
				<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[Technical Knowledge]]></category>
		<category><![CDATA[move data files]]></category>
		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://www.soheib.com/?p=613</guid>
		<description><![CDATA[Here is a brief and simple way to move your Data files from one location to another. This method involves using SSMS (SQL Server Management Studio) 1- Open SSMS and locate to database you want to change Data file directory 2- Remember/Note the current Data file directory path. You can do this by Right Clicking [...]]]></description>
				<content:encoded><![CDATA[<p>Here is a brief and simple way to move your Data files from one location to another.</p>
<p>This method involves using SSMS (SQL Server Management Studio)</p>
<p>1- Open SSMS and locate to database you want to change Data file directory</p>
<p>2- Remember/Note the current Data file directory path. You can do this by Right Clicking on the database and choose <strong>Properties</strong>. Then, from the left side menu, click on Files to see the Path of your current Data file directory path. Note it down or click on Control + C to copy the path name.</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image8.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb8.png" alt="image" width="611" height="494" border="0" /></a></p>
<p>3- <strong>Detach</strong> Database by Right clicking on the database and choosing &gt;&gt; <strong>Tasks</strong> &gt;&gt; <strong>Detach</strong></p>
<p>4- A new window will appear. Click on Drop Connections check box and then click OK.</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image9.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb9.png" alt="image" width="611" height="549" border="0" /></a></p>
<p>5- Using the windows explorer, go to your Data file directory which you copied or wrote down in step 2:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image10.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb10.png" alt="image" width="611" height="378" border="0" /></a></p>
<p>6- <strong>Copy/Move</strong> the Data File (.MDF) and the Transaction Log file (.LDF) to your new physical location. Note that I always recommend copying first instead of moving in case the file gets corrupted during the move, you will still have the original one to go back to.</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image11.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb11.png" alt="image" width="611" height="378" border="0" /></a></p>
<p>7- Once you copied the two files, click on <strong>Database(s)</strong> main folder and choose <strong>Attach</strong>. Then, from the new opened window, click on <strong>Add</strong>:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image12.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb12.png" alt="image" width="611" height="549" border="0" /></a></p>
<p>8- Navigate to the new path where files are copied and choose the <strong>.mdf</strong> file and click on <strong>OK</strong>:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image13.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb13.png" alt="image" width="385" height="537" border="0" /></a></p>
<p>9- Now you can see that both the Data File (.MDF) and Transaction Log File (.LDF) are shown in the new location. Click OK and you are done (You need to refresh the Databases for the new attached database to appear again).</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image14.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb14.png" alt="image" width="611" height="549" border="0" /></a></p>
<p>&nbsp;</p>
<p>To improve the quality of this user-guide, please help me with some feedback or by simply commenting below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.soheib.com/technical-knowledge/move-database-files-mdf-ldf-to-different-physical-location/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Change column type in SQL Server</title>
		<link>http://www.soheib.com/technical-knowledge/change-column-type-in-sql-server/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=change-column-type-in-sql-server</link>
		<comments>http://www.soheib.com/technical-knowledge/change-column-type-in-sql-server/#comments</comments>
		<pubDate>Wed, 06 Jun 2012 12:50:27 +0000</pubDate>
		<dc:creator>Soheib</dc:creator>
				<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[Technical Knowledge]]></category>
		<category><![CDATA[alter column]]></category>
		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://www.soheib.com/?p=594</guid>
		<description><![CDATA[There are two ways to change the column type in SQL Server: 1- Is by writing a quick code in query script. 2- Is by using the enterprise manger: SSMS (SQL Server Management Studio). &#160; Method 1 Run the following code in SQL server: ALTER TABLE &#60;table name&#62; ALTER COLUMN &#60;column name&#62; DATA TYPE Example [...]]]></description>
				<content:encoded><![CDATA[<p>There are two ways to change the column type in SQL Server:</p>
<p>1- Is by writing a quick code in query script.</p>
<p>2- Is by using the enterprise manger: SSMS (SQL Server Management Studio).</p>
<p>&nbsp;</p>
<h4>Method 1</h4>
<p>Run the following code in SQL server:</p>
<p>ALTER TABLE <strong><span style="color: #a5a5a5;">&lt;table name&gt;</span></strong> ALTER COLUMN<span style="color: #a5a5a5;"><strong> &lt;column name&gt;</strong></span> DATA TYPE</p>
<pre class="csharpcode"><span class="kwrd"><span style="color: #000000;">Example Code:</span></span></pre>
<pre class="csharpcode"><span class="kwrd">ALTER</span> <span class="kwrd">TABLE</span> tblExampleTable <span class="kwrd">ALTER</span> <span class="kwrd">COLUMN</span> ID INT</pre>
<pre class="csharpcode"></pre>
<pre class="csharpcode">See Microsoft webpage for full Alter Table syntax details:</pre>
<pre class="csharpcode"><a href="http://msdn.microsoft.com/en-us/library/ms190273.aspx">http://msdn.microsoft.com/en-us/library/ms190273.aspx</a></pre>
<pre class="csharpcode"></pre>
<h4></h4>
<h4>Method 2</h4>
<p>To do the changes using the second method follow these steps:</p>
<blockquote><p>a- Open SSMS</p>
<p>b- Navigate to your table which you want to modify column</p>
<p>c- Find column and <strong>Right</strong> <strong>click</strong> the choose <strong>Modify</strong></p></blockquote>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image4.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb4.png" alt="image" width="456" height="391" border="0" /></a></p>
<blockquote><p>d- A window will open in Edit mode so that you can change the type of each column:</p></blockquote>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image5.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb5.png" alt="image" width="462" height="207" border="0" /></a></p>
<blockquote><p>e- Click on <strong>Save</strong> once you are done.</p></blockquote>
<p>Note that when you click <strong>Save</strong>, you might show the below warning message. Saving changes is not permitted:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image6.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb6.png" alt="image" width="469" height="373" border="0" /></a></p>
<p>In this case, you can change some settings to allow this save and avoid the warning. To do this simply follow these steps:</p>
<blockquote><p>1- In SSMS, click on <strong>Tools</strong></p>
<p>2- Choose <strong>Options</strong></p>
<p>3- Click on the <strong>Designers</strong> section from the left side menu</p>
<p>4- <strong>Un-check</strong> the box for: Prevent saving changes that require table re-creation</p></blockquote>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image7.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb7.png" alt="image" width="471" height="272" border="0" /></a></p>
<p>Now try to save again and this time it will work.</p>
<p>&nbsp;</p>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.soheib.com/technical-knowledge/change-column-type-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error &#8211; Report Manager: To use Report Builder, you must install .Net Framework 3.5 on this computer</title>
		<link>http://www.soheib.com/technical-knowledge/error-report-manager-to-use-report-builder-you-must-install-net-framework-3-5-on-this-computer/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=error-report-manager-to-use-report-builder-you-must-install-net-framework-3-5-on-this-computer</link>
		<comments>http://www.soheib.com/technical-knowledge/error-report-manager-to-use-report-builder-you-must-install-net-framework-3-5-on-this-computer/#comments</comments>
		<pubDate>Fri, 01 Jun 2012 09:10:53 +0000</pubDate>
		<dc:creator>Soheib</dc:creator>
				<category><![CDATA[MS Reporting Services]]></category>
		<category><![CDATA[Technical Knowledge]]></category>
		<category><![CDATA[Report Builder]]></category>

		<guid isPermaLink="false">http://www.soheib.com/?p=580</guid>
		<description><![CDATA[After the successful installation of SQL Server Reporting Services and when you are trying to access the Report Manger via link: http://localhost/Reports an error message is prompted when you click on Report Builder: The error message is: To use Report Builder, you must install .Net Framework 3.5 on this computer. To visit the Microsoft Download [...]]]></description>
				<content:encoded><![CDATA[<p>After the successful installation of SQL Server Reporting Services and when you are trying to access the Report Manger via link: <a href="http://localhost/Reports">http://localhost/Reports</a> an error message is prompted when you click on <strong>Report Builder</strong>:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb.png" alt="image" width="502" height="121" border="0" /></a></p>
<p>The error message is:</p>
<p><strong>To use Report Builder, you must install .Net Framework 3.5 on this computer. To visit the Microsoft Download Centre and install .Net Framework 3.5, click install.</strong></p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image1.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb1.png" alt="image" width="502" height="212" border="0" /></a></p>
<p>&nbsp;</p>
<p>If you already have .Net Framework 3.5 installed, then you do not need to do this. Even if you install it again, it will still prompt you with the same message again.</p>
<p><strong>Solution:</strong></p>
<p>This is a problem with Internet Explorer version 9. To bypass this, simply click on the <span style="text-decoration: underline;"><strong>compatibility icon</strong></span>, then try to access Report Builder again. This time it will work.</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image2.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb2.png" alt="image" width="502" height="38" border="0" /></a></p>
<p>Now you will see the Report Builder has launched:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/06/image3.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/06/image_thumb3.png" alt="image" width="500" height="327" border="0" /></a></p>
<p>&nbsp;</p>
<p>Hope this is helpful and send me your questions if you have problems or write in the comments.</p>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.soheib.com/technical-knowledge/error-report-manager-to-use-report-builder-you-must-install-net-framework-3-5-on-this-computer/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Convert VHD to VMDK</title>
		<link>http://www.soheib.com/technical-knowledge/convert-vhd-to-vmdk/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=convert-vhd-to-vmdk</link>
		<comments>http://www.soheib.com/technical-knowledge/convert-vhd-to-vmdk/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 15:16:05 +0000</pubDate>
		<dc:creator>Soheib</dc:creator>
				<category><![CDATA[Technical Knowledge]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Convert Virtual Disk]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.soheib.com/?p=565</guid>
		<description><![CDATA[If you have .VHD virtual disk from one of the Microsoft virtual products and you want to convert it to .VMDK by VMware, this you can be done using a conversion tool. There are two methods that you can follow depending on your scenario: Method A: VMware vCenter Converter Standalone Use a converter software product [...]]]></description>
				<content:encoded><![CDATA[<p>If you have .VHD virtual disk from one of the Microsoft virtual products and you want to convert it to .VMDK by VMware, this you can be done using a conversion tool. There are two methods that you can follow depending on your scenario:</p>
<h4><font color="#c0504d">Method A: VMware vCenter Converter Standalone</font></h4>
<p>Use a converter software product by VMware which is free to download using the link below:</p>
<p><a href="http://downloads.vmware.com/d/" target="_blank">http://downloads.vmware.com/d/</a></p>
<p>You can use this if your .VHD virtual machine is:</p>
<ol>
<li>Powered-on machine or </li>
<li>Hyper-V Server </li>
</ol>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb174.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image_thumb1" border="0" alt="image_thumb1" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb1_thumb.png" width="557" height="474" /></a></p>
<h4><font color="#c0504d"></font></h4>
<h4><font color="#c0504d">Method B: StarWind V2V Converter</font></h4>
<p>If your .VHD is not in any of the above cases (i.e. backup image) then you can use StarWind software tool to do this conversion. I like this product as it is free to use, simple and does the job. You can download it from this link: <a href="http://www.starwindsoftware.com/download-starwind-converter" target="_blank">http://www.starwindsoftware.com/download-starwind-converter</a></p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb1310.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image_thumb13" border="0" alt="image_thumb13" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb13_thumb1.png" width="557" height="430" /></a></p>
<p><strong>If you run into problems or have any other related queries, please write in the comment.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.soheib.com/technical-knowledge/convert-vhd-to-vmdk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download SQL Express 2012</title>
		<link>http://www.soheib.com/technical-knowledge/download-sql-2012-express/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=download-sql-2012-express</link>
		<comments>http://www.soheib.com/technical-knowledge/download-sql-2012-express/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 15:08:05 +0000</pubDate>
		<dc:creator>Soheib</dc:creator>
				<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[Technical Knowledge]]></category>
		<category><![CDATA[Download SQL Express]]></category>

		<guid isPermaLink="false">http://www.soheib.com/?p=558</guid>
		<description><![CDATA[You can download SQL 2012 Express from the following link: Download SQL 2012 Express SQL Server 2012 comes in different versions. To learn more about the differences, please read this article: SQL Server 2012 Express To learn how to do installation with step-by-step guide, read this article: SQL Server 2012 Express Installation Tutorial]]></description>
				<content:encoded><![CDATA[<p>You can download SQL 2012 Express from the following link:</p>
<p><a href="http://www.microsoft.com/betaexperience/pd/SQLEXPCTAV2/enus/default.aspx" target="_blank">Download SQL 2012 Express</a></p>
<p>SQL Server 2012 comes in different versions. To learn more about the differences, please read this article:</p>
<p><a href="http://www.soheib.com/technical-knowledge/sql-server-2012-express/" target="_blank">SQL Server 2012 Express</a></p>
<p>To learn how to do installation with step-by-step guide, read this article:</p>
<p><a href="http://www.soheib.com/technical-knowledge/sql-server-2012-express-installation-tutorial/" target="_blank">SQL Server 2012 Express Installation Tutorial</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.soheib.com/technical-knowledge/download-sql-2012-express/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert VMDK to VHD</title>
		<link>http://www.soheib.com/technical-knowledge/convert-vhd-to-vmdk-vmware/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=convert-vhd-to-vmdk-vmware</link>
		<comments>http://www.soheib.com/technical-knowledge/convert-vhd-to-vmdk-vmware/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 14:32:15 +0000</pubDate>
		<dc:creator>Soheib</dc:creator>
				<category><![CDATA[Technical Knowledge]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Convert Virtual Disk]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.soheib.com/?p=555</guid>
		<description><![CDATA[If you have a .VMDK virtual disk and you want to convert it to .VHD use Method B: For Method A, read this post Method A: VMware vCenter Converter Standalone You can use a converter software product by VMware which is free to download using the link below: http://downloads.vmware.com/d/ You can use this if your .VHD [...]]]></description>
				<content:encoded><![CDATA[<p>If you have a .VMDK virtual disk and you want to convert it to .VHD use <strong>Method B:</strong></p>
<p>For Method A, read <a href="http://www.soheib.com/technical-knowledge/convert-vhd-to-vmdk/" target="_blank">this post</a></p>
<h4><span style="color: #c0504d;">Method A: VMware vCenter Converter Standalone</span></h4>
<p>You can use a converter software product by VMware which is free to download using the link below:</p>
<p><a href="http://downloads.vmware.com/d/" target="_blank">http://downloads.vmware.com/d/</a></p>
<p>You can use this if your .VHD virtual machine is:</p>
<ol>
<li>Powered-on machine or</li>
<li>Hyper-V Server</li>
</ol>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image172.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb172.png" alt="image" width="557" height="474" border="0" /></a></p>
<h4><span style="color: #c0504d;">Method B: StarWind V2V Converter</span></h4>
<p>If your .VHD is not in any of the above cases (i.e. backup image) then you can use StarWind software tool to do this conversion. I like this product as it is free to use, simple and does the job. You can download it from this link: <a href="http://www.starwindsoftware.com/download-starwind-converter" target="_blank">http://www.starwindsoftware.com/download-starwind-converter</a></p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image173.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb173.png" alt="image" width="557" height="430" border="0" /></a></p>
<p><strong>If you run into problems or have any other related queries, please write in the comment.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.soheib.com/technical-knowledge/convert-vhd-to-vmdk-vmware/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Installing MySQL Community Server for Windows Tutorial (Workbench 5.2 CE)</title>
		<link>http://www.soheib.com/technical-knowledge/installing-mysql-community-server-for-windows-tutorial-workbench-5-2-ce/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installing-mysql-community-server-for-windows-tutorial-workbench-5-2-ce</link>
		<comments>http://www.soheib.com/technical-knowledge/installing-mysql-community-server-for-windows-tutorial-workbench-5-2-ce/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 15:51:21 +0000</pubDate>
		<dc:creator>Soheib</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical Knowledge]]></category>
		<category><![CDATA[MySQL Community Server]]></category>
		<category><![CDATA[Workbench]]></category>

		<guid isPermaLink="false">http://www.soheib.com/?p=537</guid>
		<description><![CDATA[“The world’s most popular open source database”   MySQL Community Server MySQL has significantly improved the front side of its product by providing user-friendly interfaces for easy control and administration. This is clearly demonstrated in Workbench CD 5.238 which is included in MySQL Community Edition, a free downloadable version. In this tutorial, we are going to [...]]]></description>
				<content:encoded><![CDATA[<blockquote><p><span style="font-size: medium;">“The world’s most popular open source database”   MySQL Community Server</span></p></blockquote>
<p>MySQL has significantly improved the front side of its product by providing user-friendly interfaces for easy control and administration. This is clearly demonstrated in Workbench CD 5.238 which is included in MySQL Community Edition, a <a href="http://mysql.com/downloads/mysql/" target="_blank">free downloadable version</a>. In this tutorial, we are going to cover the basic installation of MySQL on Windows platform.</p>
<h6>If you find this tutorial helpful or if you have enquiries, please write in the comment section.</h6>
<p>&nbsp;</p>
<p><strong>1.</strong> Download the MySQL Community Server from the link above.</p>
<p><strong>2.</strong> Double click on the mysql-installer-5.5.21.0.msi Windows Installer Package.</p>
<p><strong>3.</strong> You will see the first Welcome screen. Click on <span style="text-decoration: underline;">Install MySQL Products:</span></p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image153.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb152.png" alt="image" width="557" height="416" border="0" /></a></p>
<p><strong>4.</strong> Accept License Agreement and click on Next:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image154.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb153.png" alt="image" width="557" height="416" border="0" /></a></p>
<p><strong>5.</strong> If you have access to the internet, then click on Execute to check if there are newer versions of the products:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image155.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb154.png" alt="image" width="557" height="416" border="0" /></a></p>
<p><strong>6.</strong> Choose the type of the setup. I am selecting <strong>Full</strong> as I want all features to be included:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image156.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb155.png" alt="image" width="557" height="416" border="0" /></a></p>
<p><strong>7.</strong> Requirements is checked and in this case, Microsoft Visual C++ runtime is missing. Click Execute to download the missing requirement:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image157.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb156.png" alt="image" width="557" height="416" border="0" /></a></p>
<p><strong>8.</strong> Accept the License Terms and click on Install:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image158.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb157.png" alt="image" width="445" height="416" border="0" /></a></p>
<p><strong>9.</strong> A final requirement check. Click on Next to proceed:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image159.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb158.png" alt="image" width="557" height="416" border="0" /></a></p>
<p><strong>10.</strong> List of products to be installed is displayed. Click on Execute to proceed:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image160.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb159.png" alt="image" width="557" height="416" border="0" /></a></p>
<p><strong>11.</strong> Progress Summary is displayed:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image161.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb160.png" alt="image" width="557" height="416" border="0" /></a></p>
<p><strong>12.</strong> When all products are installed successfully, click on Next:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image162.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb162.png" alt="image" width="557" height="416" border="0" /></a></p>
<p><strong>13.</strong> Products which require configuration is displayed. Click Next to proceed:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image163.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb163.png" alt="image" width="557" height="416" border="0" /></a></p>
<p><strong>14.</strong> Choose the type of the configuration which you require for the MySQL server. Read the description for each type to learn about the differences. I am choosing Developer Machine since I am going to use it with other products and I want the minimal memory. Click Next to proceed:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image164.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb164.png" alt="image" width="557" height="416" border="0" /></a></p>
<p><strong>15.</strong> Default Network and Security settings are displayed. Enter root account password and click Next to continue:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image165.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb165.png" alt="image" width="557" height="416" border="0" /></a></p>
<p><strong>16.</strong> Confirm the configuration overview and click Next:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image166.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb166.png" alt="image" width="557" height="416" border="0" /></a></p>
<p><strong>17.</strong> Products are going to be installed and a completion message is displayed in the end. Click on Start MySQL Workbench to start working with MySQL. Click Finish:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image167.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb167.png" alt="image" width="557" height="416" border="0" /></a></p>
<p><strong>18.</strong> MySQL Workbench will start. As this is the first time, click on New Connection to create a connection to the database so that we can query:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image168.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb168.png" alt="image" width="554" height="416" border="0" /></a></p>
<p><strong>19.</strong> Type in the connection name: MydbConnection and click on OK:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image169.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb169.png" alt="image" width="557" height="349" border="0" /></a></p>
<p><strong>20.</strong> You will be prompted with root account password. Enter and click OK:</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image170.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb170.png" alt="image" width="420" height="216" border="0" /></a></p>
<p><strong>21.</strong> Now you can see your database objects on the left side and you can write your SQL query in the middle box.</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image171.png"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb171.png" alt="image" width="554" height="416" border="0" /></a></p>
<p>&nbsp;</p>
<h6>If you find this tutorial helpful or if you have enquiries, please write in the comment section.</h6>
]]></content:encoded>
			<wfw:commentRss>http://www.soheib.com/technical-knowledge/installing-mysql-community-server-for-windows-tutorial-workbench-5-2-ce/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Download Windows 7 Service Pack 1 (SP1)  (KB976932)</title>
		<link>http://www.soheib.com/technical-knowledge/download-windows-7-service-pack-1-sp1-kb976932/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=download-windows-7-service-pack-1-sp1-kb976932</link>
		<comments>http://www.soheib.com/technical-knowledge/download-windows-7-service-pack-1-sp1-kb976932/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 12:22:41 +0000</pubDate>
		<dc:creator>Soheib</dc:creator>
				<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Technical Knowledge]]></category>
		<category><![CDATA[Window 7 SP1]]></category>

		<guid isPermaLink="false">http://www.soheib.com/?p=496</guid>
		<description><![CDATA[Service Pack 1 (SP1) for Windows Server 2008 R2 and Windows 7 helps keep your PCs and servers on the latest support level. It provides ongoing improvements to the Windows operating system (including previous updates delivered over Windows Update, and incremental updates to the Windows 7 and Windows Server 2008 R2 platforms based on customer [...]]]></description>
				<content:encoded><![CDATA[<blockquote><p>Service Pack 1 (SP1) for Windows Server 2008 R2 and Windows 7 helps keep your PCs and servers on the latest support level. It provides ongoing improvements to the Windows operating system (including previous updates delivered over Windows Update, and incremental updates to the Windows 7 and Windows Server 2008 R2 platforms based on customer and partner feedback) and makes it easy for organizations to deploy a single set of updates. Microsoft</p></blockquote>
<p>&nbsp;</p>
<p>There are two ways of getting hold of Window 7 Service Pack 1 (SP1):</p>
<p><strong>1.</strong> From <strong>Windows Update</strong> (recommended method):</p>
<p>You can do this by going to Start &gt; All Programs &gt; Windows Update</p>
<p><a href="http://www.soheib.com/wp-content/uploads/2012/03/image150.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb149.png" alt="image" width="269" height="340" border="0" /></a><a href="http://www.soheib.com/wp-content/uploads/2012/03/image152.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.soheib.com/wp-content/uploads/2012/03/image_thumb150.png" alt="image" width="292" height="340" border="0" /></a></p>
<p>&nbsp;</p>
<p><strong>2.</strong> <strong>Standalone Version</strong> (x86, x64 and IA64)</p>
<p>You can download this from this link: <a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=5842" target="_blank">Window 7 Service Pack 1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.soheib.com/technical-knowledge/download-windows-7-service-pack-1-sp1-kb976932/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
