Viewing 10 posts - 76 through 85 (of 85 total)
Thanks very much for discussing on the article regarding performance issues. I have just shown a new approach to split strings with the help of XML and a very good...
July 12, 2009 at 11:15 pm
There is nothing much in that. Just take the XML source in data flow and then it will ask you that whether you are providing XSD or it will...
July 7, 2009 at 11:27 pm
Are you generating the XSD or it is automatically generated while selecting the XML source in Data Flow.
Try generating it automatically through the XML source task in Data flow.
Then you...
July 7, 2009 at 4:42 am
Yes, triggers will always be fired if you have return it on an insert statement. It is independent on whether you are using cursors or using any other alternative to...
January 2, 2009 at 12:27 am
Carla's comparison was really very nice.
Thanks I have learnt a lot many new things by writing this article
November 12, 2008 at 11:55 pm
select personid, version, dedate,
row_number() over (partition by personid order by version) as VersionOrder,
row_number() over (partition by personid order by dedate) as DeOrder,
case when row_number() over (partition by personid order by...
November 12, 2008 at 7:42 am
Reply to :Why use the cross join?
Yes it could be done in a way you have shown but then the whole personid should be marked as improper if any DEDATE...
November 12, 2008 at 7:39 am
Performing task with two tables??
Could you please clarify your query??
November 12, 2008 at 6:26 am
Thanks
November 12, 2008 at 6:00 am
Yes it will optimize the performance of the query
November 12, 2008 at 5:59 am
Viewing 10 posts - 76 through 85 (of 85 total)