Difference between revisions of "HumanResources.uspUpdateEmployeePersonalInfo (procedure)"
Line 3: | Line 3: | ||
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
|- | |- | ||
− | | ''' | + | | '''Procedure |
| HumanResources.uspUpdateEmployeePersonalInfo | | HumanResources.uspUpdateEmployeePersonalInfo | ||
|- valign="top" | |- valign="top" | ||
Line 11: | Line 11: | ||
|} | |} | ||
+ | |||
+ | === Source === | ||
<pre> | <pre> | ||
CREATE PROCEDURE [HumanResources].[uspUpdateEmployeePersonalInfo] | CREATE PROCEDURE [HumanResources].[uspUpdateEmployeePersonalInfo] | ||
Line 37: | Line 39: | ||
</pre> | </pre> | ||
− | + | === References === | |
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
|- style="background:silver" | |- style="background:silver" | ||
Line 53: | Line 55: | ||
| Procedure | | Procedure | ||
| [[dbo.uspLogError_(procedure)|dbo.uspLogError]] | | [[dbo.uspLogError_(procedure)|dbo.uspLogError]] | ||
+ | |||
+ | |- | ||
+ | | Schema | ||
+ | | Schema | ||
+ | | [[HumanResources_(schema)|HumanResources]] | ||
|} | |} | ||
− | |||
Revision as of 23:07, 2 February 2010
wikibot
Procedure | HumanResources.uspUpdateEmployeePersonalInfo |
Description | Updates the Employee table with the values specified in the input parameters for the given EmployeeID. |
Source
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;
References
Dependency Type | Object Type | Referenced Object |
Update | Table | HumanResources.Employee |
Execute | Procedure | dbo.uspLogError |
Schema | Schema | HumanResources |
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;
Dependency Type | Object Type | Referenced Object |
Update | Table | HumanResources.Employee |
Execute | Procedure | dbo.uspLogError |
Schema | Schema | HumanResources |