Viewing 15 posts - 31 through 45 (of 61 total)
Thank you, I'll give that a try
December 16, 2010 at 1:43 pm
What I need it something like this
DetailName VoteCount (Winner) this is a virtual column
test1 ...
December 16, 2010 at 1:29 pm
looking at the data the result set appears to be grabbing the emp_ID, and Date and then in the Where clause as well you have a A=1. So I...
December 16, 2010 at 1:02 pm
I also have the cst_id which is not a number i did that for simplicity it's actually a guid
does that help any.
June 4, 2010 at 1:04 pm
Matt Wilhoite (10/21/2009)
select * from person P
where numOfYears = (select max(numOfYears) from person P2 where P.cus_key = P2.cus_key)
This...
October 21, 2009 at 8:48 am
For the most part that works, but I can't determine the shared datasource name on each report. Any thoughts
September 14, 2009 at 12:41 pm
Ok, if I use Identity instead of GUID how then when I createing a webform, would I update the 3rd table which just holds the Primary Key's of the other...
April 14, 2009 at 2:27 pm
Ok let's look at it this way
Candidate table
CandidateID PK
CandidateName field
Position (table)
PositionID Pk
PositionDescription
Candade_Position(table)
CandidateID Comes from CandidateTable
PositionID Comes from PositionTable
If I create a webform that will allow me to put in the...
April 14, 2009 at 2:15 pm
That seemed to work, I will have to go through some more testing to make sure, but seem things look good at this point.
April 7, 2009 at 2:07 pm
From my first post when I asked the question the Select statement works after the few minor fixes, I get the exact results I was expecting. However when I...
April 7, 2009 at 1:54 pm
Ok here is the organizaiton record
SELECT cxa_key, cxa_cst_key , cxa_adr_key, cxa_adt_key, cxa_mail_stop, cxa_on_hold_flag, cxa_on_hold_from, cxa_on_hold_through, cxa_adh_key,
...
April 7, 2009 at 1:47 pm
Nope, that only updates the single record that already has the cxa_on_hold_flag
April 7, 2009 at 12:34 pm
It's a little more complex then that, what I need to do is find an organization that has the cxa_on_hold_flag set to 1 and find anyone who has the same...
April 7, 2009 at 12:20 pm
Well, that did work however it updated every row in the table to set the cxa_on_hold_flag to 1 and not just the subset of data in the select statement
April 7, 2009 at 11:53 am
Viewing 15 posts - 31 through 45 (of 61 total)