Viewing 15 posts - 47,566 through 47,580 (of 59,064 total)
GilaMonster (10/25/2008)
Jeff Moden (10/21/2008)
October 25, 2008 at 3:59 pm
1mwalsh1 (10/25/2008)
Working with SQL Server 2008 Express, I am trying to match user answers to correct answers and tally up the score. Tables are as follows;
Answers
GameNo
Ans1
Ans2
Ans2... etc.
PlayerAnswers
GameNo
Player
Ans1
Ans2
Ans3... ...
October 25, 2008 at 11:18 am
Jerry Hung (10/25/2008)
See forum best practicehttp://extras.sqlservercentral.com/prettifier/prettifier.aspx
Heck... make it as pretty as you want... that's only part of the "best practice". What is a "best practice", though, is actually posting...
October 25, 2008 at 11:16 am
baumgaertner (3/31/2008)
But I do not want to rename the table and then insert the data to the new table.
When you have big tables this approach...
October 25, 2008 at 11:05 am
It sounds like you're passing each stage as a parameter and that you're looping through each stage. It sounds like each stage may be different enough where you are...
October 25, 2008 at 9:54 am
First, what do you get when you run the following?
SELECT * FROM tabUserInfo
Where (UserID Is Null or UserID <= 0)
Now, what do...
October 25, 2008 at 9:48 am
If the table is that large, consider splitting it into smaller tables based on a PK and then build a partitioned view to put it all back together again. ...
October 25, 2008 at 9:38 am
smunson (10/24/2008)
October 25, 2008 at 9:31 am
I guess I'd have to argue that developers are sometimes even more arrogant than the DBA. What makes a GUI developer think (s)he knows something about how to store,...
October 25, 2008 at 9:17 am
Doing it the old fashioned way using a "Derived table" instead of a CTE...
SELECT orig.AgentID, orig.AgentType
FROM #a orig
INNER JOIN
...
October 25, 2008 at 8:43 am
Don't know because we can't see the "Tally Data". There's lot's of ways to "see" file data as if it were a "linked server", but it depends, a lot,...
October 25, 2008 at 8:27 am
Paul,
It would help us give you a better answer quicker if you posted Table A and it's data in a readily "consumable" format. See the link in my signature...
October 25, 2008 at 8:21 am
Lynn Pettis (10/24/2008)
October 25, 2008 at 7:39 am
Crud... I gotta learn to keep everything. I can't find the code that I wanted. I do remember that it's not the same as the following which seems...
October 24, 2008 at 9:01 pm
Heh... thanks Fraggle... I guess you really do hate RBAR after all! 🙂
October 24, 2008 at 7:53 pm
Viewing 15 posts - 47,566 through 47,580 (of 59,064 total)