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

From dbscript Online Help
Jump to: navigation, search
Line 35: Line 35:
 
END;
 
END;
 
</pre>
 
</pre>
 
 
== automatically generated ==
 
== automatically generated ==
  
Line 42: Line 41:
 
| '''procedure
 
| '''procedure
 
| HumanResources.uspUpdateEmployeeLogin
 
| HumanResources.uspUpdateEmployeeLogin
|-
+
|- valign="top"
  
 
| '''Description
 
| '''Description
Line 85: Line 84:
 
| '''Object Type
 
| '''Object Type
 
| '''Dependency Type
 
| '''Dependency Type
+
 
 
|-
 
|-
 
| [[HumanResources.Employee_(table)|HumanResources.Employee]]
 
| [[HumanResources.Employee_(table)|HumanResources.Employee]]
Line 94: Line 93:
 
| Procedure
 
| Procedure
 
| Execute
 
| Execute
 +
|-
 +
| [[.HumanResources_(schema)|.HumanResources]]
 +
| Schema
 +
| Schema
 
|}
 
|}

Revision as of 07:26, 30 November 2009

wikibot

procedure HumanResources.uspUpdateEmployeeLogin
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;

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;


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