Updates the Employee table with the values specified in the input parameters for the given EmployeeID.
Creation Date | 27/10/2017 14:33 |
Encrypted | |
Ansi Nulls |
Parameter | Direction | Description | Data Type | Size |
---|---|---|---|---|
@BusinessEntityID | In | Input parameter for the stored procedure uspUpdateEmployeePersonalInfo. Enter a valid BusinessEntityID from the HumanResources.Employee table. | Integer | 4 |
@NationalIDNumber | In | Input parameter for the stored procedure uspUpdateEmployeeHireInfo. Enter a national ID for the employee. | VarWChar | 15 |
@BirthDate | In | Input parameter for the stored procedure uspUpdateEmployeeHireInfo. Enter a birth date for the employee. | DBTimeStamp | 4 |
@MaritalStatus | In | Input parameter for the stored procedure uspUpdateEmployeeHireInfo. Enter a marital status for the employee. | VarWChar | 1 |
@Gender | In | Input parameter for the stored procedure uspUpdateEmployeeHireInfo. Enter a gender for the employee. | VarWChar | 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. | 3 | |
HumanResources.Employee | Table | Employee information such as salary, department, and title. | 1 | |
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. | 2 | |
dbo.Flag | User Defined Data Type | 2 | ||
dbo.Name | User Defined Data Type | 3 | ||
dbo.NameStyle | User Defined Data Type | 3 | ||
Person.Person | Table | Human beings involved with AdventureWorks: employees, customer contacts, and vendor contacts. | 2 | |
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. | 1 | |
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 |
|