mssql etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
mssql etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

13 Mayıs 2015 Çarşamba

PHP SqlQueryBuilder Class for query building

A tiny and smart PHP SQL query class for your both complex or basic query needs. It supports usage of joins and complex where clauses, nested queries and etc.

21 Mayıs 2014 Çarşamba

How to set start value for Auto Increment Column in MSSQL?

Sometimes, You need to set a start value for your auto increment columns. For example, It should start 0 value, or another ... How can you do this?
You can use DBCC (Database Console Command) and Following command will do it for you.


DBCC CHECKIDENT ('s_dimensionType', RESEED, 0)