There are many ways to track changes made to the table in SQL Server one of the method is to use inserted and deleted tables and get the result set and use in code appropriately. Step 1: Creating Tabl… more →
Exploring SQL SERVER With Dilip Kumar Jenawrote 7 months ago: This post is about how to repair simple media database corruption, and media database compression … more →
wrote 10 months ago: Do your SQL Servers need a check-up? Call the SQL doctor! SQL doctor analyzes your SQL Servers to … more →
wrote 1 year ago: “The path for the index location is not valid” I recently faced this issue with the Shar … more →
wrote 1 year ago: These are the most common yet tricky questions that you can expect in a .NET/SQL interview. 1) … more →
wrote 1 year ago: Answer: No. Though SQL Azure does need that a table has a clustered index. So to this end, Let … more →
wrote 1 year ago: Post @ http://singztechmusings.in/full-table-scan-sequential-scan-in-mysql-understanding-when-this- … more →
wrote 1 year ago: Question: What is the best method to use for copying an “On Premise SQL DB” to SQL Azure … more →
wrote 1 year ago: For faster and better search functionalities EMC has developed a Full Text Index Server which is ins … more →
wrote 1 year ago: There are many ways to track changes made to the table in SQL Server one of the method is to use ins … more →
wrote 2 years ago: This is something so many asked me because I also faced the same situation before, so having a … more →
wrote 2 years ago: A join selects columns from 2 or more tables. A union selects rows. Reference : Dilip Kumar Jena ( h … more →
wrote 2 years ago: Non-clustered index. Important thing to note: By default a clustered index gets created on the prima … more →
wrote 2 years ago: DBCC CHECKDB, DBCC CHECKTABLE, DBCC CHECKCATALOG, DBCC CHECKALLOC, DBCC SHOWCONTIG, DBCC SHRINKDATAB … more →
wrote 2 years ago: @@Rowcount is used to display the number of rows affected by last SQL statement. @@Error displays th … more →
wrote 2 years ago: There are many ways where in we can rename a column but what I prefer is using predefined stored P … more →
wrote 2 years ago: Group by controls the presentation of the rows, order by controls the presentation of the columns f … more →
wrote 2 years ago: A LEFT JOIN will take ALL values from the first declared table and matching values from the second d … more →
wrote 2 years ago: A view is a virtual tables that is made up of one or more tables. It can be used for security purp … more →
wrote 2 years ago: sp_executesql and Execute statement are used to execute a sql stored Procedure. The execute statemen … more →