Viewing 15 posts - 57,391 through 57,405 (of 59,070 total)
Be aware that when you change a diagram and save it, it actually updates your database to match... diagrams are really a form of somewhat anorexic data models.
October 16, 2006 at 8:16 pm
Another possibility would be to use a "Linked Server" which would also hide the login and password from prying eyes.
October 16, 2006 at 8:14 pm
That's a good start... got any data we can play with and, like I asked, are the tests stored in the same table as the quizzes? If so, what marks...
October 16, 2006 at 4:54 pm
Where is the Test info stored? In the QuizLog?
Sidebar... does you table actually have columns with spaces in the names
?
I think it...
October 16, 2006 at 6:56 am
It sounds like the classic "make change" problem that used to be taught in many programming classes... I'm on my way to work right now but I think a function...
October 16, 2006 at 6:49 am
Perfect case of too many cooks spoiling the broth
Thanks for the feed back on what you found, Ville... definitely something to keep...
October 16, 2006 at 6:42 am
No. Serqiy is correct... the table design is wrong... if you take multiple payments for a given invoice, you should have multiple rows.
October 16, 2006 at 6:31 am
Stephen,
If you want separate totals for each payment type, then this would do...
SELECT SUM(Cash) AS TotalCash,
SUM(Cheque) AS TotalCheque,
SUM(CC) AS TotalCC,
SUM(Account) AS TotalAccount
SUM(Total) AS GrandTotal
...
October 15, 2006 at 9:13 am
| Actually, none of them is absolutely right. |
If you have one that is, would you mind sharing it...
October 15, 2006 at 9:03 am
Thanks for the feedback, Mark... this one was a lot of fun!
Serqiy... I'd still like to know the "magic" behind your 5 second report, if you get a chance.
October 14, 2006 at 4:30 pm
Should the totals be by day for the range or are you just looking for a grand total for the range?
October 14, 2006 at 8:31 am
Thanks for the benchmark, Serqiy... the computed columns help a lot especially when you make them both deterministic so they can be indexed... got it down to 7 seconds on 4...
October 14, 2006 at 1:34 am
Mark,
I don't know if I can get it to be a fast as Serqiy says he can, but I did get it down to 8 seconds...
First, add this index...
October 14, 2006 at 12:27 am
Serqiy, my old friend... I'm all ears... there's code in the post to gen a million rows... can you show us how to get a similar report as the cross...
October 13, 2006 at 10:56 pm
Thanks Mark,
I finally have enough information to help... with great zeal, I may add...
First, as Serqiy suggested, you don't need all those "generated" columns. He suggested keeping one of them...
October 13, 2006 at 10:20 pm
Viewing 15 posts - 57,391 through 57,405 (of 59,070 total)