Viewing 11 posts - 1 through 11 (of 11 total)
even I thought so, but when I observe it with performance counter Bufferused remains at a constant value when UI stops reading that indicates nothing is happening
It might not...
December 5, 2017 at 7:01 pm
Source is SQL and destination is also SQL, I am using OleDB source, but connection is to a SQL Server Database
December 5, 2017 at 6:52 am
Thanks Aaron for your reply, there are no transformations involved, one oledb source which has Select <columnlist> from <viewname> and oledb destination , to test if it is a read...
December 4, 2017 at 10:34 am
Thanks for bringing it to m notice, I uploaded it now.please check now.
September 14, 2016 at 10:18 am
Create a Object variable
Use Execute SQL Task to Copy the Output of Select <ColumnnameWhichhaspath> from <Table>
into this Object Variable
Use foreach ADO.net enumerator and Loop through all records in...
May 28, 2014 at 1:16 pm
I used WAITFOR to achieve the same instead of script.
thanks for your idea.
February 17, 2014 at 9:11 am
Hi Koen,
thanks for your reply.
I need to send an email only in-case the data load(DFT) takes more than 10 minutes(or a specified interval),and it is still in execution but not...
February 17, 2014 at 4:38 am
AutoGenrating Identity solves,but the data is in Text file and there are around 700 files which needs to be processed
May 15, 2013 at 12:35 am
Hi Brandie,
If I add a Merge Transform and Pull the Data into Destination,Data from each file Merges as one column in the output,what I need is a separate column for...
May 6, 2013 at 12:33 am
with cte as
(select MenuID,MenuDesc,ParentMenu
,Sequence,1 as Lev
from Menus
where ParentMenu is ''
UNION ALL
select m.MenuID,m.MenuDesc,m.ParentMenu
,m.Sequence,Lev+1
from cte
join Menus m
on m.ParentMenu=cte.MenuID
)select MenuID,MenuDesc,ParentMenu,
ROW_NUMBER()OVER(partition by ParentMenu order by Menuid) as [Sequence]
,ROW_NUMBER()over(order by Lev) as [Order]
,Lev
from cte
this...
March 10, 2013 at 12:57 pm
Hello,
can you check using the below query
if the query is not okay,can you explain a bit about Order Column
with cte as
(select MenuID,MenuDesc,ParentMenu
,Sequence,1 as Lev
from Menus
where ParentMenu is null
UNION ALL
select m.MenuID,m.MenuDesc,m.ParentMenu
,m.Sequence,Lev+1
from...
March 9, 2013 at 8:47 pm
Viewing 11 posts - 1 through 11 (of 11 total)