CREATE PROCEDURE [dbo].[Transaction_ReadById] @Id UNIQUEIDENTIFIER AS BEGIN SET NOCOUNT ON SELECT * FROM [dbo].[TransactionView] WHERE [Id] = @Id END