Viewing 9 posts - 1 through 9 (of 9 total)
john.henderson (7/1/2008)
here is the order by clause for an address table that does work
ORDER...
July 3, 2008 at 1:10 pm
john.henderson (7/1/2008)
Orblin McLoon (7/1/2008)
What about having another variable @SortDir, which could be ASC or DESC?
Using the same method used for the Sort Expression...
July 1, 2008 at 7:52 am
Thanks Carl!! That code worked great.
What about having another variable @SortDir, which could be ASC or DESC?
Using the same method used for the Sort Expression (CASE) doesn't seem...
July 1, 2008 at 5:15 am
Hey thanks guys, that will work. The overhead is temporary, this is a 'boss lost the source code' problem, so I just have to run the trace long enough to see...
November 16, 2005 at 9:04 pm
Thanks, I'll try the UDF. Can someone post a sample UDF so I can see the correct syntax?
September 20, 2005 at 9:35 am
I need the procedure as part of a select statement in another procedure. I tested this and it worked (@LASTNAME is a parameter of otherproc).
This is the FULL stored...
September 19, 2005 at 8:57 pm
My procedure also has parameters. So from inside the other stored procedure, if I want the value it returns, I would type:
SELECT ( exec MyProc )
What about the...
September 19, 2005 at 3:28 pm
Thanks for all the replies! This is what worked:
IF @CALLLOGTIME IS NULL SET @CALLLOGTIME=0
The following did NOT work - gave a syntax error (I don't know why either, they...
September 15, 2005 at 11:57 am
Thanks!! It worked perfectly.
One more question, how can I sort by the count(*) ?
it says 'no column name' in the count column, so I can't list it
in...
May 31, 2005 at 12:00 pm
Viewing 9 posts - 1 through 9 (of 9 total)