|
|
-
|
|
Hi,
I would like to write CTE Query to get expected results.
Here are the table and expected results.
1)
declare @t table(zid int,dok varchar(100),stawka int)
insert into @t values
(1,'333',10),
(2,'333',10),
(3,'333',20),
(4,'3...
|
|
-
|
|
I am having a folder containing 10 sql files each one having some select statements.
My need is, using SSIS, to read sql files one by one from the folder and insert each sql output to a separate table.
Please help....
|
|