Viewing 15 posts - 31 through 45 (of 69 total)
The ForEach Loop container has a property called MaximumErrorCount, it's default value is 1, increase the value of this property, it should work.
Here is the discription of the property from...
June 26, 2008 at 2:38 pm
The Merge Join control will generate the joins necessary to link these tables. Using a Merge Join control is similar to writing inner joins.
Check Merge Join in BOL for an...
June 26, 2008 at 2:15 pm
Yeah my idea to was to add a leading zero, that would sort it perfect!
June 26, 2008 at 7:30 am
I aggree with WRACK... 'Inside Microsoft® SQL Server™ 2005: T-SQL Querying' was a good read! Good examples too!
June 26, 2008 at 2:48 am
Extracting customer data from the Adventure Works database is an idea...
June 25, 2008 at 9:58 am
Hey, no worries, SSC Journeyman sounds like some superhero 😀
Are you using a ForEach control task?
June 23, 2008 at 9:16 am
With this question do you mean that you want to be able to select a start and end date and then pass these parameters to a SP that will return...
June 20, 2008 at 9:48 am
Hi
Your expression syntax is not right. When you need double quotes in your expression add a backslash before the double quote. Check the expression below as an example:
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\Development\\Documentation\\File1.xls;Extended Properties=\"Excel...
June 20, 2008 at 9:41 am
Sounds like you need to write a query that groups by user and selects MAX date and also joins to a cost table. Which table are the costs coming from?...
June 20, 2008 at 8:10 am
Yip, if you create an INSTEAD OF INSERT TRIGGER on your table it will pick up each instance where an insert statements is being executed on your table. I am...
June 18, 2008 at 7:29 am
So from what I understand you dont have control over the insert statements... Have you thought of writing a trigger on that table to intercept the SQL statement?
June 18, 2008 at 6:52 am
There is a RANK function that works very similar to the ROW_NUMBER() function which would work better for your situation. check BOL for the RANK function. You would use the...
June 18, 2008 at 6:39 am
Viewing 15 posts - 31 through 45 (of 69 total)