Who is online?  131 guests and 0 members
home  »  blogs  »  Did You Know Did You Know

SQLServerGeeks.com Blogs

Blogs RSS Feed

Did You Know Did You Know : Most Recent postings

Did You Know Did You Know

SQL Server 2008 R2 (sp1) & SQL Server 2008 (sp3) Feature Packs

4/23/2012 9:30:33 AM by Did You Know Did You Know  -  Comments: 0  -  Views: [1532]

Hi SQL Geeks, if you are looking for SQL Server 2012 feature pack; we blogged about it here: http://www.sqlservergeeks.com/blogs/QuickTip/sql-server-bi/523/sql-server-2012-feature-pack But if you are interested in the older versions of feature packs for SQL Server 2008 R2 & SQL Server 2008; follow these links: SQL Server 2008 R2 SP1 feature pack: http://www.microsoft.com/download/en/details.aspx?id=26728 SQL Server 2008 SP3 feature pack: http://www.microsoft.com/download/en/details.aspx?id=2...

Read More

Did You Know Did You Know

IDC WHITE PAPER - Microsoft SQL Server 2012: Potential Game Changer

2/14/2012 10:34:46 AM by Did You Know Did You Know  -  Comments: 0  -  Views: [1601]

IDC WHITE PAPER - Microsoft SQL Server 2012: Potential Game Changer Hi Friends, The launch of SQL Server 2012 has revealed a major new release with many feature enhancements as well as a new software licensing and pricing approach. For further information, click on this Link: http://services.social.microsoft.com/feeds/FeedItem?feedId=9ad12ff4-34cc-4f25-b933-b349de6fca5c&itemId=4b89b2a2-e00e-47d0-9485-050bd3a31a02&title=IDC+WHITE+PAPER+-+Microsoft+SQL+Server+2012%3a+Potential+Game+Changer...

Read More

Did You Know Did You Know

SQL Server: Microsoft earns Leader ranking in two Gartner 2012 Magic Quadrants

2/21/2012 4:29:17 AM by Did You Know Did You Know  -  Comments: 0  -  Views: [3602]

Microsoft earns Leader ranking in two Gartner 2012 Magic Quadrants Hi Friends, Microsoft has earned the Leader ranking in two Gartner 2012 Magic Quadrants, they are: • Business Intelligence Platforms • Data Warehouse Database Management Systems For further information, refer to these Links: Magic Quadrant for Business Intelligence Platforms (Gartner Research, February 6, 2012) Gartner has positioned Microsoft in the Leaders Quadrant in the 2012 Magic Quadrant for Business Intelligence ...

Read More

Did You Know Did You Know

SQL Server: Execute Package Task - ExecuteOutOfProcess

2/21/2012 5:16:27 AM by Did You Know Did You Know  -  Comments: 0  -  Views: [3655]

Many times we use “Execute Package Task” to execute a child package from a parent/wrapper package and we use “Parent Package Variables” as means of configuration for child package. Do you know that we have to keep “ExecuteOutOfProcess” to “False” in order to use parent variables in child package? If we set “ExecuteOutOfProcess” to “True” than parent variables are not visible in child package and configured child’s vari...

Read More

Did You Know Did You Know

SQL Server: The file growth setting is incorrect after you restore a database from SQL Server 2000 in SQL Server 2005

2/21/2012 5:17:50 AM by Did You Know Did You Know  -  Comments: 0  -  Views: [1798]

This is documented in Microsoft KB article 958004. When you restore a database from 2000 version of SQL Server to ver 2005 (specific builds being SQL Server 2005 build 2191 or later builds of SQL Server 2005 Service Pack 1, SQL Server 2005 Service Pack 2 or later builds), you find inconsistent file growth settings. Read more on this here: http://support.microsoft.com/kb/958004 @SQLServerGeeks

Read More

Did You Know Did You Know

SQL Server 2008 R2 & SQL Server 2008 side by side

