Forum Replies Created

Viewing 15 posts - 6,016 through 6,030 (of 6,215 total)

  • RE: Partial Flat File

    I would guess that it depends on what is doing the writing, whether or not it allows shared access to the file. Might be fun to test.

    In general I'd...

  • RE: Soon upgrading to SQL SP 3. Gotchas?

    Bill,

    We use Win2K where Im at, but I've had zero problems with the SQL service packs. Check the MS newsgroups to be sure, but I imagine you're ok to proceed....

  • RE: Sending SP output to a text file

    You could also use a DTS package to just export the tables directly. Not a "supported" technique since it references system tables, but reasonably safe in this instance.

    Yet another way...

  • RE: Dynamic TSQL in trigger using values from inserted

    I havent worked through all of it, but usually the way you avoid the EXEC() scoping isssue is through a ##temp table.

    Its an interesting problem, but I'd really want a...

  • RE: using (use)

    That solution will work, but will not get you the benefits of a compiled plan. I would look for an alternative to 'use' - in my opinion(!) this is far...

  • RE: Best Practice for Importing a Text File??

    40m is not all that huge. Their points are fair. Not sure that its worth arguing about even! Two things to consider. One is that whether or not you copy...

  • RE: SQL tools

    Joe - none that we are familiar with. If you do find something, post a follow up? I have not looked at latest versions of Crystal Reports/Analysis...might try that one.

    Andy

    ...

  • RE: Best Practice for Importing a Text File??

    Nothing wrong with either approach to me. I would normally try not to be doing a lot of extra disk access on the server, but this probably wouldnt amount to...

  • RE: Failed Updates to Linked Tables

    If you have Access 2000, you may want to take a look at it's "project" mode which gives you live access to tables, views, etc. The tradeoff is you lose...

  • RE: How to join 2 databases on same instance

    Not that I know of. Linked server would be the way to handle this normally. Is there a reason that won't work for you?

    Andy

  • RE: profiler - "duration" column

    What events are you profiling?

  • RE: Stored Proc with Block Ifs

    Yes, I believe you will still see the benefits of the compilation. Pretty easy to test - build it, run once so it can compile and cache the data, then...

  • RE: Stored Procedure Syntax

    How about posting what you have for code so far?

    One thing to strive for is set based operations, not cursor. Sounds like you need to run either 3 count queries,...

  • RE: Sql2000 &XML

    There are some good samples and documents installed with SQL. Look in MSSQLServer\80\COM\Tools\DevTools\Samples\XML.

    Andy

  • RE: Update / Insert triggers conflicting?

    One other note - you can use SET CONCAT_NULL_YIELDS_NULL to change the behavior during concatenation operations. Use this option wisely and sparingly!

    Andy

Viewing 15 posts - 6,016 through 6,030 (of 6,215 total)