Viewing 15 posts - 46 through 60 (of 77 total)
I wish that was possible, but the mdb is coming from an outside company that doesn't want to give us access to their servers (except for the small nightly window...
September 17, 2008 at 5:15 am
There isn't really a good reason to not show the client the identity, other than personal preference. A computed column should do well, though. Thanks.
September 16, 2008 at 9:24 am
I've convinced the powers-that-be that this isn't something worth exploring since the proc works fine as is. Thanks for all of your help.
June 23, 2008 at 4:34 am
That's what I was afraid of. I'll keep working on it, but I'm afraid that you might be right. If there is a way, it's beyond my abilities...
March 3, 2008 at 11:48 am
The report displays several records at a time, depending on how many are returned. The actual report is formatted like the following:
OrderNumber
Detail1
...
March 3, 2008 at 11:46 am
I'm using ActiveReports by DataDynamics for the front end, and for some reason it isn't breaking the multiple Actions apart within the Orders. I don't know if this is...
January 21, 2008 at 6:24 am
I thought that you couldn't use UNION if you were pulling different numbers of columns from the various tables. Is this the case? Could I simply pad the...
January 18, 2008 at 11:57 am
The definition of the table wasn't changing, so defining the table before the IF statement worked perfectly. I am testing this in the Query Analyzer, but I was also...
January 15, 2008 at 8:13 am
Is there an easier way to fill a table from different sources, depending on the value of a variable?
January 15, 2008 at 7:51 am
I got this to work using a simple CONVERT statement to retrieve the time portion of the datetime field.
CONVERT(VARCHAR(8), timefield, 108)
This seems to suit my purpose quite well, although there...
November 9, 2007 at 11:52 am
Would it really be faster to go through the entire table to calculate the sum of the column for the variable? I suppose that is what I'm doing with...
November 9, 2007 at 7:58 am
I wasn't sure if it was possible to do the math inline since it relies on a sum of one column to produce the value for another column. Was...
November 8, 2007 at 4:48 am
Excellent. That's just what I needed. Thanks for the help.
October 18, 2007 at 5:08 pm
Hi Chris,
Adding an index to the table variable seemed to be faster than doing the same to the temp tables, but either way it did shave a fair amount of...
September 19, 2007 at 8:24 am
Viewing 15 posts - 46 through 60 (of 77 total)