Forum Replies Created

Viewing 15 posts - 4,066 through 4,080 (of 5,841 total)

  • RE: Getting decent sql server performance despite a slow drive

    Marts, I HIGHLY recommend that you try to convince your company to hire a performance tuning professional for a day or two to give your system a review and recommend...

  • RE: Very Low PLE when running the query

    Paul White NZ (4/5/2010)


    TheSQLGuru (4/5/2010)


    NOTE: I am not 100% sure specifying an object ID in the DMV gets it to read JUST that object and I don't have time to...

  • RE: Getting decent sql server performance despite a slow drive

    Unless you have a BUNCH of spindles, many smaller files will actually be SLOWER due to head thrashing on the disk drives. Not a good solution there. How...

  • RE: Very Low PLE when running the query

    gmamata7 (4/3/2010)


    Hi,

    We have MOSS 2007 SP1 databases in SQL Server 2005 and I'm trying find the Index Fragmentation for the Content database of size 10 GB using below query:

    SELECT database_id,object_id,...

  • RE: Speed up a database shrink

    george sibbald (4/2/2010)


    sorry Chad getting completely off subject but I know these companies pick up on internet entries so I will post this here:

    Hyperbac - please don't move away from...

  • RE: Performance Tuning Big Table

    stolbovoy (4/2/2010)


    Will converting varchar(8) to char(8) help? What is average length of the code values?

    I mentioned that at 1117 yesterday. 😎

  • RE: SQL 2005 - MDF deleted LOG file available

    I would look at SSIS, import wizard or some other BULK INSERT mechanism if you have a lot of data to feed into sql server.

  • RE: How to tune this query

    Since you are returning 48000 out of 50000 rows, how about just forcing a table scan on everything?

  • RE: Overactive use of Temp Tables?

    Allow me to step outside the box here and ask why you don't 'sumarize' the data in the .NET application before it ever hits the database. Then just insert...

  • RE: Speed up a database shrink

    1) give yourself a BIG tlog to start before doing the shrink so it doesn't have to grow.

    2) script and drop ALL indexes if you are deleting 85% of the...

  • RE: Performance Tuning Big Table

    I don't understand this talk about numbers since the OP clearly stated "... a code with numbers and characters". Can't put those characters in an int, bigint, numeric, decimal,...

  • RE: Creating Indices on Temp Tables from Stored Procedures

    I only mentioned the index cleanup investigation because the OP stated concern about having so many indexes on the table.

    I disagree with your statement that not many can...

  • RE: Performance Tuning Big Table

    1) maybe response time is poor because your server is weak or poorly configured. how much RAM? how many CPUs?

    2) what query or queries are you running...

  • RE: SQL 2005 - MDF deleted LOG file available

    ApexSQL has two products, Log and Recover, that can completely REDO/UNDO stuff from a full backup and a tlog. This is as others state dependent on the database...

  • RE: TempDB Settings

    Paul White NZ (3/31/2010)


    TheSQLGuru (3/31/2010)


    In general tlogs should not be with data due to a) the importance of tlog throughput and b) different nature of data access between data and...

Viewing 15 posts - 4,066 through 4,080 (of 5,841 total)