Updates the Employee table and inserts a new row in the EmployeePayHistory table with the values specified in the input parameters.
Creation Date | 27/10/2017 14:33 |
Encrypted | ![]() |
Ansi Nulls | ![]() |
Parameter | Direction | Description | Data Type | Size |
---|---|---|---|---|
@BusinessEntityID | In | Input parameter for the stored procedure uspUpdateEmployeeHireInfo. Enter a valid BusinessEntityID from the Employee table. | Integer | 4 |
@JobTitle | In | Input parameter for the stored procedure uspUpdateEmployeeHireInfo. Enter a title for the employee. | VarWChar | 50 |
@HireDate | In | Input parameter for the stored procedure uspUpdateEmployeeHireInfo. Enter a hire date for the employee. | DBTimeStamp | 4 |
@RateChangeDate | In | Input parameter for the stored procedure uspUpdateEmployeeHireInfo. Enter the date the rate changed for the employee. | DBTimeStamp | 4 |
@Rate | In | Input parameter for the stored procedure uspUpdateEmployeeHireInfo. Enter the new rate for the employee. | Currency | 8 |
@PayFrequency | In | Input parameter for the stored procedure uspUpdateEmployeeHireInfo. Enter the pay frequency for the employee. | UnsignedTinyInt | 1 |
@CurrentFlag | In | Input parameter for the stored procedure uspUpdateEmployeeHireInfo. Enter the current flag for the employee. | dbo.Flag | 1 |
@RETURN_VALUE | Return Value | Integer | 4 |
Database Object | Object Type | Description | Dep Level | |
---|---|---|---|---|
![]() | Person.BusinessEntity | Table | Source of the ID that connects vendors, customers, and employees with address and contact information. | 2 |
![]() | HumanResources.Employee | Table | Employee information such as salary, department, and title. | 3 |
![]() | HumanResources.EmployeePayHistory | Table | Employee pay history. | 2 |
![]() | dbo.ErrorLog | Table | Audit table tracking errors in the the AdventureWorks database that are caught by the CATCH block of a TRY...CATCH construct. Data is inserted by stored procedure dbo.uspLogError when it is executed from inside the CATCH block of a TRY...CATCH construct. | 3 |
![]() | dbo.Flag | User Defined Data Type | 4 | |
![]() | dbo.Name | User Defined Data Type | 2 | |
![]() | dbo.NameStyle | User Defined Data Type | 5 | |
![]() | Person.Person | Table | Human beings involved with AdventureWorks: employees, customer contacts, and vendor contacts. | 4 |
![]() | dbo.uspLogError | Stored Procedure | Logs error information in the ErrorLog table about the error that caused execution to jump to the CATCH block of a TRY...CATCH construct. Should be executed from within the scope of a CATCH block otherwise it will return without inserting error information. | 2 |
![]() | dbo.uspPrintError | Stored Procedure | Prints error information about the error that caused execution to jump to the CATCH block of a TRY...CATCH construct. Should be executed from within the scope of a CATCH block otherwise it will return without printing any error information. | 2 |
|