Here you can search through the pages of this Namespace, their attachments and the files uploaded to the system.
Note: the results will only display the items you have permissions to read.
wikibot
Procedure dbo.uspLogError Description 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. Source
-- uspLogError logs error information in the ErrorLog table about the
-- error that caused execution to jump to the CATCH block of a
-- TRY...CATCH construct. This should be executed from within the scope
-- of a CATCH block otherwise it will [...]
wikibot
Procedure dbo.uspPrintError Description 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. Source
-- uspPrintError 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.
CREATE [...]
wikibot
Procedure HumanResources.uspUpdateEmployeePersonalInfo Description Updates the Employee table with the values specified in the input parameters for the given EmployeeID. Source
CREATE PROCEDURE [HumanResources].[uspUpdateEmployeePersonalInfo]
@EmployeeID [int],
@NationalIDNumber [nvarchar](15),
@BirthDate [datetime],
@MaritalStatus [nchar](1),
@Gender [nchar](1)
WITH EXECUTE AS CALLER
AS
BEGIN
SET NOCOUNT ON;
BEGIN TRY
UPDATE [HumanResources].[Employee]
SET [NationalIDNumber] [...]
[...] HumanResources.vEmployeeDepartmentHistory Select View Sales.vSalesPerson Select View Sales.vSalesPersonSalesByFiscalYears Select Procedure dbo.uspGetEmployeeManagers Select Procedure dbo.uspGetManagerEmployees Update Procedure [...]
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 [...]
wikibot
Procedure HumanResources.uspUpdateEmployeeHireInfo Description Updates the Employee table and inserts a new row in the EmployeePayHistory table with the values specified in the input parameters. Source
CREATE PROCEDURE [HumanResources].[uspUpdateEmployeeHireInfo]
@EmployeeID [int],
@Title [nvarchar](50),
@HireDate [datetime],
@RateChangeDate [datetime],
@Rate [money],
@PayFrequency [tinyint],
@CurrentFlag [dbo].[Flag]
WITH EXECUTE AS CALLER
AS
BEGIN
SET NOCOUNT ON;
BEGIN TRY
[...]
wikibot
Procedure dbo.uspGetEmployeeManagers Description Stored procedure using a recursive query to return the direct and indirect managers of the specified [...]
wikibot
Procedure dbo.uspGetBillOfMaterials Description Stored procedure using a recursive query to return a multi-level bill of material for the specified [...]
wikibot
Procedure dbo.uspGetWhereUsedProductID Description Stored procedure using a recursive query to return all components or assemblies that directly or indirectly use the specified [...]
wikibot
Procedure dbo.uspGetManagerEmployees Description Stored procedure using a recursive query to return the direct and indirect employees of the specified [...]
[...] Production.TransactionHistory Trigger iWorkOrder Insert Table Production.TransactionHistory Trigger uWorkOrder Execute Procedure dbo.uspLogError Trigger iWorkOrder Execute Procedure dbo.uspLogError Trigger uWorkOrder Execute [...]
wikibot
Procedure HR.ADD_JOB_HISTORY Source
CREATE OR REPLACE PROCEDURE [...]
[...] iPurchaseOrderDetail Update Table Purchasing.PurchaseOrderHeader Trigger uPurchaseOrderDetail Execute Procedure dbo.uspLogError Trigger iPurchaseOrderDetail Execute Procedure dbo.uspLogError Trigger uPurchaseOrderDetail Execute Procedure [...]
[...] HumanResources.vJobCandidateEducation Schema View HumanResources.vJobCandidateEmployment Schema Procedure HumanResources.uspUpdateEmployeeHireInfo Schema Procedure HumanResources.uspUpdateEmployeeLogin [...]
[...] 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. Columns Column Data Type Nullable Default Description ErrorLogID int not null Primary key for ErrorLog records. ErrorTime datetime not null (getdate()) The date and time at which the error occurred. UserName sysname not null The user who executed the batch in which the error occurred. ErrorNumber int not null The error number of the error that occurred. [...]
[...] Trigger iduSalesOrderDetail Update Table Sales.SalesOrderHeader Trigger iduSalesOrderDetail Execute Procedure dbo.uspLogError Trigger iduSalesOrderDetail Execute Procedure [...]
[...] Trigger uSalesOrderHeader Update Table Sales.SalesTerritory Trigger uSalesOrderHeader Execute Procedure dbo.uspLogError Trigger uSalesOrderHeader Execute Procedure [...]
wikibot
Procedure HR.SECURE_DML Source
CREATE OR REPLACE PROCEDURE [...]
[...] Collection Sales.StoreSurveySchemaCollection Select Table Sales.Individual Trigger iStore Execute Procedure dbo.uspLogError Trigger iStore Execute Procedure [...]
[...] Data Type Type dbo.Flag Data Type Type dbo.Name Schema Schema Purchasing Execute Procedure dbo.uspLogError Trigger dVendor Execute Procedure [...]
[...] Schema Schema Production Dependencies Reference Type Object Type Referencing Object Select Procedure dbo.uspGetBillOfMaterials Select Procedure [...]
[...] Select View Sales.vSalesPersonSalesByFiscalYears Select View Sales.vStoreWithDemographics Select Procedure dbo.uspGetEmployeeManagers Select Procedure [...]
[...] Reference Type Object Type Referencing Object Select View Production.vProductAndDescription Select Procedure dbo.uspGetBillOfMaterials Select Procedure [...]
[...] Purchasing Update Table Purchasing.PurchaseOrderHeader Trigger uPurchaseOrderHeader Execute Procedure dbo.uspLogError Trigger uPurchaseOrderHeader Execute Procedure [...]
[...] Schema Schema HumanResources Dependencies Reference Type Object Type Referencing Object Insert Procedure HumanResources.uspUpdateEmployeeHireInfo [...]