Viewing 9 posts - 46 through 54 (of 54 total)
We are going to transfer data from denormalize db to normalized db.Currently both source and destination are on same server..
but once i complete creating packages for all tables ,...
April 10, 2014 at 12:42 am
Hi,
I got the solution..
I need to use separate data source for each left join..
so i have used multicast for source table then done left join .
i have attached screenshot of...
April 9, 2014 at 4:40 am
Data sources are SQL command like
select * from Mst_From_Email where Company_ID = 1 and active = 1
April 9, 2014 at 3:28 am
Hi,
Is there any other advantages of using SSIS over using script , except faster loading for data transfer?
Thanks,
Megha
April 4, 2014 at 11:51 pm
ok...thanks..SSIS will be fast over script in case of different server data transfer?
April 3, 2014 at 4:09 am
Actually, we have tables with more than 150 columns and it's harder to manage it (insert) .
so tables are denormalized now.
source and destination databases are on different server.
Thanks,
megha
April 3, 2014 at 2:20 am
Hello ,
you can also try below
;WITH CTE AS
(
SELECT docid,pages FROM #x
UNION ALL
SELECT C.docid,C.pages-1
FROM #x X INNER JOIN CTE C
ON X.docid = C.docid
AND C.pages-1 >0
)
SELECT *...
March 22, 2013 at 7:39 am
Hi,
i have already tried with html format but there was problem in convert from xml to varchar ,because of large xml ,it was truncated.
At last,i have changed my query to...
January 2, 2013 at 2:47 am
Try this ..
SELECT A.* FROM Employee A ,Employee B WHERE A.DateofBirth = B.DateofBirth AND A.id <>B.id AND (A.SSN = B.SSN OR A.EmployeeCode = B.EmployeeCode)AND A.Division = B.Division
May 2, 2012 at 4:27 am
Viewing 9 posts - 46 through 54 (of 54 total)