Forum Replies Created

Viewing 15 posts - 46 through 60 (of 77 total)

  • RE: Multiple Joins

    Excellent! Thanks for the help.

  • RE: Moving data between Access and SQL Server

    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...

  • RE: Automatically Generated Numbers

    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.

  • RE: Converting a stored procedure into a View

    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.

  • RE: Conditional Select

    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...

  • RE: Conditional Select

    The report displays several records at a time, depending on how many are returned. The actual report is formatted like the following:

    OrderNumber

    Detail1

    ...

  • RE: Multiple Groupings

    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...

  • RE: Multiple Groupings

    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...

  • RE: Temporary tables within an IF statement

    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...

  • RE: Temporary tables within an IF statement

    Is there an easier way to fill a table from different sources, depending on the value of a variable?

  • RE: Comparing Time Stamps

    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...

  • RE: Adding a column to a table

    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...

  • RE: Adding a column to a table

    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...

  • RE: Optional Parameters

    Excellent. That's just what I needed. Thanks for the help.

  • RE: Slow-running SP

    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...

Viewing 15 posts - 46 through 60 (of 77 total)