Forum Replies Created

Viewing 15 posts - 13,411 through 13,425 (of 14,953 total)

  • RE: DTS 2000 export from 2005

    I might be misreading something, but why are you using DTS 2000 on an SQL 2005 database?

  • RE: Turning auto-shrink off?

    The main usual consequence of turning off auto-shrink is that your whole database speeds up.

    Secondarily to that, your database might grow a little bit now and again.

    The way to handle...

  • RE: Performance help

    Totally understand what you're running into on it. To optimize it any further, I'd need to actually see it in operation, look at the tables it's running on, check...

  • RE: Try/Catch does not work.

    Mark Shvarts (6/5/2008)


    I tried to reproduce your code, but it complains about (@stmt), apparently you did not test this code prior to posting.

    But my point anyway is that Catch...

  • RE: To Store Formatted Data or Not

    Another thing I thought of on this subject is that just storing the numbers makes certain types of pattern-matching much easier.

    What if, for example, you want to look up all...

  • RE: Execution plans different

    As mentioned, there is no guarantee that two instances of SQL Server, even running on the exact same server, will return the same execution plan for the same query. ...

  • RE: A Private Database

    Michael Earl (6/9/2008)


    Nope, there is no GUI for Service Broker (unless you count the template scripts). That was my point.

    I tried to type as sarcastically as possible, but apparently...

  • RE: Bit Field

    Bit fields take 1 byte for up to 8 fields. So, if you have 1 bit field in a table, it takes 1 byte. If you have 8,...

  • RE: Audit Trails and Logging Part I

    Mike, I would actually classify what you're describing as a form of active auditing. You created a log other than the SQL server transaction log.

    Yeah, in any sort of...

  • RE: Setting up Server Traces

    There's a default template. Start with that.

  • RE: Missing results when copy/paste (or drag) results from result window to excel

    pduplessis (6/9/2008)


    Any specific reason you are copying and pasting from SSMS to Excel?

    I tend to agree, exporting works equally as nice, plus you get headers for free

    ~PD

    There's a setting in...

  • RE: Choosing the faster option; Stored Procedure or Function?

    The place where I've found functions useful is where you have to join to them. It's not so easy joining to a proc.

    Also, multi-select functions use a table variable,...

  • RE: Need assistance grouping data

    It looks to me like you could Group By student number and test date, and just use max() for getting the grades. Aggregates eliminate nulls.

  • RE: SET STATISTICS TIME ON - how to read the results?

    Maybe it's just a slow connection somewhere along the way.

    My boss had a 1-Gig card in his computer, and a 1-Gig connection at the switches, but was getting horrible download...

  • RE: Identical Servers, different results

    This appears to be a duplicate question. I replied to the other copy (same forum).

Viewing 15 posts - 13,411 through 13,425 (of 14,953 total)