April 22, 2012

sp_filestream_recalculate_container_size (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_filestream_recalculate_container_size(nvarchar @dbname
, nvarchar @filename)

MetaData:

   
create procedure sys.sp_filestream_recalculate_container_size
(
@dbname sysname, -- name of the database to process
@filename sysname = NULL -- FILESTREAM file container name to recalculate
)
as
begin
set nocount on

declare @returncode int

EXEC @returncode = sys.sp_filestream_recalculate_container_size_internal @dbname, @filename

return @returncode
end

No comments:

Post a Comment

Total Pageviews