Simple mortgage calculator

5 07 2007

Here’s a link to an online mortgage calculator.  Hope this helps…



Resetting Primary Key counter in SQL Server

2 07 2007

To reseed/reset the IDENTITY column of an SQL Server table, run the following in Query Analyzer or SQL Server Management Studio:

DBCC CHECKIDENT (Table_Name, RESEED, 1)

Peace!