Forum Replies Created

Viewing 15 posts - 21,811 through 21,825 (of 22,189 total)

  • RE: Anyone see any inefficiencies with this stored proc?

    In addition to all those recommendations, I'd suggest taking the IN clause and turning that into a join, even if you keep it as a derived table. In terms of...

  • RE: Stupid Question

    HI STELLA!

    <big hug>

  • RE: Actual Reason to Use CLR

    Most of our procs are converted to XML out on the client (app server actually). No real need to output to XML, in most cases, in the procedure. From your...

  • RE: Stupid Question

    Oh hell, time to start a support group. Who needs a hug?

    Hi, my name is Grant. I'm unable to upload useless little pictures.

    <CROWD> Hi Grant

  • RE: Actual Reason to Use CLR

    Code reuse in this circumstance sounds really useful. I think I might take a look around. I'm sure we have something along these lines that might, possibly benefit.

    I'm curious to see the...

  • RE: Results of select statement to variable in SP

    What about:

    UPDATE

    [Northwind].[dbo].[Orders]

    SET [ShippedDate] = x.myshipdate

    FROM (

  • RE: Backup remote database with TSQL

    What error are you getting? You can run a backup command from just about anywhere (a linked server isn't really necessary), but the real issue is usually one of disk...

  • RE: Want to make ''''Get Latest Status'''' function more efficient

    Assuming a clustered index on the UniqueRowId (or a combination of the other columns used in the aggregate query), in a similar situation we've found that using TOP(1) with an...

  • RE: Redundant Columns

    You can store all those columns, but the question is, why would you need to? For example, I've done exactly what you're laying out because we found that all our...

  • RE: System Tables

    Some of that information is available from sys.syslogins. I think the more dynamic stuff, like the number of logons, isn't going to be there. You may need to set up...

  • RE: Triggers

    Pig Pile!

    Seriously though, everyone got it right. Replication has the type of behavior you're looking for. It won't seriously impact your performance (configured correctly) and it's a lot more fault...

  • RE: Actual Reason to Use CLR

    Very interesting stuff. Thanks for sharing. I'd love to know if you do find any kind of memory leak since, from a performance stand point you already proved that it...

  • RE: Actual Reason to Use CLR

    Yeah, I've read a lot of that stuff. I was just wondering if anyone had come up with a compelling, real-world, example of using CLR and getting more or better...

  • RE: SQL2005 query slow runs in 6 second but in SQL2000 it runs in 1 second or less.

    Can you post the query plan as XML? It sounds like you might be missing an index which is why you're getting the work table in tempdb. Possibly in the...

  • RE: How to connet another DB from SP

    I'm not entirely sure what you mean, but I think you you're looking for something along the lines the OPENROWSET command. Look it up in Books Online.

     

Viewing 15 posts - 21,811 through 21,825 (of 22,189 total)