Skip to main content

Posts

Showing posts from September, 2006

History of SQL Server ...

I suggest all SQL developers to have a look at http://SQLKnowledge.com . The site is rich with information on SQL Server and its really informative. I read the history of SQL Server from that site and here is the summary of it: 1. 1993 - SQL Server 4.21 for Windows NT 2. 1995 - SQL Server 6.0, codenamed SQL95 3. 1996 - SQL Server 6.5, codenamed Hydra 4. 1999 - SQL Server 7.0, codenamed Sphinx 5. 1999 - SQL Server 7.0 OLAP, codenamed Plato 6. 2000 - SQL Server 2000 32-bit, codenamed Shiloh 7. 2003 - SQL Server 2000 64-bit, codenamed Liberty 8. 2005 - SQL Server 2005, codenamed Yukon 9. Next release - codenamed Katmai (not confirmed ) Technorati tags: SQL , Databases , SQL Server , SQL Server 2005

About 'RESOURCE' Database in SQL Server 2005

1. 'Resource' Database is a new DB introduced in SQL Server 2005. Its shortly referred as 'RDB' . 2. Its an 'Hidden' and 'Read-only' DB. 3. You could find its 'mssqlsystemresource.mdf' file here -- C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data (If you have SQL Server 2005 installed in your box) 4. This is the database where all 'System objects' which belongs to ' Sys. ' Schema physically reside. i.e., has definition of all System objects. These 'System objects' (like, sp_help) logically appear in every other DB in the server. Schema -- It is similar to namespaces in .NET, it helps in logical grouping. Sys -- Is newly created schema in SQL Server 2005. All System Objects resides here. 5. If you run this below script from any of your SQL Server 2005 database it would return 1741 rows. Those are 'definitions' of ALL the system objects which actually reside in RDB . Select [name], object_definition(ob

Creating our own 'Code Snippets' in Visual Studio .NET 2005

Code Snippets are useful in situations where you frequently implement the same code blocks in multiple places within your project. One could find all existing snippets for C# in this folder: C:\Program Files\Microsoft Visual Studio 8\VC#\Snippets\1033\Visual C# If you want to create your own snippet which is not existing in the above path then do the following: 1. In Visual Studio.NET, Create a New Xml File. 2. Place the following XML code into that file: The root element for an code snippet is <CodeSnippet>. This would have two child elements <Header> and <Snippet> <?xml version= "1.0" encoding="utf-8" ?> <CodeSnippets xmlns = "http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> <CodeSnippet Format ="1.0.0"> <Header > <Title> Title of the Code Snippet would come here </Title> <Author> Vadivel Mohanakrishnan </Author> <Description> Describe it in detail here </Des

SQL Server Configuration Manager ...

Though there are lots of articles on "SQL Server Configuration Manager" I thought I would put down few bulleted points on this topic for easy reference :) 1. In order to access SQL Server Configuration Manager do this: Start >> Programs >> Microsoft SQL Server 2005 >> Configuration Tools >> SQL Server Configuration Manager 2. Services pertaining to SQL Server would be available inside this tool under the heading "SQL Server 2005 Services". This is only for easy access, as these "Services" are still available (as it was all this days!) within Control Panel >> Administrative Tools >> Services . 3. This tool has Server and Client Network configuration services. Net libraries facilitate IPC (Interprocess Communication) exchange of information between Client and Server. In SQL 2005 we have four ways (Protocol names) by which IPC can take place. They are "Shared Memory", TCP/IP", "Named Pipes" and &quo

Bill Gates tops again in Forbes 400 richest Americans ...

Forbes updated their list of the 400 richest Americans , and Bill G has maintained his TOP spot for the 13th or 14th continuous year. Few other notables rankings are listed below for quick reference :) #1 - Bill Gates - Microsoft - 53.0 billions #4 - Larry Ellison - Oracle - 19.5 billions #5 - Paul Allen - Microsoft - 16.0 billions #7 - Michael Dell - Dell Computer - 15.5 billions #12 - Sergey Brin - Google - 14.1 billions #13 - Larry Page - Google - 14.0 billions #15 - Steve Ballmer - Microsoft - 13.6 billions #24 - Carl Icahn - Financier - 9.7 billions #32 - Rupert Murdoch - News Corp - 7.7 billions #32 - Pierre Omidyar - eBay - 7.7 billions #38 - Sumner Redstone - Viacom - 7.5 billions #45 - Eric Schmidt - Google - 5.2 billions #49 - Steve Jobs - Apple/Pixar/Disney - 4.9 billions Technorati tags: Bill Gates , Microsoft , Forbes

Free eBook on Visual Studio .NET Tips and Tricks

If you are a .NET developer then you should have a look at this eBOOK which talks about VS.NET tips and tricks. Visual Studio .NET Tips and Tricks explains how to use VS.NET efficiently. Organized into short and easy-to-grasp sections, and containing tips and tricks on everything from editing and compiling to debugging and navigating within the VS.NET IDE, this book is a must-read for all .NET developers, regardless of expertise and whether they program in C#, VB.NET, or any other .NET language. This book covers the Visual Studio .NET 2002, 2003, and 2005 Beta 1 releases. I got registered myself with the site and download the PDF for free. Its really worth our time. Technorati tags: Visual Studio .NET , Microsoft , InfoQ , Tips and Tricks

Suckerfish Dropdowns ...

The original Suckerfish Dropdowns are pretty popular for implementing lightweight, accessible CSS-based dropdown menus that accommodated Internet Explorer by mimicking the :hover pseudo-class. Well now they're back and they're more accessible , even lighter in weight (just 12 lines of JavaScript), have greater compatibility (they now work in Opera and Safari without a hack in sight) and can have multiple-levels. It can be adapted to build menus dynamically. Technorati tags: Suckerfish , CSS , Javascript , Dynamic Menus