Forum Replies Created

Viewing 15 posts - 1,306 through 1,320 (of 2,436 total)

  • RE: Tempdb IS hugh

    Size is relative. My temdb's vary from 1 Gb to 10 Gb. It's just what is 'normal' for that server. Oh, I definitely agree with Jeff ...

  • RE: How do you handle halfwit developers?

    A rather dicy thread here ...

    Before SQL 2005 the same issues existed more or less. It'sjust that SQL 2005 added CLR integration (check out other threads on this site for...

  • RE: Do I need the ''''sa'''' account?

    Just a note on passwords, in particular 'strong' passwords. You need not got to the lengths of 'pass phrases', multiple words with spaces, if you use a 16 character password...

  • RE: Default SQL Server Agent Jobs??

    By default, the SQL Agent service is not even configured to autostart, let alone have existing JOBs. IFirst I'd check the execution history then I'd script them out and take...

  • RE: Software application running slow - is it SQL??

    Yelena,

     

    sp_recompile is not a replacement, it and sp_refreshview simply marks the object and any SP that references that object will have it's plan recreated on the next execution in essence...

  • RE: Which tools do you use... ?

    Query Analyzer

    Enterprise Manager

    SQL Server MSX Server

    Custom scripts

    MOM  - Microsoft Operation Manager

    Windows perfmon

    SQL Profiler

    and ...

    Google

    SQL Server Central dot com

    SQL Performance dot com

  • RE: Administrative forms

    I've had to do the same thing in the past. However the best place to start for this information is generally the source. Who does the hiring/firing ? This is...

  • RE: Software application running slow - is it SQL??

    Here's my 'short list' for tuning:

    Round I

        DBCC UPDATEUSAGE

        UPDATE STATISTICS (with FULL scan) for all tables

        exec sp_recompile for all tables

        exec sp_refreshview for all views

    Round II

        DBCC DBREINDEX

       ...

  • RE: Tools used in creating queries

    If you can you write a transact SQL query for SQL Server or a SQLPlus query for Oracle then using Queryman or Toad is no different. However if you cannot write...

  • RE: Tools used in creating queries

    Are all of your databases SQL Server ?

  • RE: Tools used in creating queries

    To get at he things I mentioned:

    Start-Programs-Microsoft SQL Server-Query Analyzer

     

    What exactly are you try to do ? Learn SQL ?

  • RE: Tools used in creating queries

    Why do you need to use those tools ? SQL Server has QA - Query Analyzer. As for the assistance woth QA, well there is BOL - Books Online.

  • RE: Script to Gather Number of Unique Users

    You quest may be further complicated by applications as well. Some applications use multiple connections, some applications use generic IDs with application security ID's not visible to sysprocesses or to...

  • RE: adding 60 developers to SQL Server Security

    Your Domain Admins can give you the exact information that you want, login name. Tey just have to use a couple of extra check boxes and ad a few more...

  • RE: Paralell Upgrade - Linkserver question

    I do not have a solution but a question. Why are you using a local 'hosts' file instead of DNS ?

Viewing 15 posts - 1,306 through 1,320 (of 2,436 total)