<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Code Eater (Wael A. Kabli) : SQL Server 2005</title><link>http://blogs.msdn.com/wael/archive/tags/SQL+Server+2005/default.aspx</link><description>Tags: SQL Server 2005</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Doh!! Don’t install DC on SQL box</title><link>http://blogs.msdn.com/wael/archive/2007/07/02/doh-don-t-install-dc-on-sql-box.aspx</link><pubDate>Mon, 02 Jul 2007 08:19:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3655951</guid><dc:creator>Wael A. Kabli</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/wael/comments/3655951.aspx</comments><wfw:commentRss>http://blogs.msdn.com/wael/commentrss.aspx?PostID=3655951</wfw:commentRss><wfw:comment>http://blogs.msdn.com/wael/rsscomments.aspx?PostID=3655951</wfw:comment><description>&lt;P&gt;Ok I did this mistake in my VPC, &lt;/P&gt;
&lt;P&gt;I tried to make my machine a domain controller (DC) , &lt;/P&gt;
&lt;P&gt;But the box already have a SQL Server installed, &lt;/P&gt;
&lt;P&gt;The SQL stopped and if you try to uninstall, it gives you this error: &lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: red; FONT-FAMILY: Verdana"&gt;&lt;STRONG&gt;The setup has encountered an unexpected error while Setting Internal Properties. The error is: Fatal error during installation. &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;To solve this, there is a good link I found in MS support: &lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.microsoft.com/kb/919945" mce_href="http://support.microsoft.com/kb/919945"&gt;http://support.microsoft.com/kb/919945&lt;/A&gt; &lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=3655951" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/wael/archive/tags/SQL+Server+2005/default.aspx">SQL Server 2005</category></item><item><title>SQL Server Hijri (Hijra) Dates</title><link>http://blogs.msdn.com/wael/archive/2007/04/29/sql-server-hijri-hijra-dates.aspx</link><pubDate>Sun, 29 Apr 2007 12:46:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2323720</guid><dc:creator>Wael A. Kabli</dc:creator><slash:comments>5</slash:comments><comments>http://blogs.msdn.com/wael/comments/2323720.aspx</comments><wfw:commentRss>http://blogs.msdn.com/wael/commentrss.aspx?PostID=2323720</wfw:commentRss><wfw:comment>http://blogs.msdn.com/wael/rsscomments.aspx?PostID=2323720</wfw:comment><description>&lt;P&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;STRONG&gt;(Source: &lt;A href="http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q_21866389.html" target=_blank mce_href="http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q_21866389.html"&gt;http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q_21866389.html&lt;/A&gt;)&lt;BR&gt;&lt;/STRONG&gt;&lt;BR&gt;Hijri Date &lt;BR&gt;The SQL Server datetime data type supports only Gregorian dates, but you can use a conversion function to convert the Gregorian date to the Hijri date based on the Kuwaiti algorithm.&lt;BR&gt;&lt;BR&gt;Conversion to and from the Hijri calendar is possible through the CONVERT intrinsic. There are two CONVERT styles that are available in SQL Server 2000 to support Hijri dates: &lt;BR&gt;&lt;BR&gt;130—Returns the date using the Hijri calendar, in dd mon yyyy hh:mi:ss:mmmAM format. &lt;BR&gt;131—Returns the date using the Hijri calendar, in dd/mm/yy hh:mi:ss:mmmAM format. &lt;BR&gt;For example, to convert a Gregorian date to Hijri format with Transact-SQL, you would use syntax such as the following: &lt;BR&gt;&lt;BR&gt;SELECT CONVERT(nchar, GETDATE(), 131)&lt;BR&gt;&lt;BR&gt;This query will return a string such as the following in its result set:&lt;BR&gt;&lt;BR&gt;7/05/1421 12:14:35:727PM &lt;BR&gt;&lt;BR&gt;The reverse operation is also possible. The following syntax would be used to convert a Hijri date to Gregorian format:&lt;BR&gt;&lt;BR&gt;SELECT CONVERT(datetime, ' 7/05/1421 12:14:35:727PM', 131)&lt;BR&gt;&lt;BR&gt;This query would convert the date to SQL Server datetime type, which in SQL Query Analyzer would appear as follows: &lt;BR&gt;&lt;BR&gt;2000-08-07 12:14:35.727&lt;BR&gt;&lt;BR&gt;Note that SQL Server does not use the regional calendar settings included with Windows 2000, and any adjustment made in that regional setting for the Hijri date does not affect the conversion method of SQL Server.&lt;BR&gt;&lt;BR&gt;Also, SQL Server date functions such as DateName, DatePart, and DateAdd work with the Gregorian calendar, so you must make your conversions programmatically during development. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-FAMILY: Tahoma"&gt;&lt;SPAN style="FONT-SIZE: 10pt"&gt;Best regards, &lt;BR&gt;&lt;/SPAN&gt;&lt;STRONG&gt;Mohammad Al-Mohsin&lt;BR&gt;&lt;A href="http://mem9.net/" target=_blank mce_href="http://mem9.net"&gt;http://mem9.net&lt;/A&gt; | &lt;A href="http://mem999.spaces.live.com/" target=_blank mce_href="http://mem999.spaces.live.com"&gt;http://mem999.spaces.live.com&lt;/A&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=2323720" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/wael/archive/tags/SQL+Server+2005/default.aspx">SQL Server 2005</category></item><item><title>Microsoft SQL Server has a stronger security posture than the Oracle RDBMS!!</title><link>http://blogs.msdn.com/wael/archive/2006/12/21/microsoft-sql-server-has-a-stronger-security-posture-than-the-oracle-rdbms.aspx</link><pubDate>Thu, 21 Dec 2006 22:52:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1342007</guid><dc:creator>Wael A. Kabli</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/wael/comments/1342007.aspx</comments><wfw:commentRss>http://blogs.msdn.com/wael/commentrss.aspx?PostID=1342007</wfw:commentRss><wfw:comment>http://blogs.msdn.com/wael/rsscomments.aspx?PostID=1342007</wfw:comment><description>&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;This was a nice white paper &lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'times new roman'"&gt;David Litchfield&amp;nbsp;on&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 7.5pt; FONT-FAMILY: 'times new roman'"&gt; &lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'times new roman'"&gt;November 2006 and he published it in the NGSSoftware Insight Security Research (NISR) Publication.&lt;/SPAN&gt; 
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Arial"&gt;a copy of the white paper is on the follwing site: &lt;A href="http://www.databasesecurity.com/dbsec/comparison.pdf"&gt;www.database&lt;SPAN style="FONT-WEIGHT: bold"&gt;security&lt;/SPAN&gt;.com/dbsec/comparison.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Arial"&gt;The article had a nice and non-biased points on each product...&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Arial" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Arial"&gt;Summary:&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Arial"&gt;&lt;EM&gt;"&lt;FONT face="Times New Roman" size=3&gt;paper will examine the differences between the security posture of Microsoft’s SQL Server and Oracle’s RDBMS based upon flaws reported by external security researchers and since fixed by the vendor in question. Only flaws affecting the database server software itself have been considered in compiling this data so issues that affect, for example, Oracle Application Server have not been included&lt;/FONT&gt;"&lt;/EM&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0in"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;"&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-STYLE: italic; FONT-FAMILY: 'times new roman'"&gt;if security robustness and a high degree of assurance are concerns when looking to purchase database server software – given these results one should not be &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in"&gt;&lt;SPAN style="FONT-SIZE: 12pt; FONT-STYLE: italic; FONT-FAMILY: 'times new roman'"&gt;looking at Oracle as a serious contender.&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-STYLE: italic; FONT-FAMILY: Arial"&gt;"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-STYLE: italic; FONT-FAMILY: Arial"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="FONT-SIZE: 10pt; MARGIN: 0in; FONT-FAMILY: Arial"&gt;This is a nice document, go throug it and maybe tell me about it...&lt;/P&gt;
&lt;P style="FONT-SIZE: 12pt; MARGIN: 0in; FONT-FAMILY: 'times new roman'"&gt;thanks to my friend "Umit Tiric" who provided me with the white paper..&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1342007" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/wael/archive/tags/SQL+Server+2005/default.aspx">SQL Server 2005</category></item><item><title>Weird Thing about Microsoft SQL Server 2005 Enterprise Edition VHD!!</title><link>http://blogs.msdn.com/wael/archive/2006/12/21/weird-thing-about-microsoft-sql-server-2005-enterprise-edition-vhd.aspx</link><pubDate>Thu, 21 Dec 2006 21:44:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1341772</guid><dc:creator>Wael A. Kabli</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/wael/comments/1341772.aspx</comments><wfw:commentRss>http://blogs.msdn.com/wael/commentrss.aspx?PostID=1341772</wfw:commentRss><wfw:comment>http://blogs.msdn.com/wael/rsscomments.aspx?PostID=1341772</wfw:comment><description>&lt;P&gt;&amp;nbsp;Ok,&lt;/P&gt;
&lt;P&gt;I&amp;nbsp;might be blind, but if you go and download the Microsoft SQL Server 2005 Enterprise Edition VHD from this site:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=558F3ECE-6509-45E9-8D60-25175848A8B7&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=558F3ECE-6509-45E9-8D60-25175848A8B7&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;you'll find an excellent VM to work on SQL Server 2005,,,&lt;/P&gt;
&lt;P&gt;but the strange thing, YOU CAN'T FIND THE ADMINISTRATOR PASSWORD any where in the pag,,,&lt;/P&gt;
&lt;P&gt;and oh, what makes it more fun, when one guy was asking about the password in one of the forums, the moderator told him that "we don't want to repeat stuff again, go to the downloading page and you'll find it"!!. &lt;/P&gt;
&lt;P&gt;i don't know but if you go to the downlaod page and found the password by any chance, please print screen it and send it to me :)&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;anyways to solve this issue:&lt;/P&gt;
&lt;P mce_keep="true"&gt;to find the administrator password for Microsoft SQL Server 2005 Enterprise Edition VHD, go to this site:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.vmware.com/vmtn/appliances/directory/651"&gt;http://www.vmware.com/vmtn/appliances/directory/651&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&lt;STRONG&gt;The amazing thing is that, when you open the VM, you can see the README file actually on the desktop containing the username and password !!!!&lt;/STRONG&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1341772" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/wael/archive/tags/SQL+Server+2005/default.aspx">SQL Server 2005</category></item></channel></rss>