Viewing 15 posts - 16 through 30 (of 54 total)
As a side note, the app we're using wouldn't need to render all rows as a selection would probably be made to limit the amount of data returned.
Maybe that would...
August 31, 2011 at 1:30 pm
yeah, I think i see what you mean. I guess it will grow exponentially
:/
August 31, 2011 at 1:28 pm
I think I may have misled you. in the text file, there's around 18000 records in total per month. Below is what I wrote previously. However, the last sentence,...
August 31, 2011 at 12:49 pm
That's right Jeff. I did a Distinct on the ProductID column and that was the amount of unique productID's that were returned.
Cheers
August 31, 2011 at 7:22 am
I think we could break the query into separate months so each query would only show days of the same month and then load that into a table.
There is around...
August 31, 2011 at 4:21 am
Thanks again.
I'm sorry, I've not really used code in Visual studio and I'm perplexed. I added the code. Do you know if I'll still be using a Execute...
August 30, 2011 at 10:02 am
Thanks for your reply. I'm not really sure how to build an sql query statement using the function MessageBox
Am I right in saying I click on Edit Script on...
August 30, 2011 at 8:54 am
Hi Jeff,
Please see below more info about the data and schema. The data I'm using has been extracted from a cube into a text file. the 'Day' column has...
August 29, 2011 at 10:40 am
I appreciate the help Jeff.
I think I should add that day 2 does not exist in the current table at all. It would look more like this.
Day...
August 26, 2011 at 10:28 am
mark-101232 02/09/10
This may be slightly better
SELECT x.FaultID,
x.StoreID,
x.CallOut
FROM #Sample x
WHERE EXISTS (SELECT * FROM #Sample s
...
September 2, 2010 at 4:32 am
Just to let you know. I tried this one from another forum and it touched 56 rows. I've not tried your method yet Wayne, but I wil let...
September 2, 2010 at 2:30 am
Hey Matt, very smart, thanks a lot for this. It seems to work and performance seems ok
🙂
September 1, 2010 at 8:04 am
Viewing 15 posts - 16 through 30 (of 54 total)