Go to content Go to navigation Go to search

How to start SQL server 2000 in Single User Mode

November 26th, 2008 by Gabriel

sql_logo How to start SQL server 2000 in Single User Mode

Single User mode allows only one single user to connect to the database.
Even if SQL server is in Single User Mode, you can connect the SQL Query Analyzer with the SA user.

Single user mode specifies that only one user at a time can access the database. Basically it is used for maintenance purposes.

If any other users are connected to the database and you  switch the database to single user mode then their connections to the database will be closed without any warning message.

Following are the steps to start SQL server in Single User mode -

On your server :

Start >> Run >> type in CMD and hit Ok >> it will open up Command Prompt >> here execute the following command

net stop MSSqlServer

>> it will stop the SQL service >> now to start SQL in Single User mode execute following command

sqlservr -m

####

How to Set a single database into Single User Mode :-

You can set a single database into single user mode using an alternative procedure but this process cannot be used to set the MASTER database into single user mode.

# Connect to SQL Server using SQL Query Analyzer with SA user

# Execute the following command -

alter database database-name set SINGLE_USER

where “database-name” is the actual name of the database.

This cannot be used to place the databases MASTER, MSDB or TEMPDB in single user mode.

# To set the database back into normal multi-user mode use, execute the following command -

alter database db-name set MULTI_USER

Microsoft SharePoint

October 14th, 2008 by Gabriel

Microsoft SharePoint is a browser based document-management platform.
It can be used by the web sites that access shared workspaces and documents, applications like wikis, blogs etc.
SharePoint interface is a web interface. Share point sites are mainly .Net sites with MS SQL as back end database.
It provide content management features, implement business processes, and supply access to information that is essential to organizational goals and processes.Support specific content publishing, content management, records management, or business intelligence needs.It provide centralized repository for shared documents, as well as browser-based management and administration of them.
Some of its good features includes workspaces and dashboards, navigation tools, lists, alerts (including e-mail alerts), shared calendar, contact lists and discussion boards etc.

The SharePoint family -

Windows SharePoint Services (WSS)
:-
Windows SharePoint Services 3.0 (WSS) is a free addon in Windows server which offers the infrastructure, supporting HTTP and HTTPS based editing of documents, as well as document organization in document libraries, version control capabilities, wikis, and blogs etc.
WSS 3.0 is built on top of ASP.NET 2.0.

Microsoft Search Server (MSS) :-
Microsoft Search Server (MSS) is a search platform supported by Microsoft. MSS shares its architectural underpinnings with the Windows Search platform for both the querying engine as well as the indexer. MOSS search provides the ability to search metadata attached to documents.Microsoft has made Microsoft Search Server available as Search Server 2008, released on March 2008. A free version, Search Server 2008 Express, is also available.

Microsoft SharePoint Designer (SPD) :-
The “What You See Is What You Get” editor MS SharePoint Designer focus on design of SharePoint sites and end-user workflows for WSS sites. Its nothing but the next-generation Microsoft replacement for Microsoft FrontPage :)
SPD requires that IIS has Frontpage extensions installed on the server.

ASP.NET

September 28th, 2008 by Gabriel

What is ASP.NET?

ASP.NET is a server side scripting that enables scripts to be executed by an Internet server.

  1. ASP.NET is a Microsoft Technology
  2. ASP stands for Active Server Pages
  3. ASP.NET is a program that runs inside IIS
  4. IIS (Internet Information Services) is Microsoft’s Internet server
  5. IIS comes as a free component with Windows Servers
  6. IIS is also a part of Windows 2000 and XP Professional

What is an ASP.NET File?

  1. An ASP.NET file is just the same as an HTML file
  2. An ASP.NET file can contain HTML, XML, and scripts
  3. Scripts in an ASP.NET file are executed on the server
  4. An ASP.NET file has the file extension “.aspx”

How Does ASP.NET Work?

  1. When a browser requests an HTML file, the server returns the file
  2. When a browser requests an ASP.NET file, IIS passes the request to the ASP.NET engine on the server
  3. The ASP.NET engine reads the file, line by line, and executes the scripts in the file
  4. Finally, the ASP.NET file is returned to the browser as plain HTML