Monday, 3 July 2017

Data Migration

ALTER PROCEDURE [dbo].[UpdateProductFromNavision]

AS

Truncate Table [TempProduct_Master]

INSERT INTO [dbo].[TempProduct_Master]
(ProductGroupCode,Product_Name,ProductNo,UOM)
SELECT [ProductGroupCode],[Description],[No],[UnitOfMeasure]
FROM [dbo].[ItemMaster]

No comments:

Post a Comment

React Hooks - custom Hook

  v CustomHook Ø React allows us to create our own hook which is known as custom hook. Example – 1 localStorage Demo Step-1 Create ...