All Tags »
SQL Server (RSS)
Sorry, but there are no more tags available to filter with.
-
Today, i needed to reset the Identity value for one column in the SQL Server database.
I used the following commando to view the current identity value:
DBCC CHECKIDENT ('TableName1', NORESEED)
and then, it returned the following message:
Checking identity information: current identity value '53', current column value ...
-
Introdução
O Sql Server possui um mecanismo de pesquisa de texto com base na indexação de colunas de tabelas numa base de dados chamado Full-Text Search. Este mecanismo de pesquisa utiliza um catálogo de pesquisa, criado no file system, e tem uma série de vantagens relativamente às pesquisas que utilizam o predicado LIKE, entre as quais se ...