Forum Replies Created

Viewing 15 posts - 2,326 through 2,340 (of 6,486 total)

  • RE: using CLR assembly

    Cool - good to hear!

  • RE: using CLR assembly

    Evaleah -

    Is your stored proc working the way you're expecting it to? Are you still having an issue? Jonathan mentioned some good advice, but it does assume...

  • RE: UPDATE STATEMENT (Update Table and From Clause same... who gets Alias)

    Since you're aliasing the table - I think you need to start with using the alias in the top of the UPDATE statement, as in:

    UPDATE SD

    Since you can only update...

  • RE: Update Query

    Have you tried turning the UPDATE statement into a SELECT statement and see how many rows you get back?

  • RE: varchar error

    Jeff Moden (10/31/2008)


    ry.rith (10/31/2008)


    Thank so much,

    that you tell me about the solution.

    I also do the same of yours to complete the crosstab-report, but something that i want is to know...

  • RE: custom start day of week

    Sounds to me like that should be something stored in the user profile table (a.k.a when does their week start?).

  • RE: Calling stored proc to insert record in one table

    Let's break the problem down a little. (let's call this a "hint")

    How would you identify the rows in TableA that need the rows? What would the SQL look like...

  • RE: Concatenation of string and NULL

    Matt Miller (10/31/2008)


    I'd think Lynn's solution is the best (meaning - handle these from within the stored procs.

    That being said - it's been a while since I've had...

  • RE: Concatenation of string and NULL

    I'd think Lynn's solution is the best (meaning - handle these from within the stored procs.

    That being said - it's been a while since I've had to do...

  • RE: Clr Trigger for Insert

    Jonathan Kehayias (10/31/2008)


    I don't see anywhere in your code that you need CLR to do this. A Simple TSQL Trigger would do this much better.

    Agreed. Never mind a...

  • RE: Clr Trigger for Insert

    I thought you needed to fire the execution off from the pipe side, and not the "old" way?

    As in -

    SQLContext.Pipe.ExecuteAndSend(command);

    and not

    command.ExecuteNonQuery();

  • RE: using CLR assembly

    jgrubb (10/31/2008)


    Jeff Moden (10/30/2008)


    Jonathan Kehayias (10/30/2008)


    As resistent as you are to CLR inside SQL, it is actually becoming more and more popular, even among MVP's for things just like this....

  • RE: Field Type to use for Elapsed Time in HH:MM?

    dmc (10/31/2008)


    I think this points out how there is not one way to do things. I agree with rbarryyoung the most. There are really two options. We...

  • RE: Automatically stopping all jobs prior to a system reboot?

    Stopping the agent is a good solution only if no jobs are running at the moment (since it will prevent any jobs from starting). Stopping the agent really isn't a...

  • RE: Ok, its their first day on the job.

    I was going to say you could probably use Dilbert's advice on this. Next time they go to the bathroom, peak into the books. The content should give...

Viewing 15 posts - 2,326 through 2,340 (of 6,486 total)