Stored Procedures [dbo].[sp_lbf_invtblmap]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Permissions
TypeActionOwning Principal
GrantExecuteca_itrm_group
SQL Script
create procedure sp_lbf_invtblmap
as
begin

-- legacy bug fix
-- just in case table owner is wrong for the inv_default_xx tables
update inv_table_map set tbl_owner = 'dbo'
where table_name_item = 'inv_default_item';

end;
GO
GRANT EXECUTE ON  [dbo].[sp_lbf_invtblmap] TO [ca_itrm_group]
GO
Uses