Difference between revisions of "HumanResources.uspUpdateEmployeeLogin (procedure)"

From dbscript Online Help
Jump to: navigation, search
 
Line 49: Line 49:
 
| Update
 
| Update
 
| Table
 
| Table
| [[HumanResources.Employee_(_(table))|HumanResources.Employee]]
+
| [[HumanResources.Employee_(table)|HumanResources.Employee]]
  
 
|- valign="top"
 
|- valign="top"
 
| Execute
 
| Execute
 
| Procedure
 
| Procedure
| [[dbo.uspLogError_(_(procedure))|dbo.uspLogError]]
+
| [[dbo.uspLogError_(procedure)|dbo.uspLogError]]
  
 
|- valign="top"
 
|- valign="top"
 
| Schema
 
| Schema
 
| Schema
 
| Schema
| [[HumanResources_(_(schema))|HumanResources]]
+
| [[HumanResources_(schema)|HumanResources]]
  
 
|}
 
|}

Latest revision as of 00:16, 24 June 2010

wikibot[edit]

Procedure HumanResources.uspUpdateEmployeeLogin
Description Updates the Employee table with the values specified in the input parameters for the given EmployeeID.

Source[edit]

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[edit]

Dependency Type Object Type Referenced Object
Update Table HumanResources.Employee
Execute Procedure dbo.uspLogError
Schema Schema HumanResources


automatically generated[edit]

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