Difference between revisions of "HumanResources.uspUpdateEmployeePersonalInfo (procedure)"
(New page: == wikibot == {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" |- | '''procedure | HumanResources.uspUpdateEmployeePersonalInfo |- |} <pre> CREATE PROCEDURE...) |
|||
Line 33: | Line 33: | ||
END; | END; | ||
</pre> | </pre> | ||
+ | |||
+ | == automatically generated == | ||
+ | |||
+ | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
+ | |- | ||
+ | | '''procedure | ||
+ | | HumanResources.uspUpdateEmployeePersonalInfo | ||
+ | |- | ||
+ | |||
+ | | '''Description | ||
+ | | Updates the Employee table with the values specified in the input parameters for the given EmployeeID. | ||
+ | |- | ||
+ | |||
+ | |} | ||
+ | |||
+ | <pre> | ||
+ | |||
+ | CREATE PROCEDURE [HumanResources].[uspUpdateEmployeePersonalInfo] | ||
+ | @EmployeeID [int], | ||
+ | @NationalIDNumber [nvarchar](15), | ||
+ | @BirthDate [datetime], | ||
+ | @MaritalStatus [nchar](1), | ||
+ | @Gender [nchar](1) | ||
+ | WITH EXECUTE AS CALLER | ||
+ | AS | ||
+ | BEGIN | ||
+ | SET NOCOUNT ON; | ||
+ | |||
+ | BEGIN TRY | ||
+ | UPDATE [HumanResources].[Employee] | ||
+ | SET [NationalIDNumber] = @NationalIDNumber | ||
+ | ,[BirthDate] = @BirthDate | ||
+ | ,[MaritalStatus] = @MaritalStatus | ||
+ | ,[Gender] = @Gender | ||
+ | WHERE [EmployeeID] = @EmployeeID; | ||
+ | END TRY | ||
+ | BEGIN CATCH | ||
+ | EXECUTE [dbo].[uspLogError]; | ||
+ | END CATCH; | ||
+ | END; | ||
+ | </pre> | ||
+ | |||
+ | |||
+ | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
+ | |- style="background:silver" | ||
+ | | '''Referenced Object | ||
+ | | '''Object Type | ||
+ | | '''Dependency Type | ||
+ | |||
+ | |- | ||
+ | | [[HumanResources.Employee_(table)|HumanResources.Employee]] | ||
+ | | Table | ||
+ | | Update | ||
+ | |- | ||
+ | | [[dbo.uspLogError_(procedure)|dbo.uspLogError]] | ||
+ | | Procedure | ||
+ | | Execute | ||
+ | |} |
Revision as of 00:00, 27 November 2009
wikibot
procedure | HumanResources.uspUpdateEmployeePersonalInfo |
CREATE PROCEDURE [HumanResources].[uspUpdateEmployeePersonalInfo] @EmployeeID [int], @NationalIDNumber [nvarchar](15), @BirthDate [datetime], @MaritalStatus [nchar](1), @Gender [nchar](1) WITH EXECUTE AS CALLER AS BEGIN SET NOCOUNT ON; BEGIN TRY UPDATE [HumanResources].[Employee] SET [NationalIDNumber] = @NationalIDNumber ,[BirthDate] = @BirthDate ,[MaritalStatus] = @MaritalStatus ,[Gender] = @Gender WHERE [EmployeeID] = @EmployeeID; END TRY BEGIN CATCH EXECUTE [dbo].[uspLogError]; END CATCH; END;
automatically generated
procedure | HumanResources.uspUpdateEmployeePersonalInfo |
Description | Updates the Employee table with the values specified in the input parameters for the given EmployeeID. |
CREATE PROCEDURE [HumanResources].[uspUpdateEmployeePersonalInfo] @EmployeeID [int], @NationalIDNumber [nvarchar](15), @BirthDate [datetime], @MaritalStatus [nchar](1), @Gender [nchar](1) WITH EXECUTE AS CALLER AS BEGIN SET NOCOUNT ON; BEGIN TRY UPDATE [HumanResources].[Employee] SET [NationalIDNumber] = @NationalIDNumber ,[BirthDate] = @BirthDate ,[MaritalStatus] = @MaritalStatus ,[Gender] = @Gender WHERE [EmployeeID] = @EmployeeID; END TRY BEGIN CATCH EXECUTE [dbo].[uspLogError]; END CATCH; END;
Referenced Object | Object Type | Dependency Type |
HumanResources.Employee | Table | Update |
dbo.uspLogError | Procedure | Execute |