April 22, 2012

sp_fulltext_semantic_register_language_statistics_db (Transact-SQL MetaData) Definition

Please note: that the following source code is provided and copyrighted by Microsoft and is for educational purpose only.
The meta data is from an SQL 2012 Server.

I have posted alot more, find the whole list here.

Goto Definition or MetaData

Definition:

sys.sp_fulltext_semantic_register_language_statistics_db(nvarchar @dbname)

MetaData:

 create proc sys.sp_fulltext_semantic_register_language_statistics_db  
@dbname sysname
as
begin
set nocount on
declare @returncode int
EXEC @returncode = sys.sp_fulltext_semantic_register_language_statistics_db_internal @dbname
return @returncode
end

No comments:

Post a Comment

Total Pageviews