Forum Replies Created

Viewing 15 posts - 76 through 90 (of 2,639 total)

  • RE: how to get sql queries of past??

    you're not likely to get anything of any real use from the procedure cache for what you're asking, also be aware of the size of your cache before running...

  • RE: Performance 2008 vs 2005

    this level of performance tuning is not simple, as you're discovering. I'm currently investigating a possible upgarde for a production system - I posted asking about fastest servers and there...

  • RE: Database Maintenance

    an index re-org will not update stats. Auto update stats will also not update all your stats, so if you want to update stats do it after any index operations.

    I...

  • RE: SQL 2008 Auditing

    then you'll need to write your own code to capture that info to a table, or run a profiler writing to a table just to audit login/out.

  • RE: Sql 2008 R2 Sp1 & (Management Studio) ?

    Generally, but I have seen service packs split, do you mean you're downloading service pack 1 ? in which case you shouldn't need a seperate ssms patch but there...

  • RE: Consequences of changing SA password

    No jobs etc. should not be affected by changing the SA password. It saddens me your previous guy was called a DBA, this isn't the way a professional should work!...

  • RE: Having MDF and LDF reside on save disk

    with respect - the original post mentioned C: and D: drives, doesn't sound like a typical SAN.

    Apart from which it all really depends upon your make of SAN, the segregation...

  • RE: High memory utilization on Server

    I don't wish to be rude here but why not try reading BOL, getting a basic intro to sql server book or even going on a training course.

    It saddens me...

  • RE: Adjusting Timezone

    it's pretty easy to search through the text of procedures and functions in sql server, but it's possibly safer to search through the source code repository,often it has defined searches.

    I'm...

  • RE: Several Parent Procs running the same child Proc

    you can call the same proc multiple times - we'd all have issues if we couldn't! If you don't qualify procs then this can cause blocking, you get similar...

  • RE: Having MDF and LDF reside on save disk

    depending upon your hardware and the application ( database ) requirements sharing could be very bad as the disk operations require sequential writes for the transaction log, this is why...

  • RE: How to Build a Windows Server 2008 Failover Cluster on Cheap Hardware for a Home Lab

    I have plans to build a physical cluster ( no virtualisation ) using windows 2008 R2 storage server - this acts essentially as a shared iscsi storage source. You...

  • RE: Reduce SQL Server Loda

    can you be specific about what part of the "load" is actually giving issues. Normally there is a visible indication of a bottleneck.

    Depending upon your database structure it would be...

  • RE: Migration of the same data in several directions

    I'm sure the majority of responses will be to use SSIS, I'd probably use stored procs.

    Linked servers are not the end of the world, for example It's quite possible to...

  • RE: Setting IS_NULLABLE on columns in a View

    try '1 jan 1990' as [CustomerDate]

    in my view this

    create view vw_testing

    as

    select 1 as NumKey,'fred' as [JimBob],'1 jan 2011' as [TheDate],userid

    from dbo.;

    the columns which are static show as...

Viewing 15 posts - 76 through 90 (of 2,639 total)