Viewing 15 posts - 541 through 555 (of 2,469 total)
Actually, if you set the option in QA under "Tools - options - Results" to display as "Results to text", you could view the data....
I always use this option specially...
**ASCII stupid question, get a stupid ANSI !!!**
January 19, 2006 at 1:30 pm
Guess the other lesson that you should add to this is to use Query Analyzer as much as possible...![]()
**ASCII stupid question, get a stupid ANSI !!!**
January 19, 2006 at 12:23 pm
select myTable.orderNum, myTable.LineNum, Qty, a.total from myTable inner join (select orderNum, sum(Qty) as total from myTable group by orderNum)a on myTable.ordernum = a.orderNum
**ASCII stupid question, get a stupid ANSI !!!**
January 19, 2006 at 10:40 am
unless you want something like this..
select min(date) as date, employer from myTable
group by employer
?!?!?!![]()
**ASCII stupid question, get a stupid ANSI !!!**
January 18, 2006 at 1:14 pm
Sorry Ed - I've stared & stared at "Here is an example of how I want the result set to be ordered:" and still don't understand...
could you please explain again...maybe...
**ASCII stupid question, get a stupid ANSI !!!**
January 18, 2006 at 1:12 pm
Maybe I am not understanding the requirements correctly, but ordering by employer & date should give you what you want...![]()
could you please post the...
**ASCII stupid question, get a stupid ANSI !!!**
January 18, 2006 at 1:03 pm
NOT funny when this happens but I just wanted to post the links to at least 3 different times in the past when this issue has been discussed..
**ASCII stupid question, get a stupid ANSI !!!**
January 18, 2006 at 11:38 am
wow indeed - 35 acres - & they say that "no man is an island"..![]()
In the D.C metro area, land is at such a...
**ASCII stupid question, get a stupid ANSI !!!**
January 18, 2006 at 5:57 am
Henry,
Why don't you post the "select" that gets you your 500 rows as well as itemise the updates you want done...
However complicated it is, I am +ve that someone here...
**ASCII stupid question, get a stupid ANSI !!!**
January 18, 2006 at 5:34 am
You can edit directly in EM (as Paul) suggested but you'd be better off seeking help with your update statement and doing it in one fell swoop rather than manually...
**ASCII stupid question, get a stupid ANSI !!!**
January 17, 2006 at 2:53 pm
sorry for asking what may be a stupid question - are you sure you meant columns and not rows... ?!?!
Another alternative to get all your rows is to store the...
**ASCII stupid question, get a stupid ANSI !!!**
January 17, 2006 at 2:18 pm
raj - are you sure preethviraj's solution is the logic you want to use ?!
Also, what do you mean by wanting to add "another value"...is that an additional filter that'll...
**ASCII stupid question, get a stupid ANSI !!!**
January 17, 2006 at 9:54 am
It'd be much easier to provide a solution if you post your sproc...all depends on your parameter, query etc...for example, if your parameter is an ID, you could so something...
**ASCII stupid question, get a stupid ANSI !!!**
January 17, 2006 at 9:46 am
1) Pl. post some sample rows from your tables.
2) If you run with actual values, do you get the right results ?!
3) what is the application used to call the...
**ASCII stupid question, get a stupid ANSI !!!**
January 15, 2006 at 9:57 pm
raj - this is all you have to do...
SELECT @Lesson = (store the result into a variable) CASE WHEN @param = Code_1 THEN Lesson_1 WHEN @param = Code_2 THEN Lesson_2 WHEN @param =...
**ASCII stupid question, get a stupid ANSI !!!**
January 14, 2006 at 8:27 am
Viewing 15 posts - 541 through 555 (of 2,469 total)