Forum Replies Created

Viewing 15 posts - 46 through 60 (of 175 total)

  • RE: Options in tool box for creating packages in SQL Server 2005

    SQL Server 2005 has totally replaced DTS with SSIS. I suggest grabbing a couple "learn in 24 hours" books or go grab Brian Knight's wonderbook of SSIS god power.

  • RE: AdventureWorks performace testing

    I bet you can run SQLIOSIM on that host and get what you're looking for...

  • RE: Job to upload data directly from CSV file to SQL Server.

    I'd still check the connection strings. Each server probably makes a single connection to the database so chances are the connection strings are different on the two servers.

    Had the...

  • RE: understanding reindexing

    Are you doing a rebuild of the indexes or a re-org? Are autostats turned on or off for the database?

  • RE: Value of a Primary Key

    As long as the business tier can maintain the data integrity, the performance impact is only limited to the speed of that layer. Usually the database layer is optimized...

  • RE: multiple row values into diff columns

    Not quite sure I follow the question exactly. What are the business requirements?

    This looks like it may be using the PIVOT operator but not sure.

  • RE: Time Out Problem in Sql Server 2005 x64

    Timeout errors are generated at the provider / application layer and not by the SQL Server. Check the connection string of the client application to make sure it has...

  • RE: Job to upload data directly from CSV file to SQL Server.

    By the way, to address the original problem... time out errors are generated at the application / provider level, not by the SQL Server. Chances are the connection string...

  • RE: CPU IS Running mostly above 95%

    Out of date statistics can also lend to increased CPU usage.

    When was the last time you rebuilt your indexes or updated statistics on these tables?

  • RE: Slow Running Store Procedure

    Run a profiler trace and capture the duration for all sql statements. That's your best bet. Then select those statements with the highest duration and tune from there.

  • RE: Third Party Products

    Personally I like Idera's tool because it doesn't require me to deploy some silly agent across all my SQL Server environments.

  • RE: Clearing LOD file (126 GB)

    Just curious, not criticizing at all but...

    Wouldn't a question like this be best suited for the administration forum?

    I'm seeing a lot of these types of questions being posted in the...

  • RE: SHOWCONTIG and Index Fill Factor

    Actually when you changed the fill factor of the index, you effectively rebuilt it. The reason why you're seeing a higher pages scanned count is simply a factor that...

  • RE: Querying a Partitioned table is Super Slow

    It all has to do with the cached query plan and how SQL Server determines whether it can reuse the plan or generate (recompile) a new one. Sometimes SQL...

  • RE: Deadlock handling.

    Daignostic Manager is a fantastic tool. Granted you can probably spend months creating something yourself but why? Agentless based, low impact and footprint, smart monitoring, KLMs pre-configured and...

Viewing 15 posts - 46 through 60 (of 175 total)