Answer the question
In order to leave comments, you need to log in
How to write MSSQL stored procedure with Russian comment?
How it is possible to implement record in service fields of stored procedure, for example in EXTERNAL_NAME, the Russian text during CREATE/ALTER of stored procedure?
Let's say there is a stored procedure on MSSQL
ALTER PROCEDURE [dbo].[ReportGetUsersByClubId]
(@clubId BIGINT)
AS
BEGIN
SET NOCOUNT ON;
SELECT * from Users Where club_id = @clubId
END
How to add a comment to some service field. For example : User list retrieval report
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question