Forum Replies Created

Viewing 15 posts - 1,936 through 1,950 (of 6,486 total)

  • RE: Lets help the experts help themselves

    RBarryYoung (3/7/2009)


    GilaMonster (3/7/2009)


    t.walker (3/6/2009)


    I really support that idea. I think a more private invited members forum would enable me to speak more freely/

    Just one question. How would you determine who's...

  • RE: Union Benefits

    Tomm Carr (3/6/2009)


    Matt Miller (3/6/2009)


    With all due respect - what we choose to value above everything else is a cultural thing. Irish does have a point that in our...

  • RE: alter Table Order

    The bigger question would be - why is it so important to have it "in the middle?" The display order, or column seq# has nothing to do with how...

  • RE: Union Benefits

    Tomm Carr (3/6/2009)


    Irish Flyer (3/6/2009)


    What you do for a living shouldn't NECESSARILY be "What have you chosen to give your life meaning?"

    It's not a question of necessity. It just is....

  • RE: Simple Recovery Mode, Yet Logfile Very Large?

    A few more points (in addition to the already excellent info already out here).

    - you can't issue a BACKUP LOG against a DB in simple recovery mode...

  • RE: Migrating MSAccess Apps To Sql

    unless you're using Access 2000 or earlier - you really should be using OLEDB and not ODBC. In addition, you should probably look at your OLE DB connection string...

  • RE: Migrating MSAccess Apps To Sql

    unless you're using Access 2000 or earlier - you really should be using OLEDB and not ODBC. In addition, you should probably look at your OLE DB connection string...

  • RE: Table Valued User Functions??

    If you want to reuse them - then dump them into a temp table. Just create the temp table in the calling stored proc, fill it using the dynamic...

  • RE: Table Valued User Functions??

    Essentially - no. Not in a function.

    In order to do that you would need to run the statement as "dynamic SQL" which is not possible through T-SQL functions (since EXEC...

  • RE: Access Queries conversion to Views problem

    What you CAN do is use what is called a CTE (Common Table Expression), which allows you to create reusable expressions.

    So - you'd have to build a CTE that holds...

  • RE: Select distinct on multiple columns

    sqlcentral (3/3/2009)


    Yes, the results are returned in such an order that the first result is the one that I want to keep, any subsequent results with the same values across...

  • RE: ...I'll apologize in advance...

    Try this as your query.

    SELECT Type, mrPRIORITY, COUNT(*) AS TypeCount

    FROM MASTER6

    WHERE (mrPRIORITY <= '4')...

  • RE: ...I'll apologize in advance...

    That's what I'm talking about. In the SSRS Report Parameters area - set it to be dateTime parameters. The Endate+1 is trying to be evaluated before being passed...

  • RE: ...I'll apologize in advance...

    Have you set the parameters to be DateTime? It sounds like SSRS is treating them as something other than dates.

  • RE: Sorting a percent field

    Appyling the FormatPercent turns that back into a varchar. Which is fine for display purposes, but as you've already discovered - no good for sorting. So - you...

Viewing 15 posts - 1,936 through 1,950 (of 6,486 total)