Difference between revisions of "HumanResources.uspUpdateEmployeeLogin (procedure)"
| Line 2: | Line 2: | ||
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
| − | |- | + | |- valign="top" |
| '''Procedure | | '''Procedure | ||
| HumanResources.uspUpdateEmployeeLogin | | HumanResources.uspUpdateEmployeeLogin | ||
| Line 8: | Line 8: | ||
| '''Description | | '''Description | ||
| Updates the Employee table with the values specified in the input parameters for the given EmployeeID. | | Updates the Employee table with the values specified in the input parameters for the given EmployeeID. | ||
| − | |||
|} | |} | ||
| − | |||
=== Source === | === Source === | ||
| Line 48: | Line 46: | ||
| '''Referenced Object | | '''Referenced Object | ||
| − | |- | + | |- valign="top" |
| Update | | Update | ||
| Table | | Table | ||
| − | | [[HumanResources.Employee_(table)|HumanResources.Employee]] | + | | [[HumanResources.Employee_(_(table))|HumanResources.Employee]] |
| − | |- | + | |- valign="top" |
| Execute | | Execute | ||
| Procedure | | Procedure | ||
| − | | [[dbo.uspLogError_(procedure)|dbo.uspLogError]] | + | | [[dbo.uspLogError_(_(procedure))|dbo.uspLogError]] |
| − | |- | + | |- valign="top" |
| Schema | | Schema | ||
| Schema | | Schema | ||
| − | | [[HumanResources_(schema)|HumanResources]] | + | | [[HumanResources_(_(schema))|HumanResources]] |
|} | |} | ||
Revision as of 23:00, 23 June 2010
wikibot
| Procedure | HumanResources.uspUpdateEmployeeLogin |
| Description | Updates the Employee table with the values specified in the input parameters for the given EmployeeID. |
Source
CREATE PROCEDURE [HumanResources].[uspUpdateEmployeeLogin]
@EmployeeID [int],
@ManagerID [int],
@LoginID [nvarchar](256),
@Title [nvarchar](50),
@HireDate [datetime],
@CurrentFlag [dbo].[Flag]
WITH EXECUTE AS CALLER
AS
BEGIN
SET NOCOUNT ON;
BEGIN TRY
UPDATE [HumanResources].[Employee]
SET [ManagerID] = @ManagerID
,[LoginID] = @LoginID
,[Title] = @Title
,[HireDate] = @HireDate
,[CurrentFlag] = @CurrentFlag
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.uspUpdateEmployeeLogin |
| Description | Updates the Employee table with the values specified in the input parameters for the given EmployeeID. |
CREATE PROCEDURE [HumanResources].[uspUpdateEmployeeLogin]
@EmployeeID [int],
@ManagerID [int],
@LoginID [nvarchar](256),
@Title [nvarchar](50),
@HireDate [datetime],
@CurrentFlag [dbo].[Flag]
WITH EXECUTE AS CALLER
AS
BEGIN
SET NOCOUNT ON;
BEGIN TRY
UPDATE [HumanResources].[Employee]
SET [ManagerID] = @ManagerID
,[LoginID] = @LoginID
,[Title] = @Title
,[HireDate] = @HireDate
,[CurrentFlag] = @CurrentFlag
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 |