Forum Replies Created

Viewing 15 posts - 271 through 285 (of 470 total)

  • RE: UDF performance - inline TVF vs multi-statement TVF vs SSMS query

    SQL can more easily optimize inline functions. If you're running it against a table a multi-line function needs to get called once for each row. An inline function...

  • RE: got performance problem in running store procedure....

    What's the load on the server? On the network?

    Is the query returning a lot more data than it was before?

    Is there any blocking going on?

  • RE: Trying to determine column dependencies.

    Only so much of this can be automated. You also need to look for things that reference views or stored procs because there could be a restriction down the...

  • RE: Fitting In

    I've taken the same attitude when interviewing. I don't want to go through six jobs in eight years so I'll find out as much as I can during the...

  • RE: Fitting In

    Revenant (7/19/2011)


    I do appreciate the advice on dress code; however, it just does not work for me. Most members of my team are Indian ladies who wear their wonderful,...

  • RE: Fitting In

    andreas.agren (7/19/2011)


    Watch before you form alliances? Sounds a lot like prison to me.

    I think all he's trying to get to is know who you're getting close to. If there's...

  • RE: How Many Times Will This Happen?

    bopeavy (7/18/2011)


    How many laptops get stolden by a theif that knows what hes doing? I would assume that a theif that knows what hes doing is only going to go...

  • RE: To find Seesion ID- for Top 5 SQL Statement consuming more cpu

    What are looking for the sessionID for? sys.dm_os_query_stats is historical data so there may not be a query running at the current time. If you let us know...

  • RE: How Many Times Will This Happen?

    Jayanth_Kurup (7/17/2011)


    However IT could drive another approach; with high speed internet and cloud tech we could no longer need to store data in local drives. However the question then would...

  • RE: Database Snapshot

    Thomas Abraham (7/15/2011)


    Seriously, I'm only posting this to get the point back for having had a correct answer marked incorrect. 😉

    My bet is that Steve knows who answered what and...

  • RE: DRI or No DRI?

    I'm glad you've never been bitten by that. From working on a dev project where updates and inserts for a table came from multiple locations and there were probably...

  • RE: DRI or No DRI?

    The last application I worked on had some DRI but a lot that wasn't. Personally, dealing with the headaches that came from references that weren't declared (and seeing headaches...

  • RE: The RECOMPILE Options

    OPTION (RECOMPILE) is to be only used as a temporary measure while a process for converting adhoc T-SQL code to Stored Procedures is underway.

    I'm not sure I agree with this....

  • RE: The RECOMPILE Options

    If option recompile is used the plan doesn't remain in cache so it won't lead to cache bloat. Disclaimer, don't run this in production.

    dbcc freeproccache

    go

    select * from msdb.dbo.sysjobs option...

  • RE: Measurements

    We log but don't regularly look at the backup growth size. We pay more attention to the amount of free space on disk. We're working on getting a...

Viewing 15 posts - 271 through 285 (of 470 total)