News

Code Focused. Deleting all Data from a SQL Server Database (Part 2) 04/27/2011; In part one of this article, I described a scenario in which I needed to empty all the data from a copy of a large ...
I have need to re-create a database once in a while, only complete without data. Script generation usually gets me dependency errors, is there any better way to do this?Thanks!
In most implementations of SQL, you pull information from two tables by using a SELECT command in this form: SELECT table1.column1, table1.column2, table2.column1, table2.column2 ...
Learn how to master the SELECT statement to form truly useful data queries. This article explains functions, clauses, and keywords that will make your life a lot easier.
In doing this wrapping and replacing of columns and tables, many pages worth of SQL can be strung out to create an extraordinarily intricate single state­ment whenever desired. However, this practice ...
Creating a copy of the database and then deleting all the data gives me a much higher confidence that I have an empty database structurally identical to the original. As promised in part one, I ...