Hi,
I have just created a little MSSQL procedure with counts the characters on your server and display the value.
Code:
Code:
/*
TCharCount procedure by GlossyPvP / Holy
*/
ALTER PROCEDURE [dbo].[TCharcount]
AS
BEGIN
Declare @Cou varchar(10)
Declare @Num nvarchar(100)
SET @COU = (SELECT COUNT(*)AS TCharCount FROM TChartable);
SET @Num = 'Number of characters: ';
Print @Num + @Cou
END
Instructions:
Go to
TGAME_GSP => dbo = > Functions.
Then right click, New Function . Then give a name, and select 'Procedure'.
Peace!