Sql Server Articles (246) - Page 14

Articles posted by registered members of DotNetFunda.com. You can also post an article and win monthly prizes as well as gain community credit points.

246 records found.
 
PandianS
Database Backup to / Restore from Remote Server - SQL Server 
Last updated on: 27 Oct 2010 09:00:13 AM by PandianS | Views: 93112 | Category: Sql Server |
Votes: 4 | Rating: 4.75 out of 5
Backup and Restore is one of the high availability model. In this article, I would like to perform Backup on Remote server and Performing Restore the backup file(.bak) from Remote Server into local SQL Server.
PandianS
User defined stored procedure should not be Prefixed with "SP_". Why and When ? 
Last updated on: 04 Oct 2010 11:21:26 AM by PandianS | Views: 13206 | Category: Sql Server |
Votes: 1 | Rating: 5 out of 5
According to Microsoft best practice, User defined stored procedures should not be started with 'SP_'. The reasone is...
PandianS
Implementing Full-Text Search on View 
Last updated on: 18 Sep 2010 03:57:38 AM by PandianS | Views: 457245 | Category: Sql Server |
Votes: 2 | Rating: 5 out of 5
Full Text Index is used to perform queries to find-out the character data. These queries can include word or phrase searching. We can create a full-text index on a table or indexed view in the database. Only one full-text index is allowed per table or indexed view.
Neeks
Exclusive access could not be obtained because the database is in use 
Last updated on: 23 Jul 2010 06:19:22 AM by Neeks | Views: 13431 | Category: Sql Server |
Votes: 1 | Rating: 5 out of 5
You might get the error related to "Exclusive access could not be obtained because the database is in use" so, in this article we will gain over this error.
Syedshakeer
CASCADING Referential Integrity in SqlServer 
Last updated on: 13 Jun 2010 09:15:21 PM by Syedshakeer | Views: 14365 | Category: Sql Server |
Votes: 2 | Rating: 4 out of 5
This article will expalins you how to delete and update a Child Table records implicitly when updating or deleting a Parenet Table.
Deeraj
Deleting Duplicate Rows when the table doesn’t have a primary key. 
Last updated on: 02 Jun 2010 05:02:13 PM by Deeraj | Views: 13491 | Category: Sql Server |
Votes: 1 | Rating: 4 out of 5
This article gives a quick way of deleting duplicate records from a given table, that doesn’t have a primary key.
Syedshakeer
Encrypt and Decrypt a Password using EncryptByPassPhrase and DecryptByPassPhrase 
Last updated on: 16 May 2010 08:27:38 PM by Syedshakeer | Views: 157009 | Category: Sql Server |
Votes: 5 | Rating: 4.6 out of 5
This Article explains you how to Encrypt and Decrypt a text
  • Pandians
    Policy Based Management - SQL Server 2008 
    Last updated on: 16 May 2010 06:10:39 AM by Pandians | Views: 17309 | Category: Sql Server |
    Votes: 1 | Rating: 5 out of 5
    Monitoring and Preventing policy violation activities on Database objects, Databases, Instances on SQL Server 2008 using Policy Based Management (PBM)
    Vuyiswamb
    How to Update Remote SQL Server Databases with a Single Click "SQL Remote All Updater" 
    Last updated on: 09 Jun 2010 08:52:17 AM by Vuyiswamb | Views: 11148 | Category: Sql Server |
    Votes: 22 | Rating: 4.91 out of 5
    This article describes how to update Remote SQL Server Databases with a Single Click.
    Pandians
    SQL Server 2008 T-SQL Enhancements 
    Last updated on: 26 Apr 2010 02:00:53 AM by Pandians | Views: 18584 | Category: Sql Server |
    Votes: 13 | Rating: 4.92 out of 5
    SQL Server 2008 introduces some T-SQL enhancements which is used to improve the database performance and maintenance.
    Vuyiswamb
    How to Execute SSIS Packages in C# ASP.NET - Part I 
    Last updated on: 24 Feb 2010 09:30:22 PM by Vuyiswamb | Views: 69667 | Category: Sql Server |
    In this s Article I am going to explain the technology that came with Sql 2005. This is SSIS which stands for Sql Server Integrated Services. Recently I was working on a project for a client with large sum of Data and there was a need to process the data on a certain time frame. There were lot of technologies available at my Disposal, but this kind of Functionality needed to be streamlined and optimised. Of all the Technologies, i have chosen SSIS. In this Article I will demonstrate on how to executing the SSIS Packages in an ASP.NET(C#).
    Questpond
    SQL Query Optimization FAQ Part 1 (With video explanation) 
    Last updated on: 09 Mar 2010 01:59:49 AM by Questpond | Views: 10525 | Category: Sql Server |
    In this article we will first try to understand what is a SQL plan, how is it created and then we will move towards understanding how to read the SQL plan. As we read the SQL plan we will try to understand different operators like table scan, index seek scan, clustered scan, RID lookup etc. We will also look in to the best practices associated with clustered and non-clustered indexes and how they function internally. We will practically see how indexed views increase performance and in what scenarios we should use the same.
    Chikul
    IDENTITY columns in SQL Server 
    Last updated on: 23 Dec 2009 09:07:12 AM by Chikul | Views: 20830 | Category: Sql Server |
    The IDENTITY columns are auto incrementing columns provided by SQL Server. There can only be one IDENTITY column per table. SQL Server will take care of incrementing this column automatically.
    Chikul
    SET VS. SELECT in SQL Server 
    Last updated on: 23 Dec 2009 09:04:01 AM by Chikul | Views: 8969 | Category: Sql Server |
    SET and SELECT both key words are used to Assign Variables in SQL Server. SET and SELECT both specifies the columns to be changed and the new values for the columns. The values in the specified columns are updated with the values specified in the SET and SELECT in all rows that match the WHERE clause search condition. If no WHERE clause is specified, all rows are updated.
    Abhisek
    Join Multiple Tables In SQL 
    Last updated on: 29 Nov 2009 09:21:45 AM by Abhisek | Views: 10409 | Category: Sql Server |
    This article describes about how you can join different tables in SQL. It describes different join operations.