Viewing 15 posts - 1 through 15 (of 21 total)
I've realized my erroring ways and fixed my problem. I believe this is the right way to do things so if not, please let me know. Here is...
April 18, 2008 at 7:16 am
The SQL works perfectly, thank you very much. Do you know how I can incorporate this in to an expression within reporting services? It will not except the...
April 15, 2008 at 7:44 pm
One more question... (probably missing something very dumb here)
How can you have a result set with multiple columns if you can only group by a single column and the select...
April 10, 2008 at 8:15 pm
Ah, let me take a stab at this.. (studying a bit more)
The join of the attendance and users table provides teh ability to NOT require a tmp table and is...
April 8, 2008 at 8:59 pm
Jeff,
First off, thank you very much for the education on all this. There is one part of the code I don't understand / question. You are suggesting...
April 8, 2008 at 8:51 pm
Jeff,
Thank you (and everyone) for all the replies. The big piece I was missing finally just sunk in. My issue was with the insert I wanted to...
April 6, 2008 at 10:42 pm
Jeff,
With all due respect, I have read Ken's post about 200 times over this weekend and unfortunately, due to my lack of experience and knowledge with SQL, I have...
April 6, 2008 at 7:58 pm
ALMOST there.. 🙂
Q: Is it possible to mix and match in an INSERT INTO statement?
Here's where I'm at.
select all records in the atendance table from the previous 14 days
grouped them...
April 6, 2008 at 4:12 pm
Thank you...
Not sure what this has to do with my question though...
April 6, 2008 at 10:16 am
Many thanks to the previous replies (much needed)
Here is what I've done so far.
Background: I am creating a DB which will track attendance of employees via a point system....
April 6, 2008 at 12:33 am
Ug, finally figured it out.
Thanks all!
Bob
April 4, 2008 at 1:53 pm
Still missing something.
In trying to use the following...
CREATE TRIGGER trgInsertNewUser
ON users
FOR INSERT
AS Insert into attendance
SELECT UID
FROM inserted
When executing this, assuming it will just create the trigger for the...
April 4, 2008 at 1:16 pm
As usual, I was WAY over complicating things based on information found in the SQL books online.
Thank you VERY much!
Bob
April 4, 2008 at 9:52 am
Ok, I believe I have the idea now but am still having problems puting my code together.
I have table A which contains user ID and assoiciated point values on each...
April 1, 2008 at 11:09 pm
Actually, I think I'm making way more out of this than I need to. Let me try to explain this again as I've changed things a bit.
Lets say I...
April 1, 2008 at 6:41 pm
Viewing 15 posts - 1 through 15 (of 21 total)