Uso de sp_helptext nameprocedure en SQLSERVER
Darwing Castellanos
Posted on October 10, 2022
Al momento de editar un procedimiento almacenado y somos nuevos en el tema, nos encontramos con el problema: Que el editor nos tira una ensalada de código que no entendemos, un código similar al siguiente:
USE [SistemaVentas]
GO
/****** Object: StoredProcedure [dbo].[ACTIVE_ROL] Script Date: 10/9/2022 9:57:19 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[ACTIVE_ROL](
@Id int,
@Active bit)
AS
UPDATE Roles
SET Activo = @Active
WHERE id_rol = @Id;
sp_helptext nameprocedure nos ayuda a obtener el codigo limpio del procedimiento almacenado.
sp_helptext ACTIVE_ROL
Al ejecutar el comando sp_helptext ACTIVE_ROL obtenemos un codigo limpio como salida.
El cual podemos modificar sin confundirnos en un procedimiento de alta categoría.
Saludos!
💖 💪 🙅 🚩
Darwing Castellanos
Posted on October 10, 2022
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
aws Mastering AWS Microservices Architecture for High-Traffic Systems: Interview Preparation
November 29, 2024
authorization How to Set Up Authorization in a Bookstore Management System with Go, HTMX, and Permit.io
November 29, 2024