Every Instance of Microsoft SQL Server has Built in Administrator Account. It is used during some setup to join some machine in the domain.
Built in Administrator account in Microsoft SQL Server should be disabled immediately thereafter.
For any disaster recovery, the built in administrator account will be automatically enabled. It should not be used for normal operations.
Programming Tutorials on XHTML, CSS, JavaScript, JQuery, JSON, Python, Django, Amazon Web Services, ASP.NET, Web Forms, and SQL
Friday, July 13, 2012
Microsoft SQL Server Public Role
In Microsoft SQL Server, every database has a public role which holds all the default permissions for the users in database.
Public role in Microsoft SQL Server cannot be dropped and we cannot assign roles or groups to it.
Minimum permissions should be granted to public role, due to security reasons.
Public role in Microsoft SQL Server cannot be dropped and we cannot assign roles or groups to it.
Minimum permissions should be granted to public role, due to security reasons.
Thursday, July 12, 2012
Scalability of Databases in Microsoft SQL Server
Scalability of Database System can be enhanced efficiently by Microsoft SQL Server.
Microsoft SQL Server 2000 automatically adjusts the granularity of locking for each table used by a query.
Parallel Execution Plans is in placed automatically. This split the processing of a SQL statement into pieces that can be run on a different CPU, which causes the complete result set to build faster.
Microsoft SQL Server 2000 automatically adjusts the granularity of locking for each table used by a query.
Parallel Execution Plans is in placed automatically. This split the processing of a SQL statement into pieces that can be run on a different CPU, which causes the complete result set to build faster.
Why Use English Query in Microsoft SQL Server
English Query in Microsoft SQL Server used to build applications that can accept query in questions form e.g question is in English language.
While processing English Query, the application passes the questions string to the English query engine. This English Query engine returns a SQL statement or a Multi-Dimensional Expression (MDX) query to the application, Which will return the answer to the user’s question.
While processing English Query, the application passes the questions string to the English query engine. This English Query engine returns a SQL statement or a Multi-Dimensional Expression (MDX) query to the application, Which will return the answer to the user’s question.
Wednesday, July 11, 2012
Microsoft SQL Server Execute SQL Statements in Different Ways
There are many different ways Microsoft SQL Server uses to execute SQL statements. These different way are following :
- Single SQL statement processing
- Batch processing
- Stored procedure and trigger execution
- Execution plan caching and reuse
- Parallel query processing
Subscribe to:
Posts (Atom)