Quantcast
Channel: Transact-SQL forum
Viewing all articles
Browse latest Browse all 23857

Dynamically Create table and insert the records from source to destination in sql query

$
0
0
Hi,
i have written below query for dynamically create the table and insert the records from source table.

Declare @Sql Varchar(Max)
Declare @x int
declare @value varchar(100),@schema varchar(100)
SET @schema='aaa'
Declare @f1 Varchar(100)
Declare @table Table(Idt Int Identity(1,1),grp_id numeric(18,0),id int)
DECLARE @TABLENAME_2 NVARCHAR(100)
DECLARE @TABLENAME_1 NVARCHAR(100)
DECLARE @TABLENAME_3 NVARCHAR(100)
SET @TABLENAME_3 ='cde..table2'
SET @TABLENAME_2 ='abc..table1'
Insert Into @table Select Distinct grp_id,0 from abc..table1
Select @x = Max(Idt) from @table
select @value=(select id from cde..table2 where Shortname='+@schema+')
While @x>0
Begin
Select @f1= grp_id From @table Where Idt = @x
SET @TABLENAME_1='condition_' + @f1
Set @Sql =
'If Exists( Select 1 from sys.objects where name = condition_'+@f1+' And Type_Desc = ''USER_TABLE'')
Insert Into condition_'+@f1+' Select * from '+@TABLENAME_2+' Where grp_id = '''+@f1+'''
Else 
Select * Into condition_'+@f1+' from '+@TABLENAME_2+' Where grp_id = '''+@f1+'''
alter table condition_'+@f1+' add id int
update condition_'+@f1+' set id = '+@value+''
Set @x = @x-1
---print @sql
Exec (@Sql)
End 

this query is executing but not create the table and insert the records.

please check this query.

Regards,
Abdul Khadir.

Viewing all articles
Browse latest Browse all 23857

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>