Viewing 15 posts - 2,536 through 2,550 (of 6,036 total)
Todd, if you've got data like this:
INSERT INTO MemberLabResult
(MemberID, LabDate, LabID, Labvalue)
SELECT '1','10/17/2008','1','3.2' UNION ALL
SELECT '1','12/17/2008','1','2.0' UNION ALL
what should be the average for last 2 months?
1.0 or 2.6?
April 15, 2009 at 1:55 pm
Steve Jones - Editor (4/13/2009)
If it's early Sept and you go back a...
April 14, 2009 at 12:26 am
If it's possible try to order the data before it's being inserted, in SELECT part.
April 11, 2009 at 6:07 pm
Shuaib (4/10/2009)
I need to append the value for an existing text data type column value in sql 2000. Can someone give the scripts? I have to update for...
April 11, 2009 at 4:06 am
Steve, anything about THE MATTER?
If you did not notice it's kinda professional forum.
April 10, 2009 at 6:08 pm
In my case, I want to store the "WinUserName" in audit trail action, who actually connects to Citrix Session and performed the action.
You answered your own question.
If you need details...
April 9, 2009 at 5:26 pm
Remove all indexes but clustered.
Recreate dropped indexes after populating the table.
But actually moving of such a chunk of data away for processing is not such a brilliant idea.
There must be...
April 9, 2009 at 4:47 pm
RubyRed (4/9/2009)
April 9, 2009 at 4:41 pm
So, it's a lotto, or just like lotto, right?
If so, and i "performance is very important" you need to take care about data normalization.
-- Normalized data storage for registered tickets
CREATE...
April 9, 2009 at 4:27 pm
So, it's a lotto, or just like lotto, right?
If so, and i "performance is very important" you need to take care about data normalization.
CREATE TABLE Ticket (
April 9, 2009 at 4:06 pm
What about repeating values - is it possible in table and/or variables?
April 9, 2009 at 3:47 pm
Does the order matter?
Can values be repeated in columns/variables?
O it's like in a lotto: variables are the winning numbers and table contains all registered tickets?
April 9, 2009 at 2:10 am
MR (4/8/2009)
I have a table with 6 fields, and given 6 values, I have to find the row that matches at least 4 values
Which values?
Some values given from outside...
April 8, 2009 at 11:02 pm
Viewing 15 posts - 2,536 through 2,550 (of 6,036 total)