10/21/2011 11:44:17 AM by Did You Know Did You Know  -  Comments: 0  -  Views: [3365]

Many of you know that SQL Server 2008 R2 can be installed side-by-side with SQL Server 2008. SQL Server 2008 R2 is a minor release. Since both the versions share the same major version, R2 installation will automatically upgrade the shared components between the two versions. In case you are planning to install R2 along with 2008, you should check out this link: http://msdn.microsoft.com/en-us/library/ee210714.aspx

Read More

Did You Know Did You Know

SQL Server Denali CTP3 Demo VHD

10/24/2011 6:41:17 AM by Did You Know Did You Know  -  Comments: 0  -  Views: [2354]

Want to try out Denali (SQL Server 2012) without installing it? A HyperV image of SQL Server Denali CTP3 in action, including fully configured services and integration with SharePoint 2010 and Office 2010 is available at http://www.microsoft.com/download/en/details.aspx?id=27740 The following software is configured on the virtual machine: SQL Server "Denali" CTP3 SharePoint 2010 Office 2010 Enjoy ! @SQLServerGeeks http://www.FaceBook.com/SQLServerGeeks

Read More

Did You Know Did You Know

SQL Server service can listen on multiple ports

10/7/2011 5:00:45 AM by Did You Know Did You Know  -  Comments: 0  -  Views: [2653]

The default instance, by default, listens on port 1433. SQL Server can listen on multiple ports on the same IP address. For this you can list the ports separated by commas. For example: 1433,1533,1633. (Note: There is a limitation of 2047 characters.) You can do this from Configuration Manager. To configure SQL Server to listen on multiple ports, the Listen All parameter must also be set to No, on the Protocols Tab of the TCP/IP Properties dialog box.

Read More

Did You Know Did You Know

DATABASEPROPERTYEX function in SQL Server

10/1/2011 4:22:37 AM by Did You Know Did You Know  -  Comments: 0  -  Views: [2599]

Did you know that apart from system catalogs, you can also use System Functions like DATABASEPROPERTYEX to extract metadata about a database. For example to find out whether AutoShrink is ON or OFF, you can use the function this way: SELECT DATABASEPROPERTYEX ('AdventureWorks','IsAutoShrink') The function takes in the name of the database and the property name: another example; to find out the status of the database, you can use the function this way: SELECT DATABASEPROPERTYEX ('AdventureWorks',...

Read More

Did You Know Did You Know

INFORMATION SCHEMA VIEWS in SQL Server

9/30/2011 5:39:45 PM by Did You Know Did You Know  -  Comments: 1  -  Views: [1707]

Did you know that INFORMATION SCHEMA VIEWS are one of many ways in which you can view SQL Server metadata. INFORMATION SCHEMA VIEWS are included in SQL Server to comply with ISO & ANSI standards. All views are under INFORMATION_SCHEMA schema. For example, if you want to see all the tables in your database, you run the following script: select * from INFORMATION_SCHEMA.TABLES Other ways of browsing meta data are catalog views, compatibility views, etc. Regards Did-You-Know from SQLServerGeeks...

Read More

Did You Know Did You Know

Data Mining was first shipped with SQL Server 2000

8/8/2011 9:50:44 AM by Did You Know Did You Know  -  Comments: 0  -  Views: [2018]

Did you know that Data Mining platform on SQL Server was first released with SQL Server 2000. There were only 2 algorithms at that time. Since the release of SQL Server 2005, there are 9 built-in algorithms now: Microsoft Association Algorithm Microsoft Clustering Algorithm Microsoft Decision Trees Algorithm Microsoft Linear Regression Algorithm Microsoft Logistic Regression Algorithm Microsoft Naive Bayes Algorithm Microsoft Neural Network Algorithm Microsoft Sequence Clustering Algorithm Micro...

Read More

Page 1 of 1 (11 items)

Email Subscriptions

   Get the Most Recent Blogs in your inbox