Viewing 5 posts - 1 through 5 (of 5 total)
Thanks. Yes it would be done to populate look up tables and the project are part of the an integration solution. The source was just part of an...
December 21, 2016 at 11:14 am
Thank you, i know it would be simple but wanted to get solution other than using cursor.
Cheers.
December 21, 2016 at 11:11 am
Below are my tables, source table would be the source of all information that will get breakdown into 4 different tables as Name table, company, F1 and F2 tables. ...
December 20, 2016 at 8:15 pm
I have simplified the procedure just to show 1 scenario, but on the real world, the source has a lot of data that needs to go to different table. ...
December 20, 2016 at 2:05 pm
Here's my code:
--
-- first procedure
--
CREATE PROCEDURE sp_IU_NamesTbl
(
@Age[int] = NULL,
@Name[varchar](30) = NULL
)
AS
SET NOCOUNT ON
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
DECLARE @RowId int=0;
BEGIN TRY
SELECT
@RowId...
December 19, 2016 at 8:19 pm
Viewing 5 posts - 1 through 5 (of 5 total)