Forum Replies Created

Viewing 15 posts - 32,356 through 32,370 (of 39,748 total)

  • RE: result

    Move your stored procedure to a function

    Or write a query to do the calculation and join to the view.

  • RE: Can anyone pls explain me??

    Grant's explanation makes sense. It looks like you're using a temp table as well, so that will get created in tempdb along with any other intermediate tables that SQL Server...

  • RE: bug or "feature"??

    Implicit conversions can get you in many places. The big thing to be aware of is that you'd probably want to compare > 0.0 so that the conversion doesn't take...

  • RE: SELECT Query with the IN operator

    Maybe you can give an example with data? Not really sure what you're looking for.

  • RE: Copy

    Are you trying to move the structures or the diagram?

  • RE: Missing the "visited" style of a link

    We aim to please

  • RE: Selecting one row for each value in another column

    Both Kofi's and David's suggestions should perform well if you have the tables indexes for those columns. The query optimizer can take some shortcuts and get you quick results.

  • RE: Query Results Change every three runs

    Can you post some code?

    The ideas above are what I thought of. Data should be consistent and usually corruption results in pages being skipped missing data.

  • RE: When a project falls behind the schedule.....

    Those are definitely good ideas and that's a great book, but in a lot of cases I've worked on projects that couldn't be phased. Usually if that's the case, you...

  • RE: Alert for SQLAgent Stopping?

    For a windows alert, you can go into the services applet in control panel. Pick the SQL Server Agent service and get properties. Go to the recoveyr tab. There you...

  • RE: High transaction log volume when in Simple recovery mode

    Ed brings up a great point. Also be sure that you aren't abandoning open transactions with connecitons being held open.

    I'm not sure if the .NET state changes anything on the...

  • RE: Improve/Simplify Query

    It seems the second inner join isn't needed. Collapse this

    /*Add the Company name for the lot numbers used in the JO*/

    Select qalotc.fclot, qalotc.fcpartno, ct.fccompany

    from qalotc

    Join

    (

    ...

  • RE: IF NOT EXISTS

    Or if you don't need the data for other purposes, use Peter's idea, but update, then delete from temp where matching the table, then insert everything else.

  • RE: The Religious Wars

    I can positively, most definitely state that I am almost 100% confident that we are mostly talking about databases.

    I think.

  • RE: The Fox Is Gone

    I doubt Access grows. More likely people will shift to VB.NET instead. VFP was a full featured development environment, with lots of OOP built into the product. You could develop...

Viewing 15 posts - 32,356 through 32,370 (of 39,748 total)