Forum Replies Created

Viewing 15 posts - 1 through 15 (of 240 total)

  • RE: Easy Error Trapping When Using xp_cmdshell

    Back to the subject... which was, how to find errors when running BCP from xp_cmdshell...

    You can run into trouble if you are trying to nest the INSERT...EXEC logic. Run...

    CREATE...

  • RE: How To Mess Up An Interview

    > It certainly makes for lively discussion.

    True, true.  For myself, I never quite know how to respond in such situations.  On the one hand, I don't share your confidence that...

  • RE: How To Mess Up An Interview

    > maybe we can all be "Christian" & "Charitable" and forgive Sean for he "intended not what he said"...

    Has he asked for forgiveness?

    > at the risk of alienating my friends...

  • RE: How To Mess Up An Interview

    > Well, perhaps I should have said "satire, if that was what was intended", but how could it not be?  At least that was my take.

    Sometimes, when something sounds insulting,...

  • RE: How To Mess Up An Interview

    > Get a life everyone - even if you didn't find the article amusing (I did - my choice), get over it

    Does it offend you that offensive remarks strike certain...

  • RE: How To Mess Up An Interview

    > People tend to get far more upset about religious topics than they do about swearing.  How many wars have been started over cursing?

    Okay, I get it.  Religion is responsible...

  • RE: How To Mess Up An Interview

    Sorry, but I don't see much need for advice that labels "God bless you" as offensive and yet at the same time extolls cursing.  All it tells me is that...

  • RE: BCP files

    It sounds like the BCP files may have been created in a BCP OUT operation employing the '-n', i.e., native format.  If this is the case, then the best way to get...

  • RE: BCP files

    If all you have to do is look at the files, why not just open them up with a good text editor?

  • RE: Sybase bcp.exe runs when executing MSSQL xp_cmdshell bcp.

    I'd start by printing the @bcp variable after setting it, copying it, pasting it into the command tool, and running it from there, if you haven't already done so.  Maybe...

  • RE: stored procedure running slower than sql query

    Is it possible the queries table(s) have a gazillion rows now, but had zero or few rows when you compiled the procedure?  I'm wondering if the execution plan is stuck...

  • RE: export data from every table

    By 'non-English', do you mean, a collation that does Unicode?  It might work, but I have little experience.  The script might need to be tweaked a bit for that.

    You might...

  • RE: export data from every table

    For me, DTS is a last resort.  You can always put this script in DTS and run that.  Use this script at your own risk.

      DECLARE @fetch     INT

           ...

  • RE: How do I determine the row size of all tables in a particular DB?

    I'm glad that helped.  If you want to find the largest *actual* row lengths for a table, something like the following would work in most cases:

      DECLARE @sql       ...

  • RE: How do I determine the row size of all tables in a particular DB?

    I don't believe any row *can* exceed the 8K page length in SQL Server 2000.  There is only a potential for an error, should any row *try* to exceed that...

Viewing 15 posts - 1 through 15 (of 240 total